I am going to run a project in C #. I never used C #, and I was hoping I could get some implementation recommendations before I made a stupid mistake and go the wrong way.
What I'm trying to achieve basically has a C # application on the server, which can be accessed through the web API. This application will accept some string variables and then return the string. The application will open and run some installed programs (and not C # programs).
I read about WCF, but I think it might be redundant at first glance, because the API that I hope to create will have only one or two query methods and will return a string.
What I'm really looking for is tips on what I should use, what to look for, and even links to good guides on creating web services using C # and how I can make a link between the web APIs for a C # application.
Thanks to everyone for any advice.
Abs
source share