I have a difficult database design decision to make regarding multi-tenancy for the growing number of branches of my client\'s web-based CRM, which I actively maintain.
I\'m working on a multi-tenant ASP.NET MVC application. So far we have been using HttpContext to store a few objects for the request (technically partitioned by tenant).
Is it possible to inject dependencies into an MVC ViewPage (must support layout pages) without using DependencyResolver?
I work on an existing Seam 2.2.0 + JPA (Hibernate 3.3.1) application that needs to be converted to a \'single database per client\' environment where each database schema is the same.The application r
We are a building a Google app engine application with multi-tenancy and we expect that different tenants would want to change the look and feel of the app to their own corporate id开发者_如何学Python
I need to develop a multi-tenant website like sample1.mysite.com sample2.mysite.com Hold on! No, this is a different problem from what you are thinking; and before giving me link to another question
We\'re building a multitenant SAAS app. Each customer gets its own subdomain, http://customername.mycompany.com. Each cust开发者_运维技巧omer will have many gigabytes of data, which means that they ha
My goal is to have separate user accounts for each subdomain.Under no circumstance do I want cross-pollination between subdomains.
We\'re developing a \"middle-tier\" to replace an existing business logic/data access layer.One of the design开发者_StackOverflow社区 concerns we\'re under is that we need to design it in a way that a
Questions Why do some multi-tenant web applications use subdomains to designate the tenant while others do not?