I\'m trying to use extension-less / .svc-less WCF services. Can anyone else confirm or deny the issue I\'m experiencing?
I use routing in code, and do this in Appli
I have a the same issue. Your solution works on my code. I just changed the Global.asax like this:
<%@ Application Language="C#" %>
<%@ Import Namespace="System.Web.Routing" %>
<%@ Import Namespace="System.ServiceModel.Activation" %>
<%@ Import Namespace="System.ServiceModel.Web " %>
To
<%@ Application Language="C#" %>
<%@ Import Namespace="System.Web.Routing" %>
<%@ Import Namespace="System.ServiceModel.Activation" %>
<%@ Import Namespace="System.ServiceModel.Web " %>