Release notes for:
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
This release includes updates for caching and requires a web.config update. Included in your distribution is a sample web.config file. Look for the section: <assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″>
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.