saas

Developing a Multitenant SaaS

狂风中的少年 提交于 2019-12-06 16:13:19
问题 I am developing a web application for data analysis on agricultural datasets. Actually I want to make the application to be multi tenant and I wish to deploy that SaaS application in a private cloud (in our school). I got a few basic doubt in the programming part. Do I need to develop the application in the Hadoop's map/reduce functionality? Secondly,the selection of database. Since the data are highly structural in nature (like sql) can I use a sql server to manage data in cloud? In such do

Java Webapplication - How to Implement Saas Using multischema architecture?

独自空忆成欢 提交于 2019-12-06 07:29:05
We are having a web application developed j2ee/Spring. We are planning to implement SaaS model by using different schema for each customer. Please suggest the best way to do it. We are blank how to start the process ? How can we map different customer to different DB ? Thanks techuser soma For using different schema for each customer you need to come up with an identifier(s) that can be used to uniquely identify the customer schema or the tenant schema. It is usually a tenant identifier key. Neil's answer has provided useful links on actually making connections to different tenant databases.

SaaS - Multi tenant Separate database model Implementation in Java

倾然丶 夕夏残阳落幕 提交于 2019-12-06 05:13:31
问题 I am architecting a software project and I want to achieve a SAAS (Software As a service) model. I want to design a web application compatible to multi tenancy with separate database per tenant. How can i design Multi tenant UI in Java environment(UI should be tenant configurable in nature)? How can I design data access layer for separate database per tenant(Single application instance for multiple tenant database)? And also suggest me to choose technology stack in Java environment. Thanks in

A completely closed source docker container

。_饼干妹妹 提交于 2019-12-05 15:08:42
I was wondering if it is possible to offer Docker images, but not allow any access to the internals of the built containers. Basically, the user of the container images can use the services they provide, but can't dig into any of the code within the containers. Call it a way to obfuscate the source code, but also offer a service (the software) to someone on the basis of the container, instead of offering the software itself. Something like "Container as a Service", but with the main advantage that the developer can use these container(s) for local development too, but with no access to the

Send SMS from Web (are there some providers for this)?

痴心易碎 提交于 2019-12-05 13:27:52
I'd like to have something like what the app.net site has. You click a button and get the option to send a link to your phone via SMS (or email). What are some options for implementing the sms side of things, and are there services or open source packages that provide this? Here's a random example from app.net . Click the "Get this App" button to see what I mean. Something like this would even work for me <a href="http://saasSMS.com?url=mycorp.com/test.html">Send link to Phone</a> Where "saasSMS.com" is some service that handles the whole sms side of things. Ideally could either handle that

Symfony2 - Create a Doctrine filter to select current user data

点点圈 提交于 2019-12-05 09:47:06
I'm building a Saas / Multitenant application using Symfony 2. I've created a Doctrine event-subscriber to add and update the owner of a row, the user who created it, the user who modified it, timestamps and so. And now I need to implement some kind of filter so when a user is logged in, he only can see data from his company. My first though was using a Doctrine preLoad event, but this event doesn't exist... As far as I know, I must use Doctrine filters, isn't it? If so, how can this filter access user data to read the company id? Must I inject it using the Dependency Injection? Is there any

Efficient Filtering / Searching

我是研究僧i 提交于 2019-12-04 23:52:54
问题 We have a hosted application that manages pages of content. Each page can have a number of customized fields, and some standard fields (timestamp, user name, user email, etc). With potentially hundreds of different sites using the system -- what is an efficient way to handle filtering/searching? Picture a grid view that you want to narrow down. You can filter on specific fields (userid, date) or you can enter a full-text search. For example, "all pages started by userid 10" would be a pretty

Multi Tenant Multiple Database Setup [closed]

旧街凉风 提交于 2019-12-04 21:13:52
We're setting up a multi tenant website using Yii2. We want to allow each user to have it's own database while using the same system. We'll also have a system database that holds the users information and information like invoicing. Here are some of our questions. How do we make the second database connection (db2) dynamic, based on information stored in the first database connection (db)? How do we setup migrations to be applied to all tenant databases (db2) while they are dynamic? How would we target one dynamic database on initial migration? There are a few links that have helped but haven

Django multi-user saas

a 夏天 提交于 2019-12-04 18:35:34
I'm creating a small saas for learning purposes... I know that the best way to go is to have a separate schema for each user... But my saas is a small app and I really don't need separate schemas plus it would complicate stuff (later alterations to the schema)... So I'm going to use the same schema for all users and just append each user's ID to the entry and then display only the user's entries upon login. Is there a way I can "prepend" user's ID upon login through middleware? Or do I need to adjust all the queries (filter by user's ID)? I already store the user's ID to his entries... so I

Developing a Multitenant SaaS

Deadly 提交于 2019-12-04 18:26:08
I am developing a web application for data analysis on agricultural datasets. Actually I want to make the application to be multi tenant and I wish to deploy that SaaS application in a private cloud (in our school). I got a few basic doubt in the programming part. Do I need to develop the application in the Hadoop's map/reduce functionality? Secondly,the selection of database. Since the data are highly structural in nature (like sql) can I use a sql server to manage data in cloud? In such do I need any middleware in addition to the IaaS setup and the SaaS application? I am using J2EE