RE: Struts and encryption

2002-03-07 Thread Aamir Saalam
For Password encryption (which is one way, you can never get back the original password, given the encrypted string), there's one called JCrypt. For more info. see: http://www.dynamic.net.au/christos/crypt/Password.txt --aamir -Original Message- From: Andrew H. Peterson [mailto:[EMA

RE: \"No getter method\" error when using Bean:Write

2002-02-19 Thread Aamir Saalam
should work. I just lowercased the U in UserId... Pls. check JavaBeans specifications for naming of property fields. --aamir -Original Message- From: Matt Petteys [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 3:12 AM To: [EMAIL PROTECTED] Subject: \"No getter method\" er

RE: loading the drop down...

2002-02-12 Thread Aamir Saalam
You could fetch the name-value pairs in either a Map or your own name-value pair beans and use the html:select in combination with html:options to render list drop down. For ex. <% Map k = new Hashtable(); // <-- populated from the database k.put("country_id_1", "country name 1"); k.put(

RE: Question on Nesting iterate tags

2002-02-08 Thread Aamir Saalam
I am *not* sure if i am addressing this question in specific. Here's an example of Nested logic:iterate tag's: <% String[] array1 = {"A1", "A2", "A3"}; String[] array2 = {"B1", "B2", "B3"}; pageContext.setAttribute("Array1", array1, PageContext.PAGE_SCOPE); pageContext.setAttribute("Arr

RE: Trouble having a jsp scriplet in the value attribute of html:link tag

2002-02-05 Thread Aamir Saalam
Subhadra, <% String linkIdStr = "123"; Map map = new Hashtable(); map.put("formAction", "edit"); map.put("linkId", linkIdStr); pageContext.setAttribute("ExampleMapBean", map, PageContext.PAGE_SCOPE); %> xyz_1 After going through the documentation at http://jaka

RE: struts can't find property of bean

2002-01-25 Thread Aamir Saalam
try: According to the JavaBeans Specification, the casing is NOT performed if the property starts with two or more Upper-Cased character's. This should invoke: getQCStatus(), and getQCDate()... for reference, pls. check javabeans specification... (i don't remember the link, with few s