473,769 Members | 5,757 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is SaaS nothing more than rebranded ASP?

It appears that one of the latest hot buzzwords is SaaS (Software as a
Service). From what I can tell, this looks like nothing more than rebranding
of the old ASP model, which fell out of favor. Am I correct, or is there
really something new and interesting here?
Jun 27 '08
15 1252
Bill Fuller wrote:
Actually, it is a hybred. The primary business logic is built into
mobile/anchored business objects from the central application tier. WinForm
is primarly for UI robustness. Altough we provide this as a ClickOnce ERP
app, it is not a requirement and the service can, in principle, be accessed
via WCF for M2M processing, integrating iinto another app, etc.
Maybe you can call it S+S !

:-)

Arne
Jun 27 '08 #11
If you want to use it as a marketing ploy, go for it. :-)

Yes, a bit humorous, but there is really not a lot in software that is NEW,
at least not underneath the hood. The observation that this was the ASP
model was correct, in some ways. Separation of concerns was important in
both.

In reality, much of the SOA SAAS BS (I love acronyms) is just a "new" way of
looking at two old concepts:

1. Process boundaries
2. Separation of concerns

By thinking as a service, you work towards reuse up front, separating
concerns not only on vertical tiers, but horizontal tiers, as well.You are
creating boxes. How you link them (process boundaries: library calls,
service interfaces, etc.) is dependent on what you need at the time, but it
shoudl be easy to switch the type of boundary (library call to service call,
for example) without retooling the logic. That is SAAS in a nutshell.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************** *************** *************** ****
| Think outside the box!
|
*************** *************** *************** ****
"Bill Fuller" <so*****@nospam .comwrote in message
news:Oz******** ******@TK2MSFTN GP05.phx.gbl...
Hmmmm... Interesting. We have designed our solution as a cluster of
specialized WCF modules in a 5-tier logical architecture based upon
Rocky's CSLA framework, so it sounds like we can hype the app using this
new marketing.

Thanks for your feedback. It was helpful.

"Cowboy (Gregory A. Beamer)" <No************ @comcast.netNoS pamMwrote in
message news:O2******** ******@TK2MSFTN GP03.phx.gbl...
>Software as a Service is a logical concept of breaking out your
"application s" into reusable parts. It is similar to n-tier development,
which was popular with traditional ASP, but we also use n-tiers with
ASP.NET applications, Silverlight applications, etc.

When you treat software as a service, you group like concerns and, if
necessary, add a service layer so they can be consumed outside of library
calls. WHen you think this way, you can have completely different types
of applications accessing the same bits, as you are thinking in terms of
delivering the goods for a particular requirement no matter who desires
it.

There really is nothing new here.

But, it does go contrary to the way the typical developer operates, which
is from database to UI or UI to database, charting a path, not for reuse,
but from point A to point Z. If we are lucky, this developer will one day
refactor for reuse, but it is more likely he will build the same logic
into his next application rather than reuse bits. If he were thinking as
the output of the classes he was building as products, he can see how
this particular bit would service other applications or services.

Hope that is clear.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

************** *************** *************** *****
| Think outside the box! |
************** *************** *************** *****
"Bill Fuller" <so*****@nospam .comwrote in message
news:Om******* *******@TK2MSFT NGP06.phx.gbl.. .
>>It appears that one of the latest hot buzzwords is SaaS (Software as a
Service). From what I can tell, this looks like nothing more than
rebranding of the old ASP model, which fell out of favor. Am I correct,
or is there really something new and interesting here?



Jun 27 '08 #12
SAAS may, in marketing terms, require selling as a service, but underneath
the hood, if the separation of concerns are there and the ability to offer
it is there, he is already in SAAS land, sans the marketing BS. :-)

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************** *************** *************** ****
| Think outside the box!
|
*************** *************** *************** ****
"Arne Vajhøj" <ar**@vajhoej.d kwrote in message
news:48******** *************** @news.sunsite.d k...
Bill Fuller wrote:
>Hmmmm... Interesting. We have designed our solution as a cluster of
specialized WCF modules in a 5-tier logical architecture based upon
Rocky's CSLA framework, so it sounds like we can hype the app using this
new marketing.

No.

You may be able to market it as a SOA architecture.

But to make is SaaS you will need to deliver it to your customers
as a subscription service over the internet instead of selling
them software to run on their own systems.

Arne

Jun 27 '08 #13
There is really not much to SAAS that is not SOA, except that someone has
added a new marketing term to clarify best practices in software
architecture. And, there is not too much to SOA, other than forcing proper
grouping of classes and a service boundary, between SOA and n-tier
applications. And, there is not much difference from n-tier (DNA) to
properly refactored functional applications, other than organization of bits
into libaries.

BTW, this is not a new observation:

Ecclesiastes 1:9
What has been will be again, what has been done will be done again; there is
nothing new under the sun.

