-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
54 lines (46 loc) · 1.93 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using Grpc.Net.Client;
using System;
using System.Net.Http;
using System.Threading.Tasks;
using Zyborg.NegotiatedToken.Client;
namespace Example.GRPC.Client
{
class Program
{
static async Task Main()
{
using var httpHandler = new HttpClientHandler()
{
// For local dev and testing, we just use an untrusted
// self-signed cert so ignore those errors
ServerCertificateCustomValidationCallback =
HttpClientHandler.DangerousAcceptAnyServerCertificateValidator,
// We need to let the client provide our
// default Win Auth credentials if prompted
UseDefaultCredentials = true,
};
using var negtokHandler = new NegotiatedTokenHandler("/token", httpHandler);
using var httpClient = new HttpClient(negtokHandler);
var grpcChannelOptions = new GrpcChannelOptions
{
HttpClient = httpClient,
DisposeHttpClient = false,
};
using var channel = GrpcChannel.ForAddress("https://localhost:5001", grpcChannelOptions);
var client = new Greeter.GreeterClient(channel);
var helloWorld = await client.SayHelloAsync(
new HelloRequest { Name = "World" });
Console.WriteLine(helloWorld.Message);
var unprotectedReply = await client.GetUnprotectedDetailsAsync(
new DetailsInput { KeepGroupSid = false });
Console.WriteLine("UNPROTECTED:");
Console.WriteLine(unprotectedReply.Details);
Console.WriteLine();
var protectedReply = await client.GetProtectedDetailsAsync(
new DetailsInput { KeepGroupSid = false });
Console.WriteLine("PROTECTED:");
Console.WriteLine(protectedReply.Details);
Console.WriteLine();
}
}
}