343

I currently have two unrelated MVC3 projects hosted online.

One works fine, the other doesn't work, giving me the error:

Multiple types were found that match the controller named 'Home'. This can happen if the route that services this request ('{controller}/{action}/{id}') does not specify namespaces to search for a controller that matches the request.

If this is the case, register this route by calling an overload of the 'MapRoute' method that takes a 'namespaces' parameter.

The way my hoster works is that he gives me FTP access and in that folder I have two other folder, one for each of my applications.

ftpFolderA2/foo.com

ftpFolderA2/bar.com

foo.com works fine, I publish my application to my local file system then FTP the contents and it works.

When I upload and try to run bar.com, the issue above fires and prevents me from using my site. All while foo.com still works.

Is bar.com searching from controllers EVERYWHERE inside of ftpFolderA2 and that's why it's finding another HomeController? How can I tell it to only look in the Controller folder as it should?

Facts:

  1. Not using areas. These are two COMPLETELY unrelated projects. I place each published project into each respective folder. Nothing fancy.
  2. Each project only has 1 HomeController.

Can someone confirm this is the problem?

Community
  • 1
  • 1
Only Bolivian Here
  • 35,719
  • 63
  • 161
  • 257

25 Answers25

556

Here is another scenario where you might confront this error. If you rename your project so that the file name of the assembly changes, it's possible for you to have two versions of your ASP.NET assembly, which will reproduce this error.

