Connecting Tech Pros Worldwide Help | Site Map

How to license and deploy new software?

  #1  
Old March 17th, 2008, 01:35 AM
electricaljello@gmail.com
Guest
 
Posts: n/a
Hello,

Just wondering if anyone can offer advice (perhaps based on
experience) on how to deploy and license a C++ based app as a
commercial library. The main questions I'm trying to answer are
whether to provide source code, a DLL, or a static lib, and what kind
of pricing scheme should be considered. The lib could be used to drive
at-home desktop UI's or interface with back-end middleware.

Thanks for your input!
  #2  
Old March 17th, 2008, 01:55 AM
Jon Harrop
Guest
 
Posts: n/a

re: How to license and deploy new software?


electricaljello@gmail.com wrote:
Quote:
Just wondering if anyone can offer advice (perhaps based on
experience) on how to deploy and license a C++ based app as a
commercial library. The main questions I'm trying to answer are
whether to provide source code, a DLL, or a static lib, and what kind
of pricing scheme should be considered. The lib could be used to drive
at-home desktop UI's or interface with back-end middleware.
People often sell the source code and the DLL at different prices. We do
this for our C# FFT, for example:

http://www.ffconsultancy.com/product...rocessing_net/

Selling in source form is a liability because people can steal your code
and/or ideas much more easily but C# is just a thin veneer over .NET's
bytecode so you can decompile .NET DLLs back to C# very easily.

--
Dr Jon D Harrop, Flying Frog Consultancy Ltd.
http://www.ffconsultancy.com/products/?u
  #3  
Old March 17th, 2008, 02:15 AM
Jeff Schwab
Guest
 
Posts: n/a

re: How to license and deploy new software?


electricaljello@gmail.com wrote:
Quote:
Just wondering if anyone can offer advice (perhaps based on
experience) on how to deploy and license a C++ based app as a
commercial library. The main questions I'm trying to answer are
whether to provide source code, a DLL, or a static lib, and what kind
of pricing scheme should be considered. The lib could be used to drive
at-home desktop UI's or interface with back-end middleware.
It is common to provide different licenses for different uses. For example:

http://trolltech.com/products/qt/licenses/licensing
  #4  
Old March 17th, 2008, 09:55 AM
James Kanze
Guest
 
Posts: n/a

re: How to license and deploy new software?


On Mar 17, 1:31 am, electricalje...@gmail.com wrote:
Quote:
Just wondering if anyone can offer advice (perhaps based on
experience) on how to deploy and license a C++ based app as a
commercial library. The main questions I'm trying to answer
are whether to provide source code, a DLL, or a static lib,
and what kind of pricing scheme should be considered. The lib
could be used to drive at-home desktop UI's or interface with
back-end middleware.
The same way you'd deploy and license an application written in
Ada, or any other language. Which means that the question is
off topic here. Practical considerations may lead you to
different solutions under Windows and Unix, which would make it
on topic in those groups, but the ultimate answer is: it
depends. It depends on the application domain, what you're
trying to achieve, what services you're trying to offer, etc.,
etc.

A lot of companies today give the software away, and then sell
maintenance on it. I guess they figure that once they've got
you hooked, you're going to need a lot of bug fixes, and will be
ready to pay for them. Many companies also have different
licensing arrangements depending on the customer: students don't
pay nearly as much as big companies (but may not have access to
some of the features). And even when the normal deployment is
just a library (in which case, you really should provide both a
static and a dynamically linked version, at least in most
cases), it's almost always possible to obtain the source code if
you're willing to spend enough extra money.

--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
  #5  
Old March 17th, 2008, 01:15 PM
Matt Wensley
Guest
 
Posts: n/a

re: How to license and deploy new software?


On Sun, 16 Mar 2008 17:31:59 -0700, electricaljello wrote:
Quote:
Hello,
>
Just wondering if anyone can offer advice (perhaps based on experience)
on how to deploy and license a C++ based app as a commercial library.
The main questions I'm trying to answer are whether to provide source
code, a DLL, or a static lib, and what kind of pricing scheme should be
considered. The lib could be used to drive at-home desktop UI's or
interface with back-end middleware.
>
Thanks for your input!
It's also common to have per-user/per-machine type licenses where the end
user must buy a separate license for each machine they use it on.

Matt
  #6  
Old March 19th, 2008, 12:45 AM
electricaljello@gmail.com
Guest
 
Posts: n/a

re: How to license and deploy new software?


On Mar 17, 4:50 am, James Kanze <james.ka...@gmail.comwrote:
Quote:
On Mar 17, 1:31 am, electricalje...@gmail.com wrote:
>
Quote:
Just wondering if anyone can offer advice (perhaps based on
experience) on how to deploy and license a C++ based app as a
commercial library. The main questions I'm trying to answer
are whether to provide source code, a DLL, or a static lib,
and what kind of pricing scheme should be considered. The lib
could be used to drive at-home desktop UI's or interface with
back-end middleware.
>
The same way you'd deploy and license an application written in
Ada, or any other language. Which means that the question is
off topic here. Practical considerations may lead you to
different solutions under Windows and Unix, which would make it
on topic in those groups, but the ultimate answer is: it
depends. It depends on the application domain, what you're
trying to achieve, what services you're trying to offer, etc.,
etc.
>
A lot of companies today give the software away, and then sell
maintenance on it. I guess they figure that once they've got
you hooked, you're going to need a lot of bug fixes, and will be
ready to pay for them. Many companies also have different
licensing arrangements depending on the customer: students don't
pay nearly as much as big companies (but may not have access to
some of the features). And even when the normal deployment is
just a library (in which case, you really should provide both a
static and a dynamically linked version, at least in most
cases), it's almost always possible to obtain the source code if
you're willing to spend enough extra money.
>
--
James Kanze (GABI Software) email:james.ka...@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Hi all,

Thanks for the input. Are static libs as easily reverse engineered as
DLL's?

Also, when companies give away the software hoping for maintenance, do
they make it available for free download off a website then have a
separate link for the services, or is there actually marketing
involved and formal contracts are written up once a client has
communicated interest?

EJ
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
.Net frameword Resources ( vb.net , asp.net etc...) shamirza answers 0 January 17th, 2007 08:05 AM
Protecting Software from Piracy Lucas answers 9 November 18th, 2005 02:08 AM
oracle pl/sql -> sql server prunoki answers 28 September 18th, 2005 04:05 AM
What so special about PostgreSQL and other RDBMS? Sarah Tanembaum answers 115 July 17th, 2005 06:31 AM