Skip to content

tanujmathur/Workshop

 
 

Repository files navigation

Workshop (with examples in NServiceBus)

Please ensure you have prepared your machine well in advance of the workshop. Your time during the workshop is valuable, and we want to use it for learning, rather than setting up machines.

If you have any difficulty preparing your machine, or following this document, please raise an issue in this repository ASAP so that we can resolve the problem before the workshop begins.

Preparing your machine for the workshop

Install the pre-requisites

To complete the exercises, you require a Windows machine and Visual Studio. You must be using a Windows client edition, such as Windows 10, rather than a server edition, such as Windows Server 2016. The Particular Platform Installer does not support server editions of Windows.

Although specific versions of the pre-requisites are mentioned here, later versions may also work. When we confirm that the exercises work with later versions of the pre-requisites, we will update these instructions to refer to those later versions.

Visual Studio

Install Visual Studio 2017 (Community, Professional, or Enterprise) with the following workloads:

  • .NET desktop development
  • ASP.NET and web development

If you are not running the latest version of Visual Studio 2017, you may need to install the .NET Core SDK seperately. Install version 2.0.3 or newer.

MSMQ and DTC

To ensure MSMQ and DTC are correctly installed, run the Particular Platform Installer.

NOTE: If you are using Microsoft Edge, see the FAQ.

In the installation screen, select a minimum of:

  • "Configure MSDTC for NServiceBus"
  • "Configure Microsoft Message Queuing"

Installing other components such as ServiceControl, ServiceInsight and ServicePulse is optional at this time. They are required for the advanced exercises but you can install them later, if/when you get on to the advanced exercises.

NOTE: When you install ServicePulse, you may see two warnings about not being able to connect to ServiceControl. In both cases, click Yes to proceed with the installation. These warnings appear because, although ServiceControl has been installed, no instances have yet been created.

LocalDB

  • Download and run the SQL Server 2017 Express installer
  • In the installer, select the "Download Media" option
  • Under "WHICH PACKAGE WOULD YOU LIKE TO DOWNLOAD?", select LocalDB
  • Download and run SqlLocalDB.msi from the download location

SQLCMD

Get a copy of this repository

Clone or download this repo. If you're downloading a zip copy of the repo, ensure the zip file is unblocked before decompressing it:

  • Right-click on the downloaded copy
  • Click "Properties"
  • On the "General" properties page, check the "Unblock" checkbox
  • Click "OK"

Set up the databases

Open an elevated command prompt, navigate to your copy of this repo, and run:

powershell -NoProfile -ExecutionPolicy unrestricted -File exercises\scripts\Setup-LocalDBInstance.ps1

When you no longer need to run the exercises, you may optionally run Teardown-LocalDBInstance.ps1.

Build the exercise solutions

The exercises are contained in eight Visual Studio solutions under exercises. All the solutions require NuGet package restore. This may be possible at the workshop venue (you can verify with the workshop organizers if internet access is available at the venue) but to ensure you can build the solutions during the workshop, we recommend you restore all NuGet packages and build all the solutions before the workshop starts. The simplest way to do this is to open a command prompt, navigate to your copy of this repo, and run .\build.cmd exercises. (For a full list of build targets, run .\build.cmd -T, or .\build.cmd -h for help.)

You can safely ignore any compiler warnings.

Running the exercise solutions

Before running an exercise solution, you need to set the startup projects.

One way to do this is to use the SwitchStartupProject Visual Studio extension. After installing the extension, open the exercise solution and choose the "Exercise" startup configuration.

The startup projects are also listed in the instructions for each exercise. If you need to, you can configure them manually:

  • In Visual Studio, right click the solution in the Solution Explorer
  • Click "Properties"
  • Ensure that, in the left hand pane, "Common Properties", "Start Project" is selected.
  • Select the "Multiple startup projects" radio button
  • Set the "Action" for each project listed in the instructions for the exercise to "Start".

To run an exercise solution, simply press F5 in Visual Studio. The exercise solution will now be running and fully functional.

Note

