Answered by:
gRPC

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
- Moved by Drake_WuMicrosoft contingent staff Thursday, May 28, 2020 3:03 AM
Monday, May 18, 2020 2:51 AM
Answers
-
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.- Proposed as answer by Guido Franzke Thursday, May 28, 2020 5:48 AM
- Marked as answer by Dave PatrickMVP Friday, May 29, 2020 7:40 PM
Thursday, May 28, 2020 3:23 AM -
- Edited by Guido Franzke Thursday, May 28, 2020 5:49 AM
- Marked as answer by Dave PatrickMVP Friday, May 29, 2020 7:40 PM
Thursday, May 28, 2020 5:49 AM
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.
- Edited by Drake_WuMicrosoft contingent staff Thursday, May 28, 2020 3:03 AM
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.- Proposed as answer by Guido Franzke Thursday, May 28, 2020 5:48 AM
- Marked as answer by Dave PatrickMVP Friday, May 29, 2020 7:40 PM
Thursday, May 28, 2020 3:23 AM -
- Edited by Guido Franzke Thursday, May 28, 2020 5:49 AM
- Marked as answer by Dave PatrickMVP Friday, May 29, 2020 7:40 PM
Thursday, May 28, 2020 5:49 AM