? lcase(Mid$(CreateObject("Scriptlet.TypeLib").GUID, 2, 36))
I’m a big fan of the attribute routing in webapi 2. Its much more descriptive than using an abstracted routing table defined in my webapi config startup. Recently I had an issue where my controller endpoints where not getting invoked. Instead, the client requests were returned with a 404 response. I had this defined in my controller: 1 [RoutePrefix("api/auth/appl... 2 public class ApplicationController : BusinessServicesControllerBase 3 { 4 /// <summary> 5 /// The method servicing the ......