The solution is to go to your bin folder and delete the old dlls. (I tried "Rebuild Project", but that didn't delete 'em, so do make sure to check bin to ensure they're gone)

Kirk Woll
  • 76,112
  • 22
  • 180
  • 195
  • 1
    Other variation of this error is when you use resharper and you use some "auto" refactor options that include namespace name changing. This was what happen to me. – Sebastian 506563 Feb 20 '16 at 23:05
  • 5
    If you are getting this from an Azure App Service, go to https://.scm.azurewebsites.net/DebugConsole to log in and delete files. – Tom Blodget Jun 03 '16 at 14:36
  • 5
    Thx this was the problem for me. I'd created a "new" project by copy/pasting an existing project into a new folder; the old build dlls came with, deleting bin folder wiped it clean – brando Jul 20 '16 at 17:04
  • I got this when moving my project files to a second drive. Clearing out the bin folder solves it. Oddest darn thing. – Roberto Bonini Oct 17 '16 at 19:07
  • This occured for me when I had an OData controller and an MVC controller with the same name (different namespaces), except in my case the error message also said different namespaces are not supported for OData routes, and indeed, the OData route config does not accept a namespaces parameter like WebAPI config does. The error also ONLY OCCURED ON MY AZURE PRODUCTION SERVER, after combining code from a couple of projects. To fix the issue, I used FTP to connect to the Azure site, cleared the root dir, and redeployed. – Patrick Borkowicz May 31 '17 at 03:16
  • @TomBlodget Thank you. This was what I needed. I was able to set a delete previous files option on the publishing profile, but basically, it's the same as your solution. – AnotherDeveloper Jun 28 '17 at 16:21
  • Seems Clean and Rebuild don't clear bin folder. Manually we have to delete. – Saravanan Sachi Dec 04 '18 at 09:04
  • For me after clean up I had to modify Global.asax code behind – Milad Jul 01 '20 at 11:44
  • 9 years later, and I just ran into this issue. Made a copy of a project with a new name. Published the new project. Was working fine in my new dev environment, but not when I overwrote the existing staging and prod sites. This was exactly the reason! Thanks so much! – suttonb1 Nov 10 '21 at 03:07
499

This error message often happens when you use areas and you have the same controller name inside the area and the root. For example you have the two:

  • ~/Controllers/HomeController.cs
  • ~/Areas/Admin/Controllers/HomeController.cs

In order to resolve this issue (as the error message suggests you), you could use namespaces when declaring your routes. So in the main route definition in Global.asax:

routes.MapRoute(
    "Default",
    "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    new[] { "AppName.Controllers" }
);

and in your ~/Areas/Admin/AdminAreaRegistration.cs:

context.MapRoute(
    "Admin_default",
    "Admin/{controller}/{action}/{id}",
    new { action = "Index", id = UrlParameter.Optional },
    new[] { "AppName.Areas.Admin.Controllers" }
);

If you are not using areas it seems that your both applications are hosted inside the same ASP.NET application and conflicts occur because you have the same controllers defined in different namespaces. You will have to configure IIS to host those two as separate ASP.NET applications if you want to avoid such kind of conflicts. Ask your hosting provider for this if you don't have access to the server.

Junior Mayhé
  • 16,144
  • 26
  • 115
  • 161
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
  • I'm not using areas at all. These are two completely unrelated applications residing in separate folder inside an FTP root folder. Maybe my application is looking for MVC controllers everywhere it can and that reach just so happens to extend to the other Home Controller. How can I tell it to not look anywhere but it's own Controller folder and disregard the rest? – Only Bolivian Here Oct 20 '11 at 21:19
  • 2
    @SergioTapia, it seems that they are pretty related your applications. Your hosting provider put them inside the same ASP.NET application. You will have to ask him split them in IIS as separate instances or you will have lots of problems. – Darin Dimitrov Oct 20 '11 at 21:20
  • 13
    Thanks. In ASP MVC 4.0 you need to pass named argument like namespaces: new[] {"AppName.Areas.Admin.Controllers" } – om471987 Nov 14 '12 at 12:02
  • 1
    +1 - Works well. I didn't realize there was a separate area for route registration in areas. Everywhere I look it seems there is a quality answer from Darin :) – Travis J May 07 '13 at 19:42
  • Is there a way of doing something similar in Web Api 2? The fourth argument for the Routes.MapHttpRoute only takes constraints and doesn't understand the namespace argument. – keithl8041 Nov 21 '15 at 13:37
  • hi, I've tried yours code, but it comes an error again The request for 'Health' has found the following matching controllers: Lovefreerangeeggs.Areas.Admin.Controllers.HealthController Lovefreerangeeggs.Controllers.HealthController, **What should I do?** – Karthic G Sep 26 '16 at 13:24
  • 3
    If you are using areas and want to namespace the controllers, you need to namespace **both** the routes inside the area **and** outside. Only namespacing the area route still gave me this issue. – Gavin Ward Jul 18 '17 at 13:14
  • i was facing the similar issue. and main reason was that i had the same controller in two different Area – Satish Kumar sonker Sep 13 '17 at 04:50
  • 1
    "AppName.Controllers" is actually "MyNamespace.Controllers" for clarity, in case you are looking for the AppName registered somewhere, it's just the namespace of the controller that should be the default route handler. – ransems May 18 '21 at 10:13
66

In MVC4 & MVC5 It is little bit different, use following

/App_Start/RouteConfig.cs

namespace MyNamespace
{
    public class RouteConfig
    {
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
                namespaces:  new[] {"MyNamespace.Controllers"}
            );
        }
    }
}

and in Areas

context.MapRoute(
                "Admin_default",
                "Admin/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional },
                new[] { "MyNamespace.Areas.Admin.Controllers" }
            );
Developer
  • 25,073
  • 20
  • 81
  • 128
38

Watch this... http://www.asp.net/mvc/videos/mvc-2/how-do-i/aspnet-mvc-2-areas

Then this picture (hope u like my drawings)

enter image description here

Tom
  • 15,781
  • 14
  • 69
  • 111
  • Solved the issue..! :) – Aruna Feb 05 '14 at 13:24
  • 1
    @ppumkin tell that to a blind programmer. The text can be read by screen readers though – Carlos Muñoz Mar 17 '19 at 17:34
  • Hi Carlos. Yes I understand the situation. It is already tough explaining it people without visibility disabilities. I am not even sure any kind of assistive software would be able to describe what is going on in the picture well to any body. It does bring to attention that the answer should probably have text at least trying to describe what is going on. – Piotr Kula Mar 18 '19 at 08:59
34

in your project bin/ folder

make sure that you have only your PROJECT_PACKAGENAME.DLL

