• Home
  • Raw
  • Download

Lines Matching +full:real +full:- +full:world

1 Hello World Example with TLS
4 The example require grpc-java to already be built. You are strongly encouraged
15 …ing code generation plugin](../../COMPILING.md) (Only need this step for non-released versions, e.…
22 This creates the scripts `hello-world-tls-server`, `hello-world-tls-client`,
24 `build/install/example-tls/bin/` directory that run the example. The
27 Running the hello world with TLS is the same as the normal hello world, but takes additional args:
29 **hello-world-tls-server**:
36 **hello-world-tls-client**:
42 - Note `trustCertCollectionFilePath` is not needed if you are using system default certificate auth…
46 in the test certificates. You can generate your own self-signed certificates with commands in the t…
49 - Note you can use system default certificate authority if you are using a real server certificate.
51 #### Hello world example with TLS (no mutual auth):
55 ./build/install/example-tls/bin/hello-world-tls-server 50440 ../../testing/src/main/resources/certs…
57 ./build/install/example-tls/bin/hello-world-tls-client localhost 50440 ../../testing/src/main/resou…
60 #### Hello world example with TLS with mutual auth:
64 ./build/install/example-tls/bin/hello-world-tls-server 50440 ../../testing/src/main/resources/certs…
66 ./build/install/example-tls/bin/hello-world-tls-client localhost 50440 ../../testing/src/main/resou…
75 …ing code generation plugin](../../COMPILING.md) (Only need this step for non-released versions, e.…
81 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworldtls.HelloWorldServerTls -Dexec.args="50…
83 $ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworldtls.HelloWorldClientTls -Dexec.args="lo…
90 $ bazel build :hello-world-tls-server :hello-world-tls-client
92 $ ../bazel-bin/hello-world-tls-server 50440 ../../testing/src/main/resources/certs/server1.pem ../.…
94 $ ../bazel-bin/hello-world-tls-client localhost 50440 ../../testing/src/main/resources/certs/ca.pem