Reputation: 41
I am just started exploring Thrift framework. I'd like to build a Thrift service in C# that will be hosted on a windows server. Right now, according varies tutorials, I am able create a Thrift service within a console application project.
However, I am wondering how the actual Thrift service is going to be hosted under Windows server. Should I build a window service application that launch the Thrift service?
Upvotes: 4
Views: 1273
Reputation: 31
There are three options:
Upvotes: 3
Reputation: 165
Yes the choice is in your hands. You can incorporate the thrift service in a console app or a windows service application based on your requirements.
Upvotes: 1