Re: [OFF-TOPIC] Java Decompiler in NetBeans

2006-02-09 Thread Rafael Taboada
Thanks buddies for ur help... I'm using FrontEnd Plus right now... I couldn't integrate to my netbeans but... It works great!... thanks -- Rafael Taboada Software Engineer Cell : +511-97753290 "No creo en el destino pues no me gusta tener la idea de controlar mi vida"

Re: [OFF-TOPIC] Java Decompiler in NetBeans

2006-02-09 Thread Frank W. Zammetti
Jode is another: http://jode.sourceforge.net/ I don't see mention of native Netbeans support, but I wouldn't think it would be hard to shell out to. My personal favorite is DJ: http://members.fortunecity.com/neshkov/dj.html ...which uses JAD underneath. Again, not Netbeans native, but this

Re: How to use an ActionForm with a List of String[] ?

2006-02-09 Thread Collin VanDyck
Sorry had a typo.. Typically if I knew I only had to grab one pre-known set of values, I'd do something like // my action form.. private String[] possibleValues; private String[] values; // getters and setters.. // my jsp: Should be: Collin

How to use an ActionForm with a List of String[] ?

2006-02-09 Thread Collin VanDyck
I've been pulling my hair out on this one for a couple of days now :) I have an action form that needs to be able to handle a dynamic number of multiselect or checkbox fields. Typically if I knew I only had to grab one pre-known set of values, I'd do something like // my action form.. priv

Re: [OT off topic] Oracle Database Performace Issue

2006-02-09 Thread Keith Fetterman
sumithra devi wrote: Ours is a J2ee application with weblogic and Oracle database. we are finding performance issues and when analysed saw that cpu usage on oracle databse side is very high. At a high level this is what we have: We have sql query that is generated dynamically(this is what is

Re: [OFF-TOPIC] Java Decompiler in NetBeans

2006-02-09 Thread Michael Jouravlev
On 2/9/06, Rafael Taboada <[EMAIL PROTECTED]> wrote: > Hi folks... > > Do u know an open source Java decompiler that it can be integrated in > netbeans???... I mean, in my IDE I want to have de possibility to decompile > a .class and have the possibility to view the code... Usually useful when I >

Parent/Child lists in DispathAction possible ?

2006-02-09 Thread digant . k . joshi
Hello All; I have jsp with two distinct list of related objects displayed in Parent/Child relationship When one of the item from Parent list is selected it should populate details about that Parent object in child Table. sectors list is parent list and instruments list is

[OFF-TOPIC] Java Decompiler in NetBeans

2006-02-09 Thread Rafael Taboada
Hi folks... Do u know an open source Java decompiler that it can be integrated in netbeans???... I mean, in my IDE I want to have de possibility to decompile a .class and have the possibility to view the code... Usually useful when I use .jars THanks in advance for sharing ur experience -- Rafae

RE: Struts application WAR file creation.

2006-02-09 Thread George.Dinwiddie
[EMAIL PROTECTED] asked: > > How do I add war task in Ant build file from eclipse ? There is an ant buildfile editor in Eclipse and the ant manual describes the war task. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

RE: [OT] Upgrading existing applications so they're maintainable--who pays?

2006-02-09 Thread George.Dinwiddie
Dave Newton wrote: > My question is really targeted at the politics, ethics, and > finances of the switch: being a refactor-early, > refactor-often kind of guy I'm already quite adept at the mechanics. You'll probably still find Michael Feather's book worthwhile. I certainly did, even though I'

Re: [OT] Upgrading existing applications so they're maintainable--who pays?

2006-02-09 Thread Dave Newton
[EMAIL PROTECTED] wrote: > I recommend the book Working Effectively with Legacy Code, by Michael > Feathers. And the book Refactoring, by Martin Fowler. These two will > sharpen your tools for working on this system. They'll also help you > concentrate on what you need to clean up for the work y

RE: Struts application WAR file creation.

2006-02-09 Thread digant . k . joshi
How do I add war task in Ant build file from eclipse ? <[EMAIL PROTECTED]> 02/09/2006 02:07 PM Please respond to "Struts Users Mailing List" To: cc: Subject:RE: Struts application WAR file creation. [EMAIL PROTECTED] asked: > What's other manu

RE: [OT off topic] Oracle Database Performace Issue

2006-02-09 Thread George.Dinwiddie
sumithra devi asked: > We have sql query that is generated dynamically(this is what > is causing teh problem) I'm no expert in tuning database access, but even for a one-time use, Oracle can do a better job if you use a PreparedStatement rather than a Statement. Of course, if you can re-use that

RE: [OT] Upgrading existing applications so they're maintainable--who pays?

2006-02-09 Thread George.Dinwiddie
Dave Newton asked: > > Assume a large body of existing work used across multiple websites: > - No documentation > - Buggy home-grown libraries (DB, connection pooling, > strings, everything) > - Home-grown "custom tag" system (parse the file on each page load) > - Essentially un-maintainable and

RE: Struts application WAR file creation.

2006-02-09 Thread George.Dinwiddie
[EMAIL PROTECTED] asked: > What's other manual way to create WAR file, which is > deployable on > any Tomcat instance ? Look at the 'war' task in ant. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [OT off topic] Oracle Database Performace Issue

2006-02-09 Thread DGraham
All your database are belong to us. ;) Have you run an explain plan for your poorly performing query? -Dennis sumithra devi <[EMAIL PROTECTED]> 02/09/2006 01:42 PM Please respond to "Struts Users Mailing List" To user@struts.apache.org cc Subject [OT off topic] Oracle Database Performa