and remove ANOTHER_PROJECT_PACKAGENAME.DLL

that might appear here by mistake or you just rename your project

Sruit A.Suk
  • 7,073
  • 7
  • 61
  • 71
32

What others said is correct but for those who still face the same problem:
In my case it happened because I copied another project n renamed it to something else BUT previous output files in bin folder were still there... And unfortunately, hitting Build -> Clean Solution after renaming the project and its Namespaces doesn't remove them... so deleting them manually solved my problem!

Dr TJ
  • 3,241
  • 2
  • 35
  • 51
24

Check the bin folder if there is another dll file that may have conflict the homeController class.

Marko
  • 20,385
  • 13
  • 48
  • 64
Amir Shrestha
  • 451
  • 5
  • 11
  • 7
    This bit me when copying a project and renaming it... the old project named dll was still in the bin, a cleanup didn't remove it... I had to manually delete it! – Paul Zahra Nov 25 '14 at 15:49
  • 2
    This was the problem for me. A colleague added by mistake a reference from one front-end project to another creating this issue. He removed the reference, thus Visual Studio also removing the dll files on his disk. I pulled the update from Git, references were gone, but the dll files remained, evenafter a clean. Simply because my VS didn't see the reference anymore. But when running IIS saw the files and used them. Removing them from my disk helped. – Yeronimo Jul 20 '18 at 14:33
13

Another solution is to register a default namespace with ControllerBuilder. Since we had lots of routes in our main application and only a single generic route in our areas (where we were already specifying a namespace), we found this to be the easiest solution:

ControllerBuilder.Current
     .DefaultNamespaces.Add("YourApp.Controllers");
Ben Foster
  • 34,340
  • 40
  • 176
  • 285
  • This was the case for me. If you truly have multiple controllers with the same name, this may be needed after you've added namespaces to your route definitions. For example, for your homepage where the controller and area aren't explicitly chosen by the path. – Jason Beck Mar 31 '17 at 22:25
  • In the project I work on, we have a main turnkey backoffice with areas for custom client work. Each one has a 'settings' controller. This answer is a great alternative to having to define a route for the settings controller for each area. – Derreck Dean Apr 09 '18 at 14:38
7

Even though you are not using areas, you can still specify in your RouteMap which namespace to use

routes.MapRoute(
    "Default",
    "{controller}/{action}",
    new { controller = "Home", action = "Index" },
    new[] { "NameSpace.OfYour.Controllers" }
);

But it sounds like the actual issue is the way your two apps are set up in IIS

StanK
  • 4,750
  • 2
  • 22
  • 46
6

if you want to resolve it automatically.. you can use the application assambly just add the following code:

 routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
            namespaces: new[] { string.Format("{0}.Controllers", BuildManager.GetGlobalAsaxType().BaseType.Assembly.GetName().Name) }
        );
Xtremexploit
  • 319
  • 4
  • 7
6

I just had this issue, but only when I published to my website, on my local debug it ran fine. I found I had to use the FTP from my webhost and go into my publish dir and delete the files in the BIN folder, deleting them locally did nothing when I published.

Mech0z
  • 3,627
  • 6
  • 49
  • 85
  • This was the fix for me. My publish profile did not remove files not present locally, so my app picked up old dlls in addition to new ones and found duplicate types. – Form Feb 18 '16 at 17:22
  • 1
    I changed my project name and i refractored all the files but then i got this error. Deleting the bin folder worked for me too. – Mauro Valvano Mar 05 '16 at 12:32
5

You can also get the 500 error if you add your own assembly that contains the ApiController by overriding GetAssemblies of the DefaultAssembliesResolver and it is already in the array from base.GetAssemblies()

Case in point:

public class MyAssembliesResolver : DefaultAssembliesResolver
{
    public override ICollection<Assembly> GetAssemblies()
    {
        var baseAssemblies = base.GetAssemblies();

        var assemblies = new List<Assembly>(baseAssemblies);

        assemblies.Add(Assembly.GetAssembly(typeof(MyAssembliesResolver)));

        return new List<Assembly>(assemblies);
    }
}

