You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by Jean-Louis MONTEIRO <je...@atosorigin.com> on 2009/09/10 14:19:02 UTC

Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

No comments?
Jean-Louis


Jean-Louis MONTEIRO wrote:
> 
> Hi,
> 
> Seems like DBCP is not the relevant place (DBCP's developers feedback).
> Do you think we can add this feature in OpenEJB itself ?
> 
> I found a previous request in users list.
> 
> http://www.nabble.com/Store-the-encrypted-passwords-in-openejb.xml-td16850189.html#a16905078
> http://www.nabble.com/Store-the-encrypted-passwords-in-openejb.xml-td16850189.html#a16905078 
> 
> Jean-Louis
> 
> 
> 
> Jean-Louis MONTEIRO wrote:
>> 
>> OK, i gonna do that know.
>> 
>> Jean-Louis
>> 
>> 
>> 
>> David Blevins wrote:
>>> 
>>> Great. Will be a nice to have that feature.  I recommend posting a  
>>> note to the commons dev list if you haven't.  Not sure how closely  
>>> they monitor JIRA.
>>> 
>>> -David
>>> 
>>> 
>>> On Jul 15, 2009, at 2:43 AM, Monteiro Jean-Louis wrote:
>>> 
>>>> Hi,
>>>>
>>>> As discussed here some weeks ago, I finally decided to add this  
>>>> feature in commons dbcp because it seemed to me more relevant  
>>>> (instead of having it in OpenEJB itself).
>>>> I proposed a patch in order to initiate the discussion.
>>>>
>>>> Any feedback ?
>>>>
>>>> Jean-Louis
>>>>
>>>> -----Message d'origine-----
>>>> De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
>>>> Envoyé : mercredi 15 juillet 2009 11:31
>>>> À : Monteiro Jean-Louis
>>>> Objet : [jira] Created: (DBCP-297) Ciphered passwords
>>>>
>>>> Ciphered passwords
>>>> ------------------
>>>>
>>>>                 Key: DBCP-297
>>>>                 URL: https://issues.apache.org/jira/browse/DBCP-297
>>>>             Project: Commons Dbcp
>>>>          Issue Type: New Feature
>>>>         Environment: All
>>>>            Reporter: Jean-Louis MONTEIRO
>>>>             Fix For: 1.4
>>>>
>>>>
>>>> It would be nice to allow ciphered passwords with pluggable codec  
>>>> mechanisms.
>>>>
>>>> --
>>>> This message is automatically generated by JIRA.
>>>> -
>>>> You can reply to this email to add a comment to the issue online.
>>>>
>>>>
>>>>
>>>>
>>>> Ce message et les pièces jointes sont confidentiels et réservés à  
>>>> l'usage exclusif de ses destinataires. Il peut également être  
>>>> protégé par le secret professionnel. Si vous recevez ce message par  
>>>> erreur, merci d'en avertir immédiatement l'expéditeur et de le  
>>>> détruire. L'intégrité du message ne pouvant être assurée sur  
>>>> Internet, la responsabilité du groupe Atos Origin ne pourra être  
>>>> recherchée quant au contenu de ce message. Bien que les meilleurs  
>>>> efforts soient faits pour maintenir cette transmission exempte de  
>>>> tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa  
>>>> responsabilité ne saurait être recherchée pour tout dommage  
>>>> résultant d'un virus transmis.
>>>>
>>>> This e-mail and the documents attached are confidential and intended  
>>>> solely for the addressee; it may also be privileged. If you receive  
>>>> this e-mail in error, please notify the sender immediately and  
>>>> destroy it. As its integrity cannot be secured on the Internet, the  
>>>> Atos Origin group liability cannot be triggered for the message  
>>>> content. Although the sender endeavours to maintain a computer virus- 
>>>> free network, the sender does not warrant that this transmission is  
>>>> virus-free and will not be liable for any damages resulting from any  
>>>> virus transmitted.
>>> 
>>> 
>>> 
>> 
>> 
> 
> 

-- 
View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25382277.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by David Blevins <da...@visi.com>.
Cool.  For accuracy i'm going to rename codec to cipher as it's more  
technically accurate.

On Oct 9, 2009, at 2:56 PM, Jean-Louis MONTEIRO wrote:

>
> Committed revision 823709.
>
> Will shoot a note on the website on Monday.
>
> Jean-Louis
>
>
>
> David Blevins wrote:
>>
>> On the PasswordCodec implementation topic, I was thinking we could  
>> use
>> a ResourceFinder and format like so for finding the impls
>>
>>  - META-INF/org.apache.openejb.resource.jdbc.PasswordCodec/<foo>
>>
>> Where "foo" is a file that contains the name of the class.  Then you
>> can just say "foo" instead of the full class name in the tooling and
>> config files.
>>
>> The ResourceFinder is pretty slick and all we need to do to get the
>> impl is this:
>>
>>    ResourceFinder finder = new ResourceFinder("META-INF/");
>>    Map<String, Class> impls =
>> finder.mapAllImplementations(PasswordCodec.class);
>>    Class fooImpl = impls.get("foo");
>>
>>
>> -David
>>
>>
>> On Oct 9, 2009, at 1:50 PM, Jean-Louis MONTEIRO wrote:
>>
>>>
>>> Committed revision 823678.
>>>
>>> The current name is "codec". I don't like it so if you have a better
>>> naming,
>>> feel free to change it.
>>> Know, i have to create a page on the wiki for this feature.
>>>
>>> Jean-Louis
>>>
>>>
>>>
>>> David Blevins wrote:
>>>>
>>>> I was looking around for how someone would get this feature to  
>>>> work.
>>>> In the javadoc you mention "In the case you have implemented both
>>>> methods, you can use the PasswordCodec command line tool to encode/
>>>> decode a password."
>>>>
>>>> What command line tool does this refer to?
>>>>
>>>> Not sure I see how to create the encrypted password.  Want to make
>>>> sure we're not missing that part.
>>>>
>>>> -David
>>>>
>>>> On Sep 22, 2009, at 1:10 AM, David Blevins wrote:
>>>>
>>>>> That looks great to me.
>>>>>
>>>>> Minor formatting note, make sure it uses 4 spaces instead of 3.
>>>>>
>>>>> -David
>>>>>
>>>>>
>>>>> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> David Blevins wrote:
>>>>>>>
>>>>>>> Great feature.  I'm fine with where ever it makes sense to put  
>>>>>>> it.
>>>>>>>
>>>>>>> -David
>>>>>>>
>>>>>>
>>>>>> Hey guys,
>>>>>>
>>>>>> I did some enhancements to DBCP integration in order to support
>>>>>> ciphered
>>>>>> passwords.
>>>>>> Before committing something, i would like to get feedback.
>>>>>>
>>>>>> So year is the patch file
>>>>>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>>>>>> patch-ciphered-ds.txt
>>>>>>
>>>>>> Any feedback is welcome.
>>>>>> Thanks.
>>>>>>
>>>>>> Jean-Louis
>>>>>> -- 
>>>>>> View this message in context:
>>>>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>>>>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>
>>> -- 
>>> View this message in context:
>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827720.html
>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25828484.html
> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>
>


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.
Committed revision 823709.

Will shoot a note on the website on Monday.

Jean-Louis



David Blevins wrote:
> 
> On the PasswordCodec implementation topic, I was thinking we could use  
> a ResourceFinder and format like so for finding the impls
> 
>   - META-INF/org.apache.openejb.resource.jdbc.PasswordCodec/<foo>
> 
> Where "foo" is a file that contains the name of the class.  Then you  
> can just say "foo" instead of the full class name in the tooling and  
> config files.
> 
> The ResourceFinder is pretty slick and all we need to do to get the  
> impl is this:
> 
>     ResourceFinder finder = new ResourceFinder("META-INF/");
>     Map<String, Class> impls =  
> finder.mapAllImplementations(PasswordCodec.class);
>     Class fooImpl = impls.get("foo");
> 
> 
> -David
> 
> 
> On Oct 9, 2009, at 1:50 PM, Jean-Louis MONTEIRO wrote:
> 
>>
>> Committed revision 823678.
>>
>> The current name is "codec". I don't like it so if you have a better  
>> naming,
>> feel free to change it.
>> Know, i have to create a page on the wiki for this feature.
>>
>> Jean-Louis
>>
>>
>>
>> David Blevins wrote:
>>>
>>> I was looking around for how someone would get this feature to work.
>>> In the javadoc you mention "In the case you have implemented both
>>> methods, you can use the PasswordCodec command line tool to encode/
>>> decode a password."
>>>
>>> What command line tool does this refer to?
>>>
>>> Not sure I see how to create the encrypted password.  Want to make
>>> sure we're not missing that part.
>>>
>>> -David
>>>
>>> On Sep 22, 2009, at 1:10 AM, David Blevins wrote:
>>>
>>>> That looks great to me.
>>>>
>>>> Minor formatting note, make sure it uses 4 spaces instead of 3.
>>>>
>>>> -David
>>>>
>>>>
>>>> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>>>>
>>>>>
>>>>>
>>>>>
>>>>> David Blevins wrote:
>>>>>>
>>>>>> Great feature.  I'm fine with where ever it makes sense to put it.
>>>>>>
>>>>>> -David
>>>>>>
>>>>>
>>>>> Hey guys,
>>>>>
>>>>> I did some enhancements to DBCP integration in order to support
>>>>> ciphered
>>>>> passwords.
>>>>> Before committing something, i would like to get feedback.
>>>>>
>>>>> So year is the patch file
>>>>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>>>>> patch-ciphered-ds.txt
>>>>>
>>>>> Any feedback is welcome.
>>>>> Thanks.
>>>>>
>>>>> Jean-Louis
>>>>> -- 
>>>>> View this message in context:
>>>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>>>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>> -- 
>> View this message in context:
>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827720.html
>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>
>>
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25828484.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.
Good thinking.

Will get it working now if possible.

Jean-Louis



David Blevins wrote:
> 
> On the PasswordCodec implementation topic, I was thinking we could use  
> a ResourceFinder and format like so for finding the impls
> 
>   - META-INF/org.apache.openejb.resource.jdbc.PasswordCodec/<foo>
> 
> Where "foo" is a file that contains the name of the class.  Then you  
> can just say "foo" instead of the full class name in the tooling and  
> config files.
> 
> The ResourceFinder is pretty slick and all we need to do to get the  
> impl is this:
> 
>     ResourceFinder finder = new ResourceFinder("META-INF/");
>     Map<String, Class> impls =  
> finder.mapAllImplementations(PasswordCodec.class);
>     Class fooImpl = impls.get("foo");
> 
> 
> -David
> 
> 
> On Oct 9, 2009, at 1:50 PM, Jean-Louis MONTEIRO wrote:
> 
>>
>> Committed revision 823678.
>>
>> The current name is "codec". I don't like it so if you have a better  
>> naming,
>> feel free to change it.
>> Know, i have to create a page on the wiki for this feature.
>>
>> Jean-Louis
>>
>>
>>
>> David Blevins wrote:
>>>
>>> I was looking around for how someone would get this feature to work.
>>> In the javadoc you mention "In the case you have implemented both
>>> methods, you can use the PasswordCodec command line tool to encode/
>>> decode a password."
>>>
>>> What command line tool does this refer to?
>>>
>>> Not sure I see how to create the encrypted password.  Want to make
>>> sure we're not missing that part.
>>>
>>> -David
>>>
>>> On Sep 22, 2009, at 1:10 AM, David Blevins wrote:
>>>
>>>> That looks great to me.
>>>>
>>>> Minor formatting note, make sure it uses 4 spaces instead of 3.
>>>>
>>>> -David
>>>>
>>>>
>>>> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>>>>
>>>>>
>>>>>
>>>>>
>>>>> David Blevins wrote:
>>>>>>
>>>>>> Great feature.  I'm fine with where ever it makes sense to put it.
>>>>>>
>>>>>> -David
>>>>>>
>>>>>
>>>>> Hey guys,
>>>>>
>>>>> I did some enhancements to DBCP integration in order to support
>>>>> ciphered
>>>>> passwords.
>>>>> Before committing something, i would like to get feedback.
>>>>>
>>>>> So year is the patch file
>>>>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>>>>> patch-ciphered-ds.txt
>>>>>
>>>>> Any feedback is welcome.
>>>>> Thanks.
>>>>>
>>>>> Jean-Louis
>>>>> -- 
>>>>> View this message in context:
>>>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>>>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>> -- 
>> View this message in context:
>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827720.html
>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>
>>
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827974.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by David Blevins <da...@visi.com>.
On the PasswordCodec implementation topic, I was thinking we could use  
a ResourceFinder and format like so for finding the impls

  - META-INF/org.apache.openejb.resource.jdbc.PasswordCodec/<foo>

Where "foo" is a file that contains the name of the class.  Then you  
can just say "foo" instead of the full class name in the tooling and  
config files.

The ResourceFinder is pretty slick and all we need to do to get the  
impl is this:

    ResourceFinder finder = new ResourceFinder("META-INF/");
    Map<String, Class> impls =  
finder.mapAllImplementations(PasswordCodec.class);
    Class fooImpl = impls.get("foo");


-David


On Oct 9, 2009, at 1:50 PM, Jean-Louis MONTEIRO wrote:

>
> Committed revision 823678.
>
> The current name is "codec". I don't like it so if you have a better  
> naming,
> feel free to change it.
> Know, i have to create a page on the wiki for this feature.
>
> Jean-Louis
>
>
>
> David Blevins wrote:
>>
>> I was looking around for how someone would get this feature to work.
>> In the javadoc you mention "In the case you have implemented both
>> methods, you can use the PasswordCodec command line tool to encode/
>> decode a password."
>>
>> What command line tool does this refer to?
>>
>> Not sure I see how to create the encrypted password.  Want to make
>> sure we're not missing that part.
>>
>> -David
>>
>> On Sep 22, 2009, at 1:10 AM, David Blevins wrote:
>>
>>> That looks great to me.
>>>
>>> Minor formatting note, make sure it uses 4 spaces instead of 3.
>>>
>>> -David
>>>
>>>
>>> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>>>
>>>>
>>>>
>>>>
>>>> David Blevins wrote:
>>>>>
>>>>> Great feature.  I'm fine with where ever it makes sense to put it.
>>>>>
>>>>> -David
>>>>>
>>>>
>>>> Hey guys,
>>>>
>>>> I did some enhancements to DBCP integration in order to support
>>>> ciphered
>>>> passwords.
>>>> Before committing something, i would like to get feedback.
>>>>
>>>> So year is the patch file
>>>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>>>> patch-ciphered-ds.txt
>>>>
>>>> Any feedback is welcome.
>>>> Thanks.
>>>>
>>>> Jean-Louis
>>>> -- 
>>>> View this message in context:
>>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827720.html
> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>
>


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.
Committed revision 823678.

The current name is "codec". I don't like it so if you have a better naming,
feel free to change it.
Know, i have to create a page on the wiki for this feature.

Jean-Louis



David Blevins wrote:
> 
> I was looking around for how someone would get this feature to work.   
> In the javadoc you mention "In the case you have implemented both  
> methods, you can use the PasswordCodec command line tool to encode/ 
> decode a password."
> 
> What command line tool does this refer to?
> 
> Not sure I see how to create the encrypted password.  Want to make  
> sure we're not missing that part.
> 
> -David
> 
> On Sep 22, 2009, at 1:10 AM, David Blevins wrote:
> 
>> That looks great to me.
>>
>> Minor formatting note, make sure it uses 4 spaces instead of 3.
>>
>> -David
>>
>>
>> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>>
>>>
>>>
>>>
>>> David Blevins wrote:
>>>>
>>>> Great feature.  I'm fine with where ever it makes sense to put it.
>>>>
>>>> -David
>>>>
>>>
>>> Hey guys,
>>>
>>> I did some enhancements to DBCP integration in order to support  
>>> ciphered
>>> passwords.
>>> Before committing something, i would like to get feedback.
>>>
>>> So year is the patch file
>>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>>> patch-ciphered-ds.txt
>>>
>>> Any feedback is welcome.
>>> Thanks.
>>>
>>> Jean-Louis
>>> -- 
>>> View this message in context:
>>> http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>
>>>
>>
>>
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25827720.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by David Blevins <da...@visi.com>.
I was looking around for how someone would get this feature to work.   
In the javadoc you mention "In the case you have implemented both  
methods, you can use the PasswordCodec command line tool to encode/ 
decode a password."

What command line tool does this refer to?

Not sure I see how to create the encrypted password.  Want to make  
sure we're not missing that part.

-David

On Sep 22, 2009, at 1:10 AM, David Blevins wrote:

> That looks great to me.
>
> Minor formatting note, make sure it uses 4 spaces instead of 3.
>
> -David
>
>
> On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:
>
>>
>>
>>
>> David Blevins wrote:
>>>
>>> Great feature.  I'm fine with where ever it makes sense to put it.
>>>
>>> -David
>>>
>>
>> Hey guys,
>>
>> I did some enhancements to DBCP integration in order to support  
>> ciphered
>> passwords.
>> Before committing something, i would like to get feedback.
>>
>> So year is the patch file
>> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
>> patch-ciphered-ds.txt
>>
>> Any feedback is welcome.
>> Thanks.
>>
>> Jean-Louis
>> -- 
>> View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>
>>
>
>


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by David Blevins <da...@visi.com>.
That looks great to me.

Minor formatting note, make sure it uses 4 spaces instead of 3.

-David


On Sep 21, 2009, at 7:53 AM, Jean-Louis MONTEIRO wrote:

>
>
>
> David Blevins wrote:
>>
>> Great feature.  I'm fine with where ever it makes sense to put it.
>>
>> -David
>>
>
> Hey guys,
>
> I did some enhancements to DBCP integration in order to support  
> ciphered
> passwords.
> Before committing something, i would like to get feedback.
>
> So year is the patch file
> http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
> patch-ciphered-ds.txt
>
> Any feedback is welcome.
> Thanks.
>
> Jean-Louis
> -- 
> View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>
>


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.


David Blevins wrote:
> 
> Great feature.  I'm fine with where ever it makes sense to put it.
> 
> -David
> 

Hey guys,

I did some enhancements to DBCP integration in order to support ciphered
passwords.
Before committing something, i would like to get feedback.

So year is the patch file 
http://www.nabble.com/file/p25530357/patch-ciphered-ds.txt
patch-ciphered-ds.txt 

Any feedback is welcome.
Thanks.

Jean-Louis
-- 
View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25530357.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: TR: [jira] Created: (DBCP-297) Ciphered passwords

Posted by David Blevins <da...@visi.com>.
Great feature.  I'm fine with where ever it makes sense to put it.

-David

On Sep 10, 2009, at 5:19 AM, Jean-Louis MONTEIRO wrote:

>
> No comments?
> Jean-Louis
>
>
> Jean-Louis MONTEIRO wrote:
>>
>> Hi,
>>
>> Seems like DBCP is not the relevant place (DBCP's developers  
>> feedback).
>> Do you think we can add this feature in OpenEJB itself ?
>>
>> I found a previous request in users list.
>>
>> http://www.nabble.com/Store-the-encrypted-passwords-in-openejb.xml-td16850189.html#a16905078
>> http://www.nabble.com/Store-the-encrypted-passwords-in-openejb.xml-td16850189.html#a16905078
>>
>> Jean-Louis
>>
>>
>>
>> Jean-Louis MONTEIRO wrote:
>>>
>>> OK, i gonna do that know.
>>>
>>> Jean-Louis
>>>
>>>
>>>
>>> David Blevins wrote:
>>>>
>>>> Great. Will be a nice to have that feature.  I recommend posting a
>>>> note to the commons dev list if you haven't.  Not sure how closely
>>>> they monitor JIRA.
>>>>
>>>> -David
>>>>
>>>>
>>>> On Jul 15, 2009, at 2:43 AM, Monteiro Jean-Louis wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> As discussed here some weeks ago, I finally decided to add this
>>>>> feature in commons dbcp because it seemed to me more relevant
>>>>> (instead of having it in OpenEJB itself).
>>>>> I proposed a patch in order to initiate the discussion.
>>>>>
>>>>> Any feedback ?
>>>>>
>>>>> Jean-Louis
>>>>>
>>>>> -----Message d'origine-----
>>>>> De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
>>>>> Envoyé : mercredi 15 juillet 2009 11:31
>>>>> À : Monteiro Jean-Louis
>>>>> Objet : [jira] Created: (DBCP-297) Ciphered passwords
>>>>>
>>>>> Ciphered passwords
>>>>> ------------------
>>>>>
>>>>>                Key: DBCP-297
>>>>>                URL: https://issues.apache.org/jira/browse/DBCP-297
>>>>>            Project: Commons Dbcp
>>>>>         Issue Type: New Feature
>>>>>        Environment: All
>>>>>           Reporter: Jean-Louis MONTEIRO
>>>>>            Fix For: 1.4
>>>>>
>>>>>
>>>>> It would be nice to allow ciphered passwords with pluggable codec
>>>>> mechanisms.
>>>>>
>>>>> --
>>>>> This message is automatically generated by JIRA.
>>>>> -
>>>>> You can reply to this email to add a comment to the issue online.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Ce message et les pièces jointes sont confidentiels et réservés à
>>>>> l'usage exclusif de ses destinataires. Il peut également être
>>>>> protégé par le secret professionnel. Si vous recevez ce message  
>>>>> par
>>>>> erreur, merci d'en avertir immédiatement l'expéditeur et de le
>>>>> détruire. L'intégrité du message ne pouvant être assurée sur
>>>>> Internet, la responsabilité du groupe Atos Origin ne pourra être
>>>>> recherchée quant au contenu de ce message. Bien que les meilleurs
>>>>> efforts soient faits pour maintenir cette transmission exempte de
>>>>> tout virus, l'expéditeur ne donne aucune garantie à cet égard et  
>>>>> sa
>>>>> responsabilité ne saurait être recherchée pour tout dommage
>>>>> résultant d'un virus transmis.
>>>>>
>>>>> This e-mail and the documents attached are confidential and  
>>>>> intended
>>>>> solely for the addressee; it may also be privileged. If you  
>>>>> receive
>>>>> this e-mail in error, please notify the sender immediately and
>>>>> destroy it. As its integrity cannot be secured on the Internet,  
>>>>> the
>>>>> Atos Origin group liability cannot be triggered for the message
>>>>> content. Although the sender endeavours to maintain a computer  
>>>>> virus-
>>>>> free network, the sender does not warrant that this transmission  
>>>>> is
>>>>> virus-free and will not be liable for any damages resulting from  
>>>>> any
>>>>> virus transmitted.
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/TR%3A--jira--Created%3A-%28DBCP-297%29-Ciphered-passwords-tp24494802p25382277.html
> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>
>