up vote 2 down vote favorite
1
share [g+] share [fb]

A multitenancy application is an app that is shared by multiple organizations (medical practices, law offices..) and each organization, in turn, has it's own users. They all log on a centralized environment.

To be identified within the application, the organization must be expressed in the URL. There are two major URL forms for that. Subdomains and folders:

  • [tenancy_name].appname.com/projects/view/123
  • www.appname.com/[tenancy_name]/projects/view/123

At first I tried the second because this solution does not involve dealing with DNSs. But then the problem: Everytime the developer needs to express an url (@Html.Action or @Url.Action) it has to explicitly pass the [tenancy_name]. This adds an unwanted overhead to the development. A possible workaround would be to implement custom versions of these HTML helpers that automatically take into account the tenancy name. I'm considering this option but looking for something more straitghtforward. I also realized ASP.NET MVC automatically passes route values for outgoing URLs but only when the controller and action are the same as the current. It would be nice if route values were always passed.

To implement the first option, the subdomain one, I think, I would need some third party DNS manager. I heard of DynDNS and took a look at it but I thought it unclear how they work just looking at their site. Would I need to trigger a web-service to tell them to create another subdomain everytime a new tenancy is created? Do they support wildcards in the DNS? Do they work on Windows Azure or shared hostings?

I'm here looking for directions. Which way should I go?

link|improve this question

68% accept rate
When you say "must be expressed"... I suppose you mean that you WANT to do it that way, isn't it? Since you could have a multitenancy app and don't reflect it in the routing or URL. – Romias Nov 29 '11 at 20:10
1  
well, soft of. I think it's preferable. Imagine the software is a project manager. If the tenancy is not expressed in the URL, then the URL www.appname.com/projects would list different projects depending on the user logged in. If you had two accounts, you might get confused and have a hard time bookmarking URLs. In fact this is not mandatory but preferable. – André Pena Nov 29 '11 at 20:28
Yes, you make a good point about multiple accounts an bookmarking... in those cases it is useful. – Romias Nov 29 '11 at 20:33
Have you already looked into MVC Areas ? – BigMike Nov 30 '11 at 8:15
feedback

1 Answer

look this project on codeplex, the "baseRoute" maybe can help you.

http://mvccoderouting.codeplex.com/

Regards.

link|improve this answer
Wow, that's pretty cool. – Mystere Man Dec 2 '11 at 22:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.