saas

Django multi-user saas

倾然丶 夕夏残阳落幕 提交于 2019-12-09 21:50:07
问题 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

Ruby on Rails: how to design a SaaS infrastructure?

↘锁芯ラ 提交于 2019-12-09 18:08:18
问题 I'm building a Rails 3 application that I plan on provided as a subscription-based SaaS (Software as a Service) product. Basically, I want users to be able to hit my "Sign up" page, create a new account, and immediately start using the software. A good example of what I'm trying to accomplish is: http://www.getharvest.com/ Here's what I need to happen when someone signs up: A MySQL database for them is generated on the db server A sub-domain is created (e.g., companyx.awesomeapp.com) The

Why would WCF fail to call a SOAP service when a 302 response is encountered?

孤者浪人 提交于 2019-12-09 11:57:50
问题 I have written an application that starts with making a WCF call to login. I generated the client code with a service reference. It works fine for clients who have their services installed locally to their network. However, there is a saas environment, as well, where these same services are controlled by the corporate powers that be. In the saas environment, I was informed that the login was failing. Investigating using Fiddler, I found that the service call to login is returning HTML,

How to build a Jira-like SaaS site?

天涯浪子 提交于 2019-12-09 03:54:12
问题 Anyone know how to build a single-tenant SaaS application like Jira, Wordpress.com, etc.. where every customer gets a separate site, but hosted on the company servers? In the web seems to be a lot of information about multi-tenant SaaS applications and how to host them in sites like Heroku, Openshift, etc... but no much is said about single-tenant applications. I've been reading a lot but I need that someone point me in the right direction. 回答1: Looks like you have got enough information

Issue with Order function and Crossoins in MDX

ぃ、小莉子 提交于 2019-12-08 11:21:21
问题 We have a table with one Measure [Discount Amount] on the COLUMNS and CROSSJOIN of [Product].[Product Categories] and [Geography].[Geography] on ROWS axis. We use ORDER function to sort entities by [Discount Amount] with option "BDESC". MDX: SELECT NON EMPTY {[Measures].[Discount Amount]} ON COLUMNS ,NON EMPTY Order ( { Hierarchize ( { CrossJoin ( { Hierarchize ( { [Product].[Product Categories].[All Products] ,[Product].[Product Categories].[All Products].Children } ) } ,{Hierarchize({

SaaS: one web app to one database VS. many web apps to many databases

时间秒杀一切 提交于 2019-12-08 09:32:28
I am planning to develop a fairly small SaaS service. Every business client will have an associated database (same schema among clients' databases, different data). In addition, they will have a unique domain pointing to the web app, and here I see these 2 options: The domains will point to a unique web app, which will change the connection string to the proper client's database depending on the domain. (That is, I will need to deploy one web app only.) The domains will point to their own web app, which is really the same web app replicated for every client but with the proper connection

Web application, SAAS?

前提是你 提交于 2019-12-08 07:39:31
问题 I am trying to undestand "What really SAAS is". It is Software as a Service, and hotmail outlook is one example of SAAS. But I am still in confusion. Suppose, I built an web app "Hospital Management System" which keeps the record of all patient and all that, Is it a Software as a Service. What specific things are needed to be a Software as a Service, or just a web app is a SAAS???? 回答1: A software is SAAS if it is deployed and managed to serve mutiple users (tenant is the term here) from the

A completely closed source docker container

一世执手 提交于 2019-12-07 10:25:11
问题 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

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

∥☆過路亽.° 提交于 2019-12-07 07:27:22
问题 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

Symfony2 - Create a Doctrine filter to select current user data

老子叫甜甜 提交于 2019-12-07 05:21:24
问题 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