[OT off topic] Oracle Database Performace Issue

2006-02-09 Thread sumithra devi
Ours is a J2ee application with weblogic and Oracle database. we are finding performance issues and when analysed saw that cpu usage on oracle databse side is very high. At a high level this is what we have: We have sql query that is generated dynamically(this is what is causing teh problem) W

Re: calling DispatchAction when clicked Refresh on Browser

2006-02-09 Thread fea jabi
Thank you all for the responses. I'll take a look at it. From: Emmanouil Batsis <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: calling DispatchAction when clicked Refresh on Browser Date: Thu, 09 Feb 2006 18:26:47 +0200 Hello Fea, fea j

AW: Struts application WAR file creation.

2006-02-09 Thread Martin Kindler
You can set it in the project properties, which you find parallel to the Tomcat submenu). Martin > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 9. Februar 2006 17:56 > An: Struts Users Mailing List > Betreff: Struts application WAR

Struts application WAR file creation.

2006-02-09 Thread digant . k . joshi
Hi! I have a Struts Application developed using Eclipse SDK 3.1.1 and Tomcat Plug-in 3.0.0 I have defined application root in eclipse while creating Tomcat Project as /dice. In eclipse workspace I see all jsp/lib/classes/ folders are all under /dice directory. Ho

[OT] Upgrading existing applications so they're maintainable--who pays?

2006-02-09 Thread Dave Newton
Assume a large body of existing work used across multiple websites: - No documentation - Buggy home-grown libraries (DB, connection pooling, strings, everything) - Home-grown "custom tag" system (parse the file on each page load) - Essentially un-maintainable and un-extensible So... How do you dea

Validating Nested Proprties

2006-02-09 Thread Jason Carter
Hello, I have been trying to validate nested forms using the following model: An ArrayList of Employee objects where each Employee object has an ArrayList of Address objects and each Address object has a property named zip that is to be validated as an integer value. The view will allow the user t

Re: looking for struts,ejb,jboss,ant demo

2006-02-09 Thread Joey Watson
Thanks everybody. It's seems I need to study it by myself...np.. thanks Joey On 2/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Or use the struts,ejb,jboss,eclipse demo and then learn how to set up > the ant build. I use eclipse for day-to-day work and ant for the > reference builds. >

Re: [other] Borland want to sell its IDE products.....

2006-02-09 Thread Joey Watson
Borland, a great company is gone. I can not forget Delphi, best IDE tool I have used. to be honesty, I like Delphi more than Eclipse. haa, but it's life... On 2/9/06, Legolas Woodland <[EMAIL PROTECTED]> wrote: > > Hi > just look at > http://blogs.borland.com/davidi/archive/2006/02/08/23013.aspx

