473,756 Members | 6,098 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 #1
15 1247
Bill Fuller wrote:
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?
Whatever there is, it's not C#. Or .NET, even. Try a more general ng. (I
don't know which ones specialize in buzzwords.)

--
J.
http://symbolsprose.blogspot.com
Jun 27 '08 #2
Actually, it came up in discussions on how to deploy a multitier C# Winforms
app.

"Jeroen Mostert" <jm******@xs4al l.nlwrote in message
news:48******** *************** @news.xs4all.nl ...
Bill Fuller wrote:
>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?
Whatever there is, it's not C#. Or .NET, even. Try a more general ng. (I
don't know which ones specialize in buzzwords.)

--
J.
http://symbolsprose.blogspot.com

Jun 27 '08 #3
Software as a Service is a logical concept of breaking out your
"applicatio ns" 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******** ******@TK2MSFTN GP06.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 #4
Bill Fuller wrote:
Actually, it came up in discussions on how to deploy a multitier C# Winforms
app.
Yes, I see how that makes it a C# question.

This group isn't a stickler for topicality and your question's already been
picked up, so no point in belaboring the obvious (and annoying), but still.

--
J.
Jun 27 '08 #5
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
"applicatio ns" 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******** ******@TK2MSFTN GP06.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 #6
Cowboy (Gregory A. Beamer) wrote:
Software as a Service is a logical concept of breaking out your
"applicatio ns" 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 #7
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 #8
Bill Fuller wrote:
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?
Same.

Arne
Jun 27 '08 #9
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.

"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 #10

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

Similar topics

27
2664
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
6230
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
1449
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
3153
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
1819
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
1431
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
983
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
9271
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
10028
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
9868
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...
0
8709
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6533
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5301
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3804
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
2
3352
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2664
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.