Elsinore

User Forum

www.screenconnect.com
Welcome Guest Search | Active Topics | Log In | Register

Tag as favorite
No Session Available
cbr549
#1 Posted : Friday, November 11, 2011 6:47:26 PM
Rank: Newbie
Joined: 9/28/2011
Posts: 1
Location: Georgia
Don’t know… but I’ve noticed when a guest has coded into session, the code entry area is still visible and usable for anyone else who may want to try a code.
I realize that without the correct code whomever would get nowhere but for a single active session it would seem this could be problematic for website?
Is there a way that when a guest codes in for a single active session the code entry box could change to the "No session available" or "In session"?
sdipro
#2 Posted : Saturday, November 12, 2011 5:32:14 PM
Rank: Member
Joined: 10/15/2011
Posts: 21
Location: Tulsa
I actually requested something similar as a feature request recently. This would be really useful when we have an ad hoc job upgrading software for a client with dozens of computers, which is what we do almost daily. Sometimes the person helping us connect forgets which client they have already joined. Having some kind of way to indicate which are currently in use would be a really helpful feature.
Jake Morgan
#3 Posted : Tuesday, November 15, 2011 8:10:24 PM
Rank: Administration
Joined: 4/9/2010
Posts: 871
There is a line in your service.ashx file that looks like this:

Code:
var hasCodeSessions = sessionManager.DoSessionsExist(InvitationType.Code);


In 2.3 it needs to be changed to look like this:

Code:
var hasCodeSessions = sessionManager.GetSessionSummaries(InvitationType.Code).Any(ss => !ss.IsGuestConnected);


In 2.4 it needs to look like this:

Code:
var hasCodeSessions = sessionManager.GetSessionSummaries(InvitationType.Code).Any(ss => ss.GuestConnectedCount == 0);

1 user thanked Jake Morgan for this useful post.
cbr549 on 11/16/2011
Users browsing this topic
Guest
Tag as favorite
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.