Tech for Techs

Operating Systems => Windows 2008 & 2008 R2 Server => Windows SBS 2011 => Topic started by: James on February 13, 2014, 10:22:58 AM

Title: Remote Web Access: Clicking Connect does nothing
Post by: James on February 13, 2014, 10:22:58 AM
PROBLEM:
When trying to connect to a remote workstation through Remote Web Access, nothing happens when clicking connect.

SOLUTION:
Review the following steps to re-enable access:



If, after clicking connect, you have been prompted to allow ActiveX controls, but then nothing else happens, and you are able to connect after restarting your server, the issue is more than likely due to your Remote Web Access not starting due to excessive memory usage on your server. To correct the issue you can set the Remote Web Access to ignore available memory:

Using Notepad open the Web Configuration file on the server located at:
C:\ProgramFiles\Windows Small Business Server\Bin\WebApp\RemoteAccess

Locate the command line (near the bottom of the file):
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>

Insert the following code into the above command line:
minFreeMemoryPercentageToActivateService="0"

So the completed line should be (all on one line):
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />

This should allow your Remote Web Access to connect regardless of the available memory on the server.
Title: Re: Remote Web Access: Clicking Connect does nothing
Post by: Adventech on January 07, 2016, 09:43:27 PM
SOLUTION:
Edit the web.config file in "C:\Program Files\Windows Small Business Server\Bin\WebApp\RemoteAccess"

Find the line <serviceHostingEnvironmentaspNetCompatibilityEnabled="true" /> [near the bottom]

Change <serviceHostingEnvironmentaspNetCompatibilityEnabled="true" /> to <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />

Restart "World Wide Web Publishing Service". This will also restart "Remote Desktop Gateway".