Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » Plugins Evaluation key
Plugins Evaluation key [message #459930] Fri, 19 August 2005 04:04 Go to next message
Eclipse UserFriend
Originally posted by: deepu.sandblue.com

Hello all,

we have built a set of eclipse plugins for our framework based projects and
now want to put it for download with an evaluation key. Could anyone give
an idea or poinnt me to some good documents about implmenting an evaluation
feature for eclipse plugins.

Any help would be greatlty appreciated.
Thanks in advance.


regards
Deepu Sundar
Re: Plugins Evaluation key [message #459932 is a reply to message #459930] Fri, 19 August 2005 08:40 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: kent.generatescape.com

here is what I did:

using the java security classes I create a private and public key. I ship
the public key. Then I use a company called share-it to host a key server.
They take a couple of parameters and generate a key with the code I gave
them and the private key. The user then types in those parameters (Name &
Email Address) and the app unlocks.

I hope this helps, if you have any questions just ask.

"Deepu Sundar" <deepu@sandblue.com> wrote in message
news:de3lo1$1a8$1@news.eclipse.org...
> Hello all,
>
> we have built a set of eclipse plugins for our framework based projects
> and now want to put it for download with an evaluation key. Could anyone
> give an idea or poinnt me to some good documents about implmenting an
> evaluation feature for eclipse plugins.
>
> Any help would be greatlty appreciated.
> Thanks in advance.
>
>
> regards
> Deepu Sundar
>
>
Re: Plugins Evaluation key [message #459933 is a reply to message #459932] Fri, 19 August 2005 08:21 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: deepu.sandblue.com

Dear Kent,

Thanks for the reply ! Not sure how to use this key server (Is it paid ?) i
will explore more
The application should lock again after the evaluation period. It shouldnt
depend on a date for this logic as anyone can change the date and our logic
breaks.!

"kent" <kent@generatescape.com> wrote in message
news:de42b1$db2$1@news.eclipse.org...
> here is what I did:
>
> using the java security classes I create a private and public key. I ship
> the public key. Then I use a company called share-it to host a key server.
> They take a couple of parameters and generate a key with the code I gave
> them and the private key. The user then types in those parameters (Name &
> Email Address) and the app unlocks.
>
> I hope this helps, if you have any questions just ask.
>
> "Deepu Sundar" <deepu@sandblue.com> wrote in message
> news:de3lo1$1a8$1@news.eclipse.org...
>> Hello all,
>>
>> we have built a set of eclipse plugins for our framework based projects
>> and now want to put it for download with an evaluation key. Could anyone
>> give an idea or poinnt me to some good documents about implmenting an
>> evaluation feature for eclipse plugins.
>>
>> Any help would be greatlty appreciated.
>> Thanks in advance.
>>
>>
>> regards
>> Deepu Sundar
>>
>>
>
>
Re: Plugins Evaluation key [message #459938 is a reply to message #459933] Fri, 19 August 2005 17:47 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: kent.generatescape.com

i am sort of the mind that nothing is going to ever be unbreakable so just
make it for the mostly honest people.

My key does not work with dates, but yours could. I just make a registry
entry on intallation of the date, you can use the preferences api for this.

You are right if you change the date then it breaks, but you could get the
date from a date server. There are other holes but I won't go too much into
details.

The share-it key server works by royalties, they get something like 15% but
for that they also take care of all the credit card stuff. So far I am happy
with them.But you could set up a key server no problem, I just decided
against it.


"Deepu Sundar" <deepu@sandblue.com> wrote in message
news:de44r2$gka$1@news.eclipse.org...
> Dear Kent,
>
> Thanks for the reply ! Not sure how to use this key server (Is it paid ?)
> i will explore more
> The application should lock again after the evaluation period. It shouldnt
> depend on a date for this logic as anyone can change the date and our
> logic breaks.!
>
> "kent" <kent@generatescape.com> wrote in message
> news:de42b1$db2$1@news.eclipse.org...
>> here is what I did:
>>
>> using the java security classes I create a private and public key. I ship
>> the public key. Then I use a company called share-it to host a key
>> server. They take a couple of parameters and generate a key with the code
>> I gave them and the private key. The user then types in those parameters
>> (Name & Email Address) and the app unlocks.
>>
>> I hope this helps, if you have any questions just ask.
>>
>> "Deepu Sundar" <deepu@sandblue.com> wrote in message
>> news:de3lo1$1a8$1@news.eclipse.org...
>>> Hello all,
>>>
>>> we have built a set of eclipse plugins for our framework based projects
>>> and now want to put it for download with an evaluation key. Could
>>> anyone give an idea or poinnt me to some good documents about
>>> implmenting an evaluation feature for eclipse plugins.
>>>
>>> Any help would be greatlty appreciated.
>>> Thanks in advance.
>>>
>>>
>>> regards
>>> Deepu Sundar
>>>
>>>
>>
>>
>
>
Re: Plugins Evaluation key [message #460078 is a reply to message #459938] Mon, 22 August 2005 05:14 Go to previous message
Eclipse UserFriend
Originally posted by: deepu.sandblue.com

Hello,

Thank yuo very much for your valuable points. Our requiremnt is very urgent
and we may be forced to look into some professional tools. We are looking
into EvaluteAnywhere now. I will get back later.

Thanks again.

regards
deepu

"kent" <kent@generatescape.com> wrote in message
news:de52d2$n94$1@news.eclipse.org...
>i am sort of the mind that nothing is going to ever be unbreakable so just
>make it for the mostly honest people.
>
> My key does not work with dates, but yours could. I just make a registry
> entry on intallation of the date, you can use the preferences api for
> this.
>
> You are right if you change the date then it breaks, but you could get the
> date from a date server. There are other holes but I won't go too much
> into details.
>
> The share-it key server works by royalties, they get something like 15%
> but for that they also take care of all the credit card stuff. So far I am
> happy with them.But you could set up a key server no problem, I just
> decided against it.
>
>
> "Deepu Sundar" <deepu@sandblue.com> wrote in message
> news:de44r2$gka$1@news.eclipse.org...
>> Dear Kent,
>>
>> Thanks for the reply ! Not sure how to use this key server (Is it paid
>> ?) i will explore more
>> The application should lock again after the evaluation period. It
>> shouldnt depend on a date for this logic as anyone can change the date
>> and our logic breaks.!
>>
>> "kent" <kent@generatescape.com> wrote in message
>> news:de42b1$db2$1@news.eclipse.org...
>>> here is what I did:
>>>
>>> using the java security classes I create a private and public key. I
>>> ship the public key. Then I use a company called share-it to host a key
>>> server. They take a couple of parameters and generate a key with the
>>> code I gave them and the private key. The user then types in those
>>> parameters (Name & Email Address) and the app unlocks.
>>>
>>> I hope this helps, if you have any questions just ask.
>>>
>>> "Deepu Sundar" <deepu@sandblue.com> wrote in message
>>> news:de3lo1$1a8$1@news.eclipse.org...
>>>> Hello all,
>>>>
>>>> we have built a set of eclipse plugins for our framework based projects
>>>> and now want to put it for download with an evaluation key. Could
>>>> anyone give an idea or poinnt me to some good documents about
>>>> implmenting an evaluation feature for eclipse plugins.
>>>>
>>>> Any help would be greatlty appreciated.
>>>> Thanks in advance.
>>>>
>>>>
>>>> regards
>>>> Deepu Sundar
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Previous Topic:How to delete an image from a Canvas
Next Topic:RSWT?
Goto Forum:
  


Current Time: Thu Apr 25 12:03:31 GMT 2024

Powered by FUDForum. Page generated in 0.04197 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top