locked
gRPC RRS feed

  • Question

  • I have questions about gRPC - my questions are based on coming from experience with IIS creating an application and then assigning an application pool.  1. if deployed on a windows server - how is that done ?, its not ASP web, and its not a windows service either.  How is it started and stopped ??? these installation details I cannot find or didnt look in right places. 2. Does it run continually or just spool up when called ? How would it be called - I see in the run on local host ) - so that makes me feel like I would configure it under IIS and give it a app name.  But its not supposed to normally run under IIS or ????  so how does that happen ??  Thanks 
      static async Task Main(string[] args) 
            { 
                var httpClient = new HttpClient();  
                httpClient.BaseAddress = new Uri("https://localhost:50051"); 
                var client = GrpcClient.Create<Greeter.GreeterClient>(httpClient); 
     
                var reply = await client.SayHelloAsync( 
                          new HelloRequest { Name = "GreeterClient" }); 
                Console.WriteLine("Greeting: " + reply.Message); 
                Console.WriteLine("Press any key to exit..."); 
                Console.ReadKey(); 
            } 

    andrew

    Monday, May 18, 2020 2:51 AM

Answers

All replies

  • Hi,

    This forum is for discussing the Media Foundation Development for Windows Desktop, but this thread seem to be not related to this, I will redirect this case, and thanks for understanding.

    Best Regards,

    Drake


    MSDN Community Support Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.

    Thursday, May 28, 2020 3:03 AM
  • Might try asking for help over here.

    https://github.com/grpc/grpc-dotnet/issues

    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=wcf

     

     

     



    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows Server] Datacenter Management

    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees, and confers no rights.

    Thursday, May 28, 2020 3:23 AM
  • Hello,

    you could also ask here too: https://forums.iis.net/

    Regards, Guido


    Thursday, May 28, 2020 5:49 AM