...
The ResourceXpress Scheduler
...
is an optional add-on
...
Its job is to perform background functions for profiles which are referenced by a physical display but not necessarily refreshed by that display. One possible example of this is when room and desk icons are shown on a Maps profile, but the individual profiles for these resources themselves are not displayed and therefore are not automatically refreshed.
...
server task that is needed when the system does not include room or desk devices. Without these devices refreshing their profiles every 60 seconds, some important background tasks are not performed.
The full functions of the Scheduler Task
...
are as follows:
Refreshing screen profiles which have not connected during the last 5 minutes
Sending email check-in reminders in situations where there are no room screen displays or Maps runningreminders
Performing optional auto-cancellation for desks and rooms
Sending notifications regarding device connectivity failure
...
Hardware: 3GHz Processor, 2GB RAM, 10GB of free hard disk space
Operating system: Windows Server 2016 or above
.Net Framework version: 4.0
Installation Procedure
Download RXv5Scheduler v0.3.zipand copy it onto the ResourceXpress host serverPlease contact helpdesk@qedas.com to request the Scheduler Task install files.
Info |
---|
Scheduler Task can be installed on a separate server to ResourceXpress if required, provided that it has access to the host server. |
...
Code Block | ||
---|---|---|
| ||
<add key="ApiKey" value="859db2b35657467a7e2bb233635283e6859xxxxxxxxxxxxxxxxxxxxxxxxxx3e6"/> |
It is only necessary to copy the 32-character alphanumerical value from this line.
...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings> <add key="ReloadInterval" value="900" /> <add key="MaxConcurrentThread" value="20" /> <add key="TenantUrl" value="http://RXServerURL" /> <add key="ApiKey" value="859db2b35657467a7e2bb233635283e6859xxxxxxxxxxxxxxxxxxxxxxxxxx3e6" /> <add key="UseTLSVersion" value="1.0,1.1,1.2" /> </appSettings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> </configuration> |
...