Is it possible to use Visual Studio and step through debug of a REST service using the WCFTestTool? If so, how is that done? I have a set of SOAP WCF services but I need to do a REST as well. I know one can do a WebInvoke after the OperationContract like:
[WebInvoke(Method = "POST", UriTemplate = "/GetTest", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
The code is C# and Visual Studio 2017.
I do *not* have localadmin access.
Any information on that would be greatly appreciated.
Thanks!