15 Sep 2017

Expanding .NET desktop apps into the cloud – Sample code

Sample app main screen

After discussing Security and OAuth workflows for a desktop hybrid app, it's time for a sample.

Database

This sample uses MongoDB to store user information. Why? No particular reason, it can actually be any kind of database (relational or not), so I used this due my previous experience with mLab easy setup. The image shows the overall architecture. You can see it working.

Architecture with database

About the code

The full source code is available at Autodesk Forge Github, but let me point out a few interesting points:

  1. The desktop app uses a CEFSharp browser for OAuth and to show models on Viewer. Check the FrameLoadEnd event handler, that's where it tracks the callback from the server with the session ID (i.e. the database registry unique ID that stores the Forge Access and Refresh Token). You can see the OAuth starting at /cloud/OAuth/default.aspx, then the callback handled at /Controllers/OAuthController.cs
  2. On every request, the database class check the access token expiration time and, if needed, refresh, see more here
  3. Viewer authentication is done via Proxy, see code here and another article describing it
  4. NuGet package is used ONLY on the cloud module, intentionally, as the desktop modules does not "know" Forge

Local setup

Review the sample readme file for detailed instructions, but you'll need:

  1. Visual Studio, I'm using 2017 Community edition
  2. Forge account and one app (client ID and secret)
  3. mLab running instance

Next article I'll describe the deployment on AWS Elastic Beanstalk. Stay tuned.

Related Article