Re: AW: talking about paradigms

2004-11-16 Thread Lucas Gonzalez Pearson
This is a simple sintaxis issue... parameters in java are not passes as pointers.. they are passed as values ( the memory address of the object in the heap ).. so if we are to be precise there are no real pointers in java... however.. the main difference with C/C++ is that you cannot do

Problems with nested:form

2004-10-26 Thread Lucas Gonzalez Pearson
Hi.. I´m not exactly what the problem is, but I´ll try to explain it to see if anyone can help me out... we have this on a jsp: nested:form action=CustomerCrud2 onsubmit=return validateCustomerCrud2(this) and this is the action mapping in struts-config: action path=/CustomerCrud2

Re: Dynamically Display in the Textarea Based on Menu Selection Made by Users

2004-09-24 Thread Lucas Gonzalez Pearson
Easy... everything has already been fetched before... take a look at the source ( no copyrights violation intended ): script var programSelectionTable; var programDescription; var programSubProgramSelect; var programHigestLevel; function showOtherFields(n){ var selectedProgramName =

Re: [FRIDAY] GMail invites

2004-09-10 Thread Lucas Gonzalez Pearson
You get your invitations (I think) depending on how long you have the account and how much you use it. I´ve already given away 10 invitations and every month I get 4 or 5 more... - Original Message - From: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday,

[OT]: ant + eclipse not working .. eclipse bug?

2004-09-09 Thread Lucas Gonzalez Pearson
I have a really strange problem! I made a mistake like this in a class System.out.println( ) asdfa ; after saving the file, running ant compile throws this: compile: BUILD SUCCESSFUL It seems like the javac task is not recompiling the class ( since using a ant clean, ant compile

Re: [OT] Setting up a struts project in IDEA

2004-09-03 Thread Lucas Gonzalez Pearson
Denis, place the cursor over the TLD reference ( it will be probably in RED )... and then press ALT + ENTER and idea will take care of everything for you. (It will add it to the project resources list) Exitos Lucas - Original Message - From: Denis Avdic [EMAIL PROTECTED] To: Struts

Re: ApplicationProperties_es_ES

2004-08-27 Thread Lucas Gonzalez Pearson
I thought that if no resource bundle matched the ones you had, then the default would be chosen... isn´t that correct? We are developing in argentina, and many people has es_ES instead of es_AR in their locales, so the default resource bundle is used (english in our case) =/ - Original

Re: [OT] Good luck Dream Team

2004-08-27 Thread Lucas Gonzalez Pearson
Hey we won! Lucas ps.- an argentinian guy - Original Message - From: ksitron [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, August 27, 2004 5:45 PM Subject: Re: [OT] Good luck Dream Team That's Ok. You guys can talk smack now. But, I'm sure in four

Re: Deploying Struts ???

2004-08-20 Thread Lucas Gonzalez Pearson
If you deploy two different war to a jboss server, the one that is deployed the latest will be used. I am experiencing this problem. Maybe Jboss classloader is does not support hierarchies? - Original Message - From: Jim Barrows [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

Re: Deploying Struts ???

2004-08-20 Thread Lucas Gonzalez Pearson
PM Subject: RE: Deploying Struts ??? -Original Message- From: Lucas Gonzalez Pearson [mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 10:15 AM To: Struts Users Mailing List Subject: Re: Deploying Struts ??? If you deploy two different war to a jboss server, the one

Re: form submit problem...

2004-08-18 Thread Lucas Gonzalez Pearson
Why don´t you just follow the instructions to remove YOURSELF from the mailing list? thanks for not spamming us anymore Regards, Lucas - Original Message - From: Jones, Demian [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:13 PM

Tiles problem when uploading war .... was [Re: Extending Request Processor]

2004-07-16 Thread Lucas Gonzalez Pearson
not compatible with TilesRequestProcessor at org.apache.struts.tiles.TilesPlugin.initRequestProcessorClass(TilesPlugin.ja va:360) ( doing a restart throws no errors )... Any ideas? pointers? Thanks... =) - Original Message - From: Lucas Gonzalez Pearson [EMAIL PROTECTED] To: Struts

Extending Request Processor

2004-07-08 Thread Lucas Gonzalez Pearson
Hi I´ve recently extended the requestProcessor with one of my own and found this error: javax.servlet.ServletException: TilesPlugin : Specified RequestProcessor not compatible with TilesRequestProcessor at

Re: struts automation

2004-07-08 Thread Lucas Gonzalez Pearson
Try Camino I believe the company that owns it is called ScioWorks Lucas - Original Message - From: Tate Austin [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, July 08, 2004 5:52 PM Subject: struts automation Is there a struts tool out there that will

Re: Session facade

2004-07-07 Thread Lucas Gonzalez Pearson
Zhang, It depends on what you want. Using session facade gives your architecture forward compatibility towards EJB technologies and maybe new technologies that might come in ... the overhead of using this pattern isn´t that important and you will have a clearer separation of areas... Regards,