Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to develop the following application using SharePoint 2013:

  1. A single portal for multiple subsidiaries of an organization. organizations belong to this group would access this portal for doing their day to day work.
  2. The portal offers identical functionality for all companies, only users and resources would be different. Each individual company would have their own user, manager and approver.
  3. Users of each company has it’s own resources like assets, employees, departments, document libraries etc.
  4. System identifies the current organization on basis of user’s `login information.

It would be a great help if anybody can suggest me an architecture.

Thanks in advance.

share|improve this question
Per the sharepoint tag, this question is more suitable on the sharepoint.stackexchange.com site – Tom Panning Jan 30 at 13:42

closed as not constructive by LittleBobbyTables, Bob Kaufman, Beska, sdleihssirhc, Pondlife Jan 30 at 22:19

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

SharePoint allow you to implement a various possible architectures for your needs. One quick simple is the next.

  1. For your case you can have one web application for big organization.
  2. Subsidiaries can be separated by individual site collection. You can setup basic site collection and make a backup of it (like template). For every new subsidiary you can take that backup and restore as new site collection.
  3. Each individual site collection can hold individual content even sub websites.
  4. User will be able to authenticate at application level. You can manage permissions on site collection level, however user from one site collection will have an ability navigate to another site collection, but they will got access denied message.
  5. The identification code could be injected in authentication and make redirect to URL of proper site collection.

Of course you can take into account some heavy designs including Active Directory, claims authentication with AD FS, multiple web apps or multi tenancy.

share|improve this answer

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