The solutions contain single page applications (SPAs) and use IIS Express. To prevent caching issues, before switching to another exercise:

  • Ensure that IIS Express is shut down
  • Clear the browser cache (or disable it entirely). Alternatively, the cache can cleared by refreshing the page using Shift+F5 or Ctrl+Shift+R in some browsers.
  • When running a solution, the wrong page is sometimes displayed in the browser. Either:
    • Ensure all HTML template files are closed when the application is run, or:
    • Manually change the browser address to the root URL.

Preparing your machine for the advanced exercises

If you completed all the standard exercises, first of all, well done!

You can now attempt the advanced exercises. Don't worry if you don't manage to start or complete the advanced exercises during the workshop. You can also attempt them after the workshop is finished. If you have questions, you can ask them during the workshop or in our community discussion forum.

It is likely that you will have to read documentation for the Particular Service Platform to finish the advanced exercises. Links to documentation will be provided.

To complete the advanced exercises, you first need to install the rest of the Particular Service Platform:

  • ServicePulse: a web app which monitors your endpoints.
  • ServiceInsight: a desktop app which visualises the flow of messages within and between endpoints in detail.
  • ServiceControl: a Windows service which collects the data that drives ServicePulse and ServiceInsight.

Run the Particular Platform Installer again, selecting ServiceControl, ServiceInsight, and ServicePulse.

NOTE: When you install ServicePulse, you may see two warnings about not being able to connect to ServiceControl. In both cases, click Yes to proceed with the installation. These warnings appear because, although ServiceControl has been installed, no instances have yet been created.

When installation has completed, click "Start ServiceControl Management".

You may now close the Particular Service Platform Installation window.

Configure ServiceControl Instance

In the ServiceControl Management window, click "New" and then "Add ServiceControl instance".

In the settings for the new instance, there are two choices you must make:

  • "Transport": choose "MSMQ".
  • "Audit forwarding": choose "Off".

All other settings should be left with their default values.

Click "Add".

After the instance has been added, make a note of the name of the instance. This will usually be "Particular.ServiceControl".

Configure Monitoring Instance

In the ServiceControl Management window, click "New" and then "Add Monitoring instance".

In the settings for the new instance, there is one choice you must make:

  • "Transport": choose "MSMQ".

All other settings should be left with their default values.

Click "Add".

After the instance has been added, make a note of the name of the instance. This will usually be "Particular.Monitoring".

You may now close the ServiceControl Management window.

You're now ready to attempt the advanced exercises!

Demos

ASP.NET Core UI composition

The asp-net-core solution demonstrates the use of ASP.NET Core to compose a UI with data from several services.

ServicePulse monitoring & recovery

The self contained platform demo includes ServicePulse, ServiceControl, ServiceControl Monitoring and a few endpoints to demonstrate monitoring and recovery.

FAQ

If the answer to your question is not listed here, consult your on-site trainer.

How can I clear the orders list?

The simplest method is to reset all the databases (see below). Bear in mind that this will reset all the databases for all the exercises.

Alternatively, if you want to clear the orders list for a specific exercise, connect to the LocalDB instance, and either pick out and run the drop and create statements for that exercise from the scripts, or manually delete, or truncate, the tables that need to be cleared.

To reset all the databases:

Connect to the instance and run Teardown-Databases.sql followed by Setup-Databases.sql, both located in the exercises/scripts folder.

Can I use Windows 7?

Yes. However, Visual Studio 2017 comes with SQL Server 2016 LocalDB, which is not compatible with Windows 7. Instead, you will need to install SQL Server 2014 LocalDB. When prompted to choose which file to download, choose either the 64-bit or 32-bit version of SqlLocalDB.msi, depending on your Windows installation.

How do I download the Particular Platform Installer with Microsoft Edge?

When you attempt to download the installer, you may be presented with this message:

download prompt

If so, click on "View Downloads" to show the "Downloads" window:

download list

Right-click the red text "This unsafe download was blocked by SmartScreen Filter." to show the context menu:

download unsafe file

Click "Download unsafe file".

Packages

No packages published

Languages

  • C# 87.6%
  • HTML 5.9%
  • JavaScript 5.9%
  • Other 0.6%