tree: 5174a8548a63fa1783188bee84f8cef89d845e9a [path history] [tgz]
  1. CMakeLists.txt
  2. CMakeLists.txt.in
  3. main.cpp
  4. README.md
  5. startserver.ps1
  6. startserver.sh
  7. stopserver.ps1
  8. stopserver.sh
examples/cpp/sslputget/README.md

sslputget example

This example illustrates how to use SSL encryption for all traffic between a client application and Apache Geode.

Prerequisites

Running

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

    $ cd workspace/examples/build/cpp/sslputget
    
  2. Run the startserver 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
    

    For Bash:

    $ ./startserver.sh
    
  3. Execute cpp-sslputget, expect the following output:

    Storing id and username in the region
    Getting the user info from the region
    rtimmons = Robert Timmons
    scharles = Sylvia Charles
    
  4. Run the stopserver script to gracefully shutdown the Geode cluster.

    For Windows cmd:

    $ powershell.exe -File stopserver.ps1
    

    For Windows Powershell:

    $ stopserver.ps1
    

    For Bash:

    $ ./stopserver.sh