tree: 7eea54def1b1ad02ef6b5d7024fcca7255ba0916 [path history] [tgz]
  1. ExampleAuthInitialize.cs
  2. Program.cs
  3. README.md
  4. startserver.ps1
  5. stopserver.ps1
examples/dotnet/authinitialize/README.md

authinitialize example

This example shows how to create and register a custom IAuthInitialize authentication handler on the client that authenticates against a server that was started with the corresponding authenticator.

Prerequisites

  • Install Apache Geode
  • Build and install Apache Geode Native
  • Apache Geode Native examples, built and installed
  • Set GEODE_HOME to the install directory of Apache Geode

Running

  1. From a command shell, set the current directory to the authinitialize directory in your example workspace.

    $ cd workspace/examples/build/dotnet/authinitialize
    
  2. Run the startserver.ps1 script to start the Geode cluster with authentication and create a region.

    For Windows cmd:

    $ powershell.exe -File startserver.ps1
    

    For Windows Powershell:

    $ startserver.ps1
    
  3. Execute Debug\dotnet-authinitialize.exe. Expect the following output:

    ExampleAuthInitialize::ExampleAuthInitialize called
    ExampleAuthInitialize::GetCredentials called
    a = 1
    b = 2
    
  4. Run the stopserver.ps1 script to gracefully shutdown the Geode cluster.

    For Windows cmd:

    $ powershell.exe -File stopserver.ps1
    

    For Windows Powershell:

    $ stopserver.ps1