Re: calling DispatchAction when clicked Refresh on Browser

2006-02-09 Thread Emmanouil Batsis
Hello Fea, fea jabi wrote: When I click on the Refresh on the toolbar of the browser, I am seeing that it tries to execute this Add method, and adding one more row. why is that? How to prevent the same? In general it is a good practice to redirect instead of forwarding to the view after

Re: calling DispatchAction when clicked Refresh on Browser

2006-02-09 Thread Ext . Ilitia2
Hi, A few days ago, someone put in this list a message with a URL from where you could donwload a pdf about Struts. I don't remember the url, but the title of the book is "Struts survival guide" and the author is Srikanth Shenoy. Maybe someone can remenber it and reply. In the chapte

Re: calling DispatchAction when clicked Refresh on Browser

2006-02-09 Thread Michael Jouravlev
On 2/9/06, fea jabi <[EMAIL PROTECTED]> wrote: > I my JSP I am having a button "Add", which adds a row to the table when > clicked and this code is in DispatchAction. i.e adding one more object to my > table List. > > Everything works fine. > > When I click on the Refresh on the toolbar of the brow

calling DispatchAction when clicked Refresh on Browser

2006-02-09 Thread fea jabi
I my JSP I am having a button "Add", which adds a row to the table when clicked and this code is in DispatchAction. i.e adding one more object to my table List. Everything works fine. When I click on the Refresh on the toolbar of the browser, I am seeing that it tries to execute this Add meth

RE: looking for struts,ejb,jboss,ant demo

2006-02-09 Thread George.Dinwiddie
Or use the struts,ejb,jboss,eclipse demo and then learn how to set up the ant build. I use eclipse for day-to-day work and ant for the reference builds. - George Nick Sophinos wrote: > > An alternative would be to find an EJB example that you are > comfortable with and then find a Struts exam

Re: [other] Borland want to sell its IDE products.....

2006-02-09 Thread Gary Feidt
Bye, bye JBuilder >>> [EMAIL PROTECTED] 2/8/2006 4:55:42 PM >>> Hi just look at http://blogs.borland.com/davidi/archive/2006/02/08/23013.aspx it say that borland is going to sell its IDEs , what will happen next ? who will buy jdeveloper ? -

Re: looking for struts,ejb,jboss,ant demo

2006-02-09 Thread Nick Sophinos
An alternative would be to find an EJB example that you are comfortable with and then find a Struts example that you could lay over it. There are plenty of each out there, but not so much all together. Maybe JBoss's site? - Nick On 2/9/06, Joey Watson <[EMAIL PROTECTED]> wrote: > Hello everyone

looking for struts,ejb,jboss,ant demo

2006-02-09 Thread Joey Watson
Hello everyone. I am looking for a demo using struts,ejb,jboss, ant. I searched by google. but only found struts,ejb,jboss demo by eclipse. but I don't depend on IDE tools. I want to learn more. So hope anybody can help me find a demo using struts,ejb,jboss with ant. Thanks so much. Joey

RE: html:options whith a HashMap

2006-02-09 Thread José María Tristán
I create a bean: public class BeanDatos { private Map codigoM = new HashMap(); public Map getCodigoM(){ return this.codigoM; } public void setCodigoM(Map codigoM){ this.codigoM = codigoM; } } And in my jsp:

Re: html:options whith a HashMap

2006-02-09 Thread Aidas Semezys
Yes it is possible. Suppose you have bean of type java.util.HashMap in your context under name hashMapBean. Then you write: That's all for it. On 2/8/06, José María Tristán <[EMAIL PROTECTED]> wrote: > > Hi, > > I have an application whith a html:options whith two ArrayList to > se

RE: [OT] Re: Struts 1.1 issue (myEclipse+Jboss 3.2.5+SQL Server 2000)

2006-02-09 Thread Jitendra Kumar
Dave, Thanks for your response. I have got your point and will try to follow the guidelines from my next mail on. I was basically interested in knowing all the steps that are required to connect to a remote SQL server 2000 using Struts on JBoss. After a night of trial and errors, I have finally