*big grin*

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************** *************** *************** ****
| Think outside the box!
|
*************** *************** *************** ****
"Arne Vajhøj" <ar**@vajhoej.d kwrote in message
news:48******** *************** @news.sunsite.d k...
Cowboy (Gregory A. Beamer) wrote:
>Software as a Service is a logical concept of breaking out your
"application s" into reusable parts. It is similar to n-tier development,
which was popular with traditional ASP, but we also use n-tiers with
ASP.NET applications, Silverlight applications, etc.

When you treat software as a service, you group like concerns and, if
necessary, add a service layer so they can be consumed outside of library
calls. WHen you think this way, you can have completely different types
of applications accessing the same bits, as you are thinking in terms of
delivering the goods for a particular requirement no matter who desires
it.

I think what you have described is SOA not SaaS.

Arne

Jun 27 '08 #14
Cowboy (Gregory A. Beamer) wrote:
There is really not much to SAAS that is not SOA, except that someone has
added a new marketing term to clarify best practices in software
architecture.
SOA is an architecture.

SaaS is a business model.

SOA is multiple system interfaces.

SaaS is one human or one system interface.

In fact most of the most known SaaS solutions are with human
interfaces not system interfaces.

SOA and SaaS are completely orthogonal.

Arne


Jun 27 '08 #15
Cowboy (Gregory A. Beamer) wrote:
SAAS may, in marketing terms, require selling as a service, but underneath
the hood, if the separation of concerns are there and the ability to offer
it is there, he is already in SAAS land, sans the marketing BS. :-)
Not really.

I am not in the tomato business even though I could sell
tomatos. Because I do not sell tomatos.

You are in the SaaS business if you sell software as a service
not if you could but does not.

Arne
Jun 27 '08 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
2667
by: Dave Anderson | last post by:
Last September, some of us engaged in a discussion of freeing resources in ASP scripts written in JScript. It can be seen here: http://tinyurl.com/2flzt I recently read Eric Lippert's article on the use of *Nothing* assignments in VB (http://blogs.msdn.com/ericlippert/archive/2004/04/28/122259.aspx) right before going out of scope, and was shocked by what he had to say, and I must say it has me curious about the implications for ASP,...
96
6245
by: BadPony | last post by:
Anyone using Peoplesoft on a Federated UDB (shared nothing)Environment on Open System Platforms? Preferably AIX, but any war stories would be good. TEA EB-C
7
1451
by: JohnZing | last post by:
hi if i have IsAdmin=True or IsAdmin=False why (IsAdmin = Nothing) is True??? i have function test(byval IsAdmin as boolean) If Not (IsAdmin = Nothing) Then End if
6
1435
by: Shane Saunders | last post by:
I have a menu option that loads a form and displays infomation. if you go to main form and try to load something else from that same menu, it does a check to see if the form in exist and then reloads it has to or does messagebox. the problem i have is that i want to set the module instance varible to nothing when i exit the form that is being check. The code i am use is If frmWeatherMap Is Nothing Then
61
3160
by: academic | last post by:
When I declare a reference variable I initialize it to Nothing. Now I'm wondering if that best for String variables - is "" better? With Nothing I assume no memory is set aside nor GC'ed But with "" it is - correct? The system seems to handle a null the same as "".
0
1820
by: Mike Cain | last post by:
Hi all! I'm looking to offer a software product using the SaaS model. This of course will require that I build a web site where customers can sign up, log in, manage their membership and billing options, and of course use the software over the web. Can someone recommend a good sample site or other type of site framework that I can use to quickly build out the software infrastructure for this site? In other words, I'm sure things like...
6
3569
by: DippyDog | last post by:
This is an old old post that I'm referencing regarding what happens when you set an integer variable to Nothing. It gets set to zero, not "Nothing." http://groups.google.com/group/microsoft.public.dotnet.languages.vb/browse_thread/thread/6732ea8e7016bd24/70608745c29d048b?lnk=gst&q=can%27t+set+enum+to+nothing#70608745c29d048b Just to expand the understanding of the problems this behavior can cause, because a typical enumeration (enum) is...
2
1432
by: anaz | last post by:
Hi all, I recently moved south to Bangalore and I am working for a large software integrator. My project team is working on a project that applies TOGAF to SOA. Are you able to point me to online and offline resources/trainings that can help our team get up to speed with SOA features and building blocks, the TOGAF architecture development method, and how to use TOGAF to create SOAs. I am also in charge of implementing virtualisation...
0
987
by: =?Utf-8?B?Tkg=?= | last post by:
Hi, I would to learn how to build multi-tenant saas applications using asp.net and sql server. Besides LitwareHR (microsoft example) are there other resources, books, blogs or any other good starting points? Thanks
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10210
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10039
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9990
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9860
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5297
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5445
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3955
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2814
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.