RE: problem with String[]

2003-09-24 Thread Mohd Amin Mohd Din
I'm using a DynaActionForm.. The code tip is for action form. ( or so I think ) -Original Message- From: Nicholson, Robb [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 9:20 PM To: 'Struts Users Mailing List' Subject: RE: problem with String[] I think this is what you are

RE: problem with String[] [SOLVED]

2003-09-24 Thread Mohd Amin Mohd Din
the only one.. maybe it's some setting issue.. if not then a bug should be logged Amin -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 3:52 PM To: 'Struts Users Mailing List' Subject: RE: problem with String[] I'm using

RE: Ensuring a clean Form

2003-09-24 Thread Mohd Amin Mohd Din
Yes. -Original Message- From: Linus Nikander [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 4:42 PM To: [EMAIL PROTECTED] Subject: Ensuring a clean Form How do I ensure that each invocation of a particular action receives a clean form. I.e a form where no values from any

RE: problem with String[] [SOLVED]

2003-09-24 Thread Mohd Amin Mohd Din
Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 3:29 AM To: 'Struts Users Mailing List' Subject: RE: problem with String[] [SOLVED] Its solved, thank god but its very confusing.. I didn't change anything.. but today it ran.. :) Seems like theres

RE: problem with String[] [SOLVED] ? was hibernate the issue

2003-09-24 Thread Mohd Amin Mohd Din
and sometimes it does not. Weird. I guess some misconfig, but at the moment back to hand coding SQL :-( -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 11:05 PM To: 'Struts Users Mailing List' Subject: RE: problem with String[] [SOLVED] I'm

RE: problem with String[] [SOLVED] ? was hibernate the issue

2003-09-24 Thread Mohd Amin Mohd Din
I started until I started using the SchemaExport and hbm2ddl classes to create my relevant objects. Regards, David -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 2:42 PM To: 'Struts Users Mailing List' Subject: RE: problem

RE: IDE for Struts Examples

2003-09-23 Thread Mohd Amin Mohd Din
Wuhooo! Oracle10g -Original Message- From: Duncan Mills [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 5:09 PM To: Martin Gainty; Struts Users Mailing List Subject: Re: IDE for Struts Examples Martin for General JDeveloper 10g issues you'd be better continuing this on the

[OT]More Design Patterns. Real world example application

2003-09-23 Thread Mohd Amin Mohd Din
As the subject says, many discussion on design patterns have occurred. However I need a good example to implement in my project. An application using struts + hibernate would be a plus. Hopefully the example also does some big joining at the database, and a few master detail forms. (seems like a

RE: how to change this logic into tags

2003-09-22 Thread Mohd Amin Mohd Din
This could/should be put into an Action /* ArrayList al = (ArrayList) request.getAttribute(al); if (al != null) { for (int i=0;ial.size()/2;i++) { SystemProfileData spd = (SystemProfileData) al.get(i); if (i==0)

RE: [OT] Lightweight helper libraries for reporting?

2003-09-22 Thread Mohd Amin Mohd Din
Maybe you could use http://jasperreports.sourceforge.net/ -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 12:23 AM To: Struts Users Mailing List Subject: RE: [OT] Lightweight helper libraries for reporting? David: The main reason I'm not

multiple rows of editable data

2003-09-22 Thread Mohd Amin Mohd Din
Hi, I have a master detail form where the detail section has multiple rows which have one field to be updated per row. There is one submit button at the end of the form which will allow the data in the form to be updated in to the data store. How do I make the field represent a unique number,

RE: [OT] M7 Development tool

2003-09-18 Thread Mohd Amin Mohd Din
Second that Andrew, here, u'll be lucky enough to get a RM50k a year job programming. 1USD = RM3.8. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 2:40 PM To: Struts Users Mailing List Subject: RE: [OT] M7 Development tool The

RE: Tool to diagnose J2EE/Struts/Oracle problem

2003-09-18 Thread Mohd Amin Mohd Din
referring to the Oracle site? Regards, Stella Auyeung EDS Digital Enablement - Saginaw 6200 State Street, Suite 1 Saginaw, MI 48603 * phone: 989-497-5766 (8-399) * pager: 989-201-1030 * mailto:[EMAIL PROTECTED] -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent

RE: Refreshing Form Submission and Duplicates

2003-09-18 Thread Mohd Amin Mohd Din
An easier way would be to do a redirect once submitting the form to listing the page. -Original Message- From: Shane Mingins [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 10:26 AM To: 'Struts Users Mailing List' Subject: RE: Refreshing Form Submission and Duplicates I

Validator not configured properly?

2003-09-17 Thread Mohd Amin Mohd Din
Hi, What else do I need to check? The form is working perfectly at the moment but it is not being validated In struts-config.xml snip form-bean name=Financial.Sponsor.ReceiveSponsorshipForm type=org.apache.struts.validator.DynaValidatorForm /snip snip action

RE: bean:write property= Format a Date ?

2003-09-17 Thread Mohd Amin Mohd Din
There was a discussion on the list previously on formatting a date object. It would be better to format the date at the business layer rather than at the presentation layer. This is because if the view layer is changed to use Swing or another web app framework, the date is already formatted to the

RE: Tool to diagnose J2EE/Struts/Oracle problem

2003-09-17 Thread Mohd Amin Mohd Din
Is your oracle database configured properly? Try connecting multiple users using oem or sqlplus to rule out is the issue is from the database. I had a max cursor reached error before which was attributed to not closing the preparedstatement. Another thing you may try is to use the latest JDBC

RE: Validator not configured properly?

2003-09-17 Thread Mohd Amin Mohd Din
to do it would be using plain Action classes, but it would be nice if this could be done using a LookupDispatchAction class. Thanks -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 9:03 PM To: [EMAIL PROTECTED] Subject: Validator

RE: Slow file upload?

2003-09-16 Thread Mohd Amin Mohd Din
Hmm, just checking, are you doing any processing other than just simply storing the file. -Original Message- From: Bjørn T Johansen [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 12:51 PM To: Struts Users Mailing List Subject: Re: Slow file upload? On Tue, 2003-09-16 at

RE: Invalid Class file Format (help same problem)

2003-09-16 Thread Mohd Amin Mohd Din
If I'm not mistaken, 9ias runs on jdk1.3.1 -Original Message- From: Stefan Frank [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 6:32 PM To: Richard Raquepo Cc: Struts Users Mailing List Subject: Re: Invalid Class file Format (help same problem) hmm, just guessing: Maybe

RE: Dateformat for MSSQL DB

2003-09-15 Thread Mohd Amin Mohd Din
This is a simple class I use to format date from VOs to Form and vice versa. Hope it's helpful import java.text.DateFormat; import java.text.Format; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class FormatUtility { public FormatUtility()

RE: Dateformat for MSSQL DB

2003-09-15 Thread Mohd Amin Mohd Din
PROTECTED] Sent: Monday, September 15, 2003 6:48 PM To: Struts Users Mailing List Subject: RE: Dateformat for MSSQL DB I think you should not use this class. I has some bugs in it Mohd Amin Mohd Din [EMAIL PROTECTED] 09/15/2003 12:11 PM Please respond to Struts Users Mailing List [EMAIL

RE: request.getContextPath();

2003-09-07 Thread Mohd Amin Mohd Din
Subject: RE: request.getContextPath(); but this your contextPath. so, request returns that string that you set. Is PostGraduate.war your file name? or in server.xml you have set contextPath=/PostGraduate. navjot |-Original Message- |From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED

request.getContextPath();

2003-09-05 Thread Mohd Amin Mohd Din
Hi, Having a wired problem here. On some of my pages, the request.getContextPath() works great, but on other pages, it doesn't seem to work, it only gets the webapp. Eg. page is in http://192.168.1.111:8080/PostGraduate/admission/application/listProfile Setup

RE: how can I get Chekbox value

2003-09-02 Thread Mohd Amin Mohd Din
Just checking, in your action before putting 'halForm' in a scope, was there any value for 'nilai' in 'tanda'? -Original Message- From: hari_s [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 9:49 AM To: 'Struts Users Mailing List' Subject: RE: how can I get Chekbox value

RE: Exception framework Usage

2003-09-01 Thread Mohd Amin Mohd Din
They way I'm doing at the moment is throwing an ApplicationException for any application centric ( business and view layer ) exceptions. The message of ApplicationException will tell exactly what happens. However, I'm trying to get the error message for a particular exception. Normally in Java it

RE: Exception framework Usage

2003-09-01 Thread Mohd Amin Mohd Din
exception) in the request and use c:out value='${exception.message}'/ -Mensaje original- De: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Enviado el: lunes, 01 de septiembre de 2003 20:47 Para: 'Struts Users Mailing List' Asunto: RE: Exception framework Usage They way I'm doing

Handling Exceptions

2003-08-31 Thread Mohd Amin Mohd Din
Hi, In struts-config, I have defined few global-exceptions such as these exception type=com.enc.edu.pg.bo.common.DataAccessException key=exception.common.dataaccessexception path=/action/main/dataAccessExceptionSetup scope=session

RE: [FRIDAY] Vacancy

2003-08-29 Thread Mohd Amin Mohd Din
Its in Indonesia, not India -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 6:32 PM To: Struts Users Mailing List Subject: Re: [FRIDAY] Vacancy Mark, they won't want you, so just forget about it. However after watching the Bollywood movie

RE: html:errors

2003-08-27 Thread Mohd Amin Mohd Din
Refers to the properties file. Since errors message key is a constant, therefore it does not need to refer to a specific line in the properties file. Amin -Original Message- From: Yakov Belov [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 10:54 AM To: Struts Users Mailing

Struts User in Malaysia

2003-08-26 Thread Mohd Amin Mohd Din
Hi, Any Malaysians on this mailing list? Lets start a struts user meet up in preferably KL. Amin

RE: mesage message account

2003-08-26 Thread Mohd Amin Mohd Din
Don't think that you are a colored person message message. Get a life. Amin -Original Message- From: James Childers [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 2:25 AM To: Struts Users Mailing List Subject: RE: mesage message account Hi! You are not special. There is

RE: J2EE certified

2003-08-14 Thread Mohd Amin Mohd Din
Developer), its for JSP and Servlets. You have to have JCP to take this exam. Raghu -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:02 AM To: [EMAIL PROTECTED] Subject: J2EE certified A colleague mentioned to me something about getting

J2EE certified

2003-08-14 Thread Mohd Amin Mohd Din
A colleague mentioned to me something about getting J2EE certified. I could only find getting an application server certified not the application. Anyone knows how to get a web application J2EE certified or is there a certification for Java web apps? Amin

RE: J2EE certified

2003-08-14 Thread Mohd Amin Mohd Din
14, 2003 10:03 AM To: 'Struts Users Mailing List' Subject: RE: J2EE certified So where's the Struts question? -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Thursday, 14 August 2003 2:01 p.m. To: 'Struts Users Mailing List' Subject: RE: J2EE certified I meant

RE: RE : RE : Log4j Warnings

2003-08-14 Thread Mohd Amin Mohd Din
log4j.appender.file.layout.ConversionPattern=%-4r %-5p %c %x - %m%n ### Laurent. -Message d'origine- De : Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Envoyé : jeudi 14 août 2003 08:19 À : [EMAIL PROTECTED] Objet : Log4j Warnings Hi

OT: J2EE certified

2003-08-14 Thread Mohd Amin Mohd Din
with. - Original Message - From: Mohd Amin Mohd Din [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 9:14 PM Subject: RE: J2EE certified Struts is the de facto framework for J2EE. Does this mean my app using Struts is J2EE certified

Log4j Warnings

2003-08-14 Thread Mohd Amin Mohd Din
Hi, I'm getting log4j warnings aftering moving to struts 1.1 log4j:WARN No appenders could be found for logger (org.apache.struts.util.Proper tyMessageResources). log4j:WARN Please initialize the log4j system properly. commons-logging.properties file has this

RE: J2EE certified

2003-08-14 Thread Mohd Amin Mohd Din
/avk_enterprise.html -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 8:26 AM To: 'Struts Users Mailing List' Subject: OT: J2EE certified Simple question, is there or is there not a certification for a J2EE web app? Struts question, I'm getting

RE: DynaActionForm BUG?

2003-08-08 Thread Mohd Amin Mohd Din
For info, Just changed struts.jar to 1.1 ( not beta ). Everything works fine -Original Message- From: Mohd Amin Mohd Din [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:45 PM To: [EMAIL PROTECTED] Subject: DynaActionForm BUG? Hi, I have a big form with a number of multibox

FW: DynaActionForm BUG?

2003-08-04 Thread Mohd Amin Mohd Din
Hi, I have a big form with a number of multibox tags. It seems that there are mixup of data from one multibox to another. Is this a documented bug or does it have to do something with jvm or tomcat? I have tried on solaris and windows xp both environments seem to have the same problem Thanks

DynaActionForm BUG?

2003-08-04 Thread Mohd Amin Mohd Din
Hi, I have a big form with a number of multibox tags. It seems that there are mixup of data from one multibox to another. Is this a documented bug or does it have to do something with jvm or tomcat? I have tried on solaris and windows xp both environments seem to have the same problem Thanks

RE: Working visual on presentation layer

2003-07-22 Thread Mohd Amin Mohd Din
Me too want it! -Original Message- From: Kurt Post [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 11:03 PM To: Struts Users Mailing List Subject: RE: Working visual on presentation layer No problem. If you need to make any changes for MX compatibility, please send me a copy so

RE: question on heavy load website design using struts

2003-07-18 Thread Mohd Amin Mohd Din
You could try Oracle Real Application Clusters or Dataguard -Original Message- From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 5:16 PM To: Struts Users Mailing List Subject: Re: question on heavy load website design using struts No problem, I'll be patient. I

RE: Where to build dropdown lists?

2003-07-15 Thread Mohd Amin Mohd Din
Need help here too. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 4:52 PM To: [EMAIL PROTECTED] Subject: Where to build dropdown lists? Sorry if this is a stupid question, but any help is much appreciated! I have some drop down lists

Validation using Validator java beans issue

2003-07-13 Thread Mohd Amin Mohd Din
Hi, Having a snag using Validator, DynaValidatorForm and simple java beans. An overview of the current application my team is currently building; We use 2 Action classes for one jsp if the jsp has a html form in it else we use 1 Action. Example, for changePassword.jsp we have