Re: +ADw-jsp:setProperty /+AD4- ignores empty strings

2002-07-04 Thread Hans Bergsten
Petr Tomasek wrote: >>Anyway, if you create a new bean for each request (as in your example), >>you just have to be aware of this and initialize the properties to >>the "unset" value you want (e.g. an empty string for a String property). >>Thus, if the setter method is not called by , your >>gette

Daemon Process

2002-07-04 Thread Shamshad Alam
Dear All Could anyone tell me how to write a daemon process in java such that it can run in the background and interact with a number of processes? Thank you --Shamshad - This message was sent using Endymion MailMan. http://www.endymion.com/products/mai

Re: window on top

2002-07-04 Thread Raghavendra Reddy
Hi Vaishali, I joined y'day in this group and i got only reply mails to ur original query. What i understood from the mail is , u want to open a popup window and it should retain the focus. Try the below code , hope this is want u wanted. If u have any better solution pls let me know.

Re: +ADw-jsp:setProperty /+AD4- ignores empty strings

2002-07-04 Thread Petr Tomasek
+AD4- Anyway, if you create a new bean for each request (as in your example), +AD4- you just have to be aware of this and initialize the properties to +AD4- the +ACI-unset+ACI- value you want (e.g. an empty string for a String property). +AD4- Thus, if the setter method is not called by +ADw-jsp:s

Re: Password encryption

2002-07-04 Thread Bhushan_Bhangale
Yaaa thats what we did in one project. no other solution as client already had a large data and the application has used MD5 so we had no other option. But for other client where we had built the application from scratch wanted this facility so here we used Cryptography. We tried to convince hi

Re: Password encryption

2002-07-04 Thread Clayton Nash
We've seen this problem as well -- in this case we simply create a new password for the user and ask them to change it first time they log on. Clayton -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Bhush

Re: Password encryption

2002-07-04 Thread Bhushan_Bhangale
This is also fine but there comes situations where we need to send the password to the user. I faced this situation with my client and we had to move from Md5 algo to Cryptography. -Original Message- From: Clayton Nash [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 3:50 PM To:

Re: Password encryption

2002-07-04 Thread Bhushan_Bhangale
This is fine but can be easily cracked. Initially i too have used this kind of logic but later on came to know that this kind of simple encryption are easy to crack. The public key and private key cryptography technique provides very strong encryption. As without a private key its very difficul

Re: Password encryption

2002-07-04 Thread Clayton Nash
Both of these replies are good, but what you really want to do is MD5 or SHA encode the password and store the hashed result. Then when the user enters their password, you apply the same algorithm to that, and compare the results. Advantage is that you never store the user's password so even if so

Re: Password encryption

2002-07-04 Thread Aruniima Chakrabarti
Hi, I am attaching the code to encrypt a password & to decrypt the same Regards, aruniima _ import java.util.*; /* *The encryption logic is also available in this class

Re: Password encryption

2002-07-04 Thread Bhushan_Bhangale
Enjoy!!! following are the two classess for encrypting and decrypting. Define a key(write anything abc342d) in key.txt. Data which needs to be encrypted in data.txt. the encrypted data will be written in encrypted.txt when you will run the program. Same for decryption. You can modify the class

Password encryption

2002-07-04 Thread srinivas tadikonda
Hi,  How can I do password encryption and decryption. Please sned code for encryption and decryption. Regards Srinivas        MSN Photos is the easiest way to share and print your photos: Click Here === To unsubscribe: mailto

Re: JSP Query String

2002-07-04 Thread ? ??
you are clever and i am agree with you! nice to meet you! - Original Message - From: "Vikramjit Singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 04, 2002 4:44 PM Subject: Re: JSP Query String > java provides APIs for doing the encoding and decoding. > java.net.URL

OFFTOPIC:JBoss3.0-Tomcat4.0.1(catalina) - deployment

2002-07-04 Thread Sowbhagya Valli Suryadevara
HI, Sorry for the off topic. If you can tell me where to get this answer, then I'll go there. Is it possible to deploy on JBoss3.0-Tomcat4.0.1(catalina) without having to make war, ear ? It is VERY difficult to go thru the whole process while developing an application. Especially when making sma

Re: JSP Query String

2002-07-04 Thread Vikramjit Singh
java provides APIs for doing the encoding and decoding. java.net.URLEncoder java.net.URLDecoder Regards, Vikramjit Singh, Systems Engineer, GTL Ltd. Ph. 7612929-1031 -Original Message- From: Rakesh Menon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 10:35 PM To: [EMAIL PROTE