Release notes for:
- goRoamPOD – iOS and Android mobile app for bulk and package delivery
- MobileHub server
- goRoam.MobileHub web app (aka Lightning client)
The following notes apply to the MobileHub Server updates for on-premise installations. For SaaS and hosted customers, BizSpeed manages all updates and applies to the appropriate environment.
Dec 15, 2025
Update the binding redirect section of the web.config file to match what is provided in install/update package.
Oct 21, 2025
We added the option to use Google Geocoding services in place of HERE. Google has a higher rate limit for batch geocoding. To use Google, update your web.config from the template to include the Google API (below the HERE API). If not provided, we use the HERE API so this is optional.
July 15, 2025
Update the web.config file to add the following appsetting. The value and full line is included in your sample web.config. This is required to use the new HERE geocoding service.
<add key=”HEREapiKey”
Mar 6, 2025
This release splits out integration processing. If you have Ortec and communicate over the internet with OIR or ORD via https, you MUST coordinate and update the OrtecMobileHubProcessor windows service. This release moves all integration messages into their own table for processing.
Jan 10, 2025
Reports may not show barcodes. This is due to SSRS (SQL Server Reporting Services) limited TLS support. You can fix this by updating the report server (the server that is runs on, not the mobilehub web servers) with the following 3 fixes. Edit the registry using regedit:
See the following stackexchange link
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727]
"SystemDefaultTlsVersions"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v2.0.50727]
"SystemDefaultTlsVersions"=dword:00000001
I ran into this issue when attempting to run images from IIS Server which was locked down to TLS1.1 and TLS1.2
The issue was two fold
I had to update the Registry to add the following keys
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727]
"SystemDefaultTlsVersions"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v2.0.50727]
"SystemDefaultTlsVersions"=dword:00000001
per this article https://support.microsoft.com/en-us/help/3154519/support-for-tls-system-default-versions-included-in-the--net-framework
Use the following Entry in the configuration file for Reporting Services. NOTE this goes in the runtime section of the config.
[Install Location]/Reporting Services/Bin/ReportingServicesService.exe.conf inside the runtime element
Default SQL Server 2016 Location: "C:\Program Files\Microsoft SQL Server\MSRS13.MSSQLSERVER\Reporting Services\ReportServer\bin\ReportingServicesService.exe.config"
<AppContextSwitchOverrides value="Switch.System.ServiceModel.DisableUsingServicePointManagerSecurityProtocols=false;Switch.System.Net.DontEnableSchUseStrongCrypto=false" /> Sept 10, 2024
This update includes error handling for 405 response codes in the web.config. Copy the httpErrors section from the template to your config.
Copy the binding redirect section from the sample to your config file.
We now offer a separate processor to manage GPS events. If you install the Windows service for GPS then you should add the following to your appsettings in web.config and set the value to 1. This key is optional but we recommend adding.
<add key=”gps_use_external_service” value=”0″ />
Jan 20, 2024
This update includes binding redirects in the web.config file. Copy the complete set of assembly bindings and replace in your web.config. This section starts with:
<runtime>
<assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″>
Oct 26, 2023
Update the web.config file to add a system-wide setting for the max hour to start deleting older date. This is across all tenants and goes in the AppSettings. If it is not set, it defaults to 6am local job server time. This included in your sample web.config with MobileHub updates.
<add key=”max_hour_to_run_delete_jobs” value=”6″ />
Oct 18, 2023
Update the web.config file to add a system-wide setting for audit retention. This is across all tenants and goes in the AppSettings. If it is not set, it defaults to 365 days.
<add key=”max_days_to_keep_all_audits” value=”365″ />
Mar 19, 2023
This update includes binding redirects in the web.config file. Copy the complete set of assembly bindings and replace in your web.config. This section starts with:
<runtime>
<assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″>
We introduced RabbitMQ for queueing and pub/sub between different systems. This is optional and NOT needed unless consulting BizSpeed. You will see two entries in your sample web.config. You do not need to copy these to your appSettings. The initial implementation is for real-time notifications of trip assignments for orders.
Feb 8, 2023
NOTE – This update requires .NET 4.6.2 runtime to be installed on the web server.
The update to .NET 4.6.2 keeps MobileHub updated to a current runtime and is required for compatibility with multiple server libraries we use.
Update the web.config with the following:
- targetFramework=”4.6.2″ (was 4.6)
- In each connection string, add ;TrustServerCertificate=true. (NOTE: there are 4 conn strings ) Microsoft updated SQLclient to assume a secure connection, including encryption. If you have encryption, add encrypt=true.
- Copy the binding redirect section from the sample web.config to your web.config
Dec 20, 2022
This release includes caching for calculating GPS arrival/departure geofence events. Add the following to your web.config from the sample included in the distribution. Change the value to 1 if you use REDIS and ensure you add the REDIS connection string. If you do not use REDIS, we will default to a memory cache. Update the binding redirects from the sample web.config.
<add key=”cache_use_REDIS” value=”0″ />
<add key=”REDIS_connection” value=”” />
Nov 10, 2022
Copy the sample binding section to your web.config so you have all of the entries.
Dec 21, 2021
This release includes using the SSRS report viewer in the Raptor .NET Core app. This requires an update to the MobileHub web.config file. The update is included in the distribution sample config file. Search for ReportViewerWebControlHandler and copy that section into your specific web.config.