if the above code is in the same assembly as your Controller, that assembly will be in the list twice and will generate a 500 error since the Web API doesn't know which one to use.

Allan Elder
  • 4,052
  • 17
  • 19
5

There might be another case with Areas even you have followed all steps in routing in Areas(like giving Namespaces in global routing table), which is:

You might not have wrapped your Global Controller(s) in 'namespace' you provided in routing.

Eg:

Done this:

public class HomeController : Controller
{

Instead of:

namespace GivenNamespace.Controllers
{
   public class HomeController : Controller
   {
T Gupta
  • 947
  • 11
  • 11
  • Yes It's not enough to just provide a namespace in MapRoute. The namespace provided here need to match the namespace of the controller class resides in. Now it works! – DanKodi Jun 04 '16 at 12:59
4

In Route.config

namespaces: new[] { "Appname.Controllers" }

Awais
  • 41
  • 1
3

i just deleted folder 'Bin' from server and copy my bin to server, and my problem solved.

javad hemati
  • 236
  • 1
  • 2
  • 6
3

Got same trouble and nothing helped. The problem is that I actually haven't any duplicates, this error appears after switching project namespace from MyCuteProject to MyCuteProject.Web.

In the end I realized that source of error is a global.asax file — XML markup, not .cs-codebehind. Check namespace in it — that's helped me.

Arman Hayots
  • 2,459
  • 6
  • 29
  • 53
3

Some time in a single application this Issue also come In that case select these checkbox when you publish your application enter image description here

Umang Patwa
  • 2,795
  • 3
  • 32
  • 41
2

Right click the project and select clean the project. Or else completely empty the bin directory and then re-build again. This should clear of any left over assemblies from previous builds

VivekDev
  • 20,868
  • 27
  • 132
  • 202
2

If it could help other, I've also face this error. The problem was cause by on incorrect reference in me web site. For unknown reason my web site was referring another web site, in the same solution. And once I remove that bad reference, thing began to work properly.

Hugo
  • 2,077
  • 2
  • 28
  • 34
1

We found that we got this error when there was a conflict in our build that showed up as a warning.

We did not get the detail until we increased the Visual Studio -> Tools -> Options -> Projects and Solutions -> Build and Run -> MSBuild project build output verbosity to Detailed.

Our project is a .net v4 web application and there was a conflict was between System.Net.Http (v2.0.0.0) and System.Net.Http (v4.0.0.0). Our project referenced the v2 version of the file from a package (included using nuget). When we removed the reference and added a reference to the v4 version then the build worked (without warnings) and the error was fixed.

AnthonyJ
  • 435
  • 1
  • 7
  • 9
1

Other variation of this error is when you use resharper and you use some "auto" refactor options that include namespace name changing. This is what happen to me. To solve issue with this kind of scenario delete folderbin

Sebastian 506563
  • 6,980
  • 3
  • 31
  • 56
  • This happened to me when I copied to contents of 1 project over the contents of another. I had to delete the specific files from the bin folder – Adriaan Davel Feb 26 '16 at 08:20
0

If you're working in Episerver, or another MVC-based CMS, you may find that that particular controller name has already been claimed.

This happened to me when attempting to create a controller called FileUpload.

0

i was facing the similar issue. and main reason was that i had the same controller in two different Area. once i remove the one of them its working fine.

i have it will helpful for you.

Project Solution

Satish Kumar sonker
  • 1,250
  • 8
  • 15
0

I have two Project in one Solution with Same Controller Name. I Removed second Project Reference in first Project and Issue is Resolved

Kashif Faraz
  • 321
  • 6
  • 19
0

I have found this error can occur with traditional ASP.NET website when you create the Controller in non App_Code directory (sometimes Visual Studio prevents this).

It sets the file type to "Compile" whereas any code added to "App_Code" is set to "Content". If you copy or move the file into App_Code then it is still set as "Compile".

I suspect it has something to with Website Project operation as website projects do not have any build operation.Clearing the bin folder and changing to "Content" seems to fix it.

Curtis White
  • 6,213
  • 12
  • 59
  • 83