Re: SOLVED Chat client can't see any online users and doesn't appear to send messages

  •  02-14-2012, 5:55 AM

    Re: SOLVED Chat client can't see any online users and doesn't appear to send messages

    I just had to change this line:
     
    Return New AppChatIdentity(HttpContext.Current.User.Identity.Name, False, HttpContext.Current.User.Identity.Name, HttpContext.Current.Request.UserHostAddress)
     
    To:
     
    Return New AppChatIdentity(HttpContext.Current.User.Identity.Name, False, ToUserId(HttpContext.Current.User.Identity.Name), HttpContext.Current.Request.UserHostAddress) 
View Complete Thread