tree: 570f6455c4a5115b2215bd4f999fc9fe94e53ada [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:

    PS> startserver.ps1
    

    For Bash:

    $ ./startserver.sh
    
  3. Execute (for Bash)

    ./cpp-sslputget ./ClientSslKeys/

    Or, for Windows:

    <build-type>/cpp-sslputget ./ClientSslKeys (where <build-type> = Debug or Release)

    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