I have a WCF service connected to a database. I want to integrate JavaScript (specifically AngularJS) to call the service methods and display them on a webpage. Instead of using a separate ASP.NET client application, I aim to incorporate the JavaScript/HTML within the WCF service project itself. My goal is for users to interact with the webpage directly while running the service, rather than through a generic interface like shown here: . However, I am unsure where to begin.
Could you advise me on how to organize my JS/HTML files in the project and how to link them to the WCF service? Do I need to make any adjustments to expose the service to the JS/HTML files? Thank you for your help!