Michael Z

Results 4 comments of Michael Z

1. Thank you for your response. 2. I have reviewed many such controls, and I think this one is really well done, useful. 3. My use case is the following:...

Hi Ishpal, the code looks at the URL that calls it, and generates that service's swagger. I forked the code because I had to work with some wcf services that...

**global asax**: protected void Application_Start(object sender, EventArgs e) { RouteTable.Routes.Add(new ServiceRoute("v1/rest", new WebServiceHostFactory(), typeof(RESTful))); RouteTable.Routes.Add(new ServiceRoute("api-docs", new WebServiceHostFactory(), typeof(Swaggerator.Discoverator))); } **issue**: when i call .../api-docs, i just get _{"apiVersion":"1.0.0.0","swaggerVersion":"1.2","apis":[{"path":"/v1/rest","description":"A RESTful...

thanks for this great code, and thanks for getting back to me... yes, i figured that out the hard way by seeing that the GetServiceDetails(string servicePath) takes what's after the...