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 Irfan

Preventing Page Caching

2004-09-08 Thread Irfandhy Franciscus
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
s 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 Franciscus Kakoli Saha wrote: All, The problem is I want to list out all the employee using the logic:ite

Re: EJB + Struts + Hibernate

2004-06-27 Thread Irfandhy Franciscus
B layer 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

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 - To

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 u

Displaying html tag as html with bean:write

2004-06-20 Thread Irfandhy Franciscus
verything is perfect except for the ';' at the end of the post. Does anyone know how to ge around this problem. Thanks for the help :D Regards, Irfandhy Franciscus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Hidden Variables

2004-06-02 Thread Irfandhy Franciscus
Joshi, Naveen wrote: All, one out of 300 times my hidden variable would not set to form. Any ideas what could be the issue. I'am thinking that it is a browser issue. Is any one in the group facing similar problem. Thanks Joe Have you specify these hidden variables as a property in your ActionForm

Re: multibox mayhem

2004-06-02 Thread Irfandhy Franciscus
from this code : I guess that bean1 must be an object inside 'allofem' So why are you trying to iterate an object : pls wrote: i had to add tags around the because there were some trailing 'null' values in the Integer[] after reading from DB. "pls" <[EMAIL PROTECTED]> wrote in message news:[EMA

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

Re: scope and presenting realtime data (fwd)

2004-05-26 Thread Irfandhy Franciscus
My advice may sound out of the context, but how bout actually storing each last N value to a database. this way you can even have an archive of the Last N value. Or if you dont want to setup a database, just write the last N value to a property file or text file. Regards, Irfandhy Franciscus

New Struts tutorial in Struts Wiki

2004-05-26 Thread Irfandhy Franciscus
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
es 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]

Re: No getter Method for property

2004-05-24 Thread Irfandhy Franciscus
For me this is what I usually do: JSP: <% System.our.println("the current status in the loop is = " + currStatus); %> Basically i jsut define a bean currStatus that represents the current status, from the array list. Hope this help, -inoel- Satish Satish wrote: Hi, I have tried a lot of stuff

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 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: FW: FW: multiple validators and ActionErrors

2004-05-12 Thread Irfandhy Franciscus
Maybe youcan try saving your ActionErrors inside the request. And eveytime you validate a field, retrieve the ActionErrors from the request and append the message into the ActionErrors. Sifuentes, Ben wrote: Another thing I do get back a list of errors for each failed field value per validator b

Java Resources

2004-04-30 Thread Irfandhy Franciscus
Hi, Does any of you know a good mailing list under one these topics : 1. IT Project Management 2. Java programming Thank you. Best Regards, Irfandhy Franciscus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Redirect from one path to another

2004-04-30 Thread Irfandhy Franciscus
Hi it seems that you can use the Struts DispatchAction to do this. Please refer this: http://www.jguru.com/faq/view.jsp?EID=995474 Paulo Murphy wrote: Hi again all, I have a couple of actions with respective forwards that are all working fine. Now what I am trying to do is use a single url to r

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 a

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: 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 .. I feel there is no need for a logic

Re: A better exception-handling strategy?

2004-04-18 Thread Irfandhy Franciscus
Hi Craig, This is the first time I heard of the 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 : Cheer's, e-null Craig McClanahan wrote: You might want to experiment with the standard except