Getting the most out of users

2005-01-19 Thread Irfandhy Franciscus
Dear All, I am a new developer / IT Consultant. In my work I often need to gather requirement from the end users. I am trying to improve my requirement gathering techniques. Are there any books or websites that you guys can suggest to me ? Your help is greatly appreciated. Regards, Zainul

Preventing Page Caching

2004-09-08 Thread Irfandhy Franciscus
, or is there a way to tell the browser to always load the a new page instead of the cache ? Regards, Irfandhy Franciscus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: question on logic:iterate

2004-08-10 Thread Irfandhy Franciscus
' and 'email' propertly ? If yes the can I take a look at the ActionForm code ? and the action class code that populate the ActionForm ? my best guess here is that the empId is not populated properly, but before we jump to any conclusion, let us see the entire code first. Regards, Irfandhy

EJB + Struts + Hibernate

2004-06-27 Thread Irfandhy Franciscus
Hi, Does any of you guys has eve developed Web Apps using Struts and hibernate ? If you have, do you think EJB is a necessary layer on top of hibernate ? Thanks in advance ^^ Regards, Irfandhy Franciscus

Re: EJB + Struts + Hibernate

2004-06-27 Thread Irfandhy Franciscus
if necessary in the future. --b Irfandhy Franciscus wrote: Hi, Does any of you guys has eve developed Web Apps using Struts and hibernate ? If you have, do you think EJB is a necessary layer on top of hibernate ? Thanks in advance ^^ Regards, Irfandhy Franciscus

Forwarding with different parameter

2004-06-23 Thread Irfandhy Franciscus
problem *thinking to jar it ^___^'' * His question imposes an interesting design paradigm. It will be good if the community can share their thoughts on the design issue as well. Regards, Irfandhy Franciscus - To unsubscribe

Re: multibox mayhem

2004-06-02 Thread Irfandhy Franciscus
from this code : bean:write name=bean1 property=key/ I guess that bean1 must be an object inside 'allofem' So why are you trying to iterate an object : logic:iterate id=bean2 name=bean1 property=value pls wrote: i had to add logic:empty tags around the bean:write name=bean2/ because there were

Struts tutorial on forwarding to action needing different request parameters

2004-06-01 Thread Irfandhy Franciscus
/ForwardingWithDifferentParameter I believe that this problem is a very general problem that we often overlook due to its simplicity. I hope everyone can benefit from the article :) Regards, Irfandhy Franciscus - To unsubscribe, e-mail

New Struts tutorial in Struts Wiki

2004-05-26 Thread Irfandhy Franciscus
by for a minute to review the tutorial for any errata, especially those Struts Guru in the mailing list :D Regards, Irfandhy Franciscus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Compressing your struts for faster transfer

2004-05-25 Thread Irfandhy Franciscus
it really make the loading faster? Or does it actually create more headache. Regards, Irfandhy Franciscus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Resin and Strange Tag Behaviour

2004-05-24 Thread Irfandhy Franciscus
Hi, I have been working on some struts - jsp pages. And I found some strange behaviour. In the JSP I specified some logic tag. BUT I never actually import the tag, %@ taglib uri=/WEB-INF/struts-logic.tld prefix=logic % Then i tried to run my JSP. It either say: * Bean not define * There is no

Re: No getter Method for property

2004-05-24 Thread Irfandhy Franciscus
For me this is what I usually do: JSP: logic:iterate id=status indexId=index name=testResultForm property=status type=java.util.ArrayList scope=session bean:define id=currStatus name=status/ % System.our.println(the current status in the loop is = + currStatus); % /logic:iterate Basically i jsut

Re: How to iterate a bean's list of String in a JSP

2004-04-30 Thread Irfandhy Franciscus
Hi try adding this method in your ActionForm: public String getToto(int i) { return (String)toto.get(i); } The struts logic:iterate will automatically pass in an index value to the method in order to get the object inside the Array. Hope this works Francois Boccou wrote: Hello, I have

Re: Advantages/Disadvantages of One Action for each Use Case

2004-04-22 Thread Irfandhy Franciscus
Well Ravi has raised a good suggestion on using Dispatch Action for this case. I'll try to pointed out the pro n cons for each one. (what i say here may not be correct this is just my opinion :P) Step 1. NewAccountAction.java ,EditAccountAction.java,NewAccountFormAction.java If you use this

Re: ActionMessages won't display

2004-04-19 Thread Irfandhy Franciscus
Hi, mmm usually for errors I will use ActionErrors. But from what I understand about ActionMessages if you do: html:messages id=messages message=true/ Struts will get all the mesages from request that are tied to ActionMessages.GLOBAL_MESSAGE. So perhaps we can try to remove the logic tag

Re: A better exception-handling strategy?

2004-04-18 Thread Irfandhy Franciscus
Hi Craig, This is the first time I heard of the error-page tag. Is this a struts tag ? So far I know that struts provide a neat exception handling, I seldom use this but perhaps youcan try it out Frank : global-exception exception key=Key types=exception type handler=exception handler