RE: Problem with hidden String[] object

2006-10-20 Thread Strachan, Paul
To populate the string array your http request would take the structure: name=value1&name=value2&name=value3 etc where you have a java.lang.String[] name; property on your form. So there are many ways to do this in html, with Struts tags (eg populated from form) you could try: Not

Re: why hardcode the path of web.xml?

2006-10-20 Thread Christopher Cheng
The reason is that I can use different configuraiton files for different instances. Anyway, I have modified ActionServlet myself and it is working fine. -- Christopher Cheng "Jerome Gagner" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > If you are using the resin-specific config

Re: Hosting

2006-10-20 Thread James Mitchell
I also use Kattare. I have a corporate plan, so I can setup unlimited domains. I use it for my Company site and all of my clients that have opted to let me host their sites. I highly recommend using them. -- James Mitchell 678.910.8017 On Oct 20, 2006, at 7:13 PM, Ted Husted wrote:

Re: validator framework

2006-10-20 Thread Sócrates Medina
Check this document, slide 30 by Shang Shin. http://www.javapassion.com/j2ee/StrutsValidationFramework_speakernoted.pdf I think it's a good explanation...Check it out. Check intRange key, how he works with it. For dominicans, cubans are our brothers...we share historical events! I hope this co

Re: display only mode using struts tags

2006-10-20 Thread Sócrates Medina
Hey, form tag is not longer usedTry to use more updated struts framework. I use version 1.3.5...the last. -- Sócrates Medina -- -"Know thyself" On 10/20/06, Martin Kindler <[EMAIL PROTECTED]> wrote: I do not see any sensible way to do it without changing the JSPs. The user must see some

Re: Problem with hidden String[] object

2006-10-20 Thread Sócrates Medina
Instead of string array, I would do it with a object that implement interator interface, like ArrayList. If you have an array list, you can add indeterminate numbers of objtects like string one I hope, this could help you...I'm a new struts developer...only weeks, but i'm pretty sure ths

Re: Hosting

2006-10-20 Thread Ted Husted
PlanetStruts.org runs on Kattare.com. -T. On 10/19/06, Juan Espinosa <[EMAIL PROTECTED]> wrote: Hi im looking for a hosting company that supports java 1.5, tomcat 5.x (i will upload a struts 2 application) HD:5gb Transfer:30+Gb Anybody has suggestions...??? Thanks Juan ---

validator framework

2006-10-20 Thread Yariel Ramos Moreno
Hi, How can I validate a form field to accept numbers from 1 to 99 or an underscore (_) using the validator framework. The application is in Struts 1.1. Best Regards. __ XIII Convención Científica de Ingeniería y Arquitectura 28/noviembre al 1/diciembre d

Re: Drag-and-drop struts-aware IDE?

2006-10-20 Thread Craig McClanahan
On 10/20/06, Bruno Melloni <[EMAIL PROTECTED]> wrote: It surprises me that a drag-and-drop struts aware IDE does not exist. A Struts drag-and-drop plug-in for Eclipse would be a very compelling product - the strength of (a current version of) Struts with the easy of use of Visual Studio... Many

Re: open source to convert movie to SWF or FLV

2006-10-20 Thread Kevin Sitron
http://www.openlaszlo.org On Fri, 2006-10-20 at 04:03 -0700, wilson wong wrote: > Hi All > Looking for open source or commercial product to > convert AVI, MPG, MPEG, WMV, MOV, ASF, MP4 into SWF > or FLV, this product must provide java API for > integration Thanks for your time. > > Wilson > > _

Re: Hosting

2006-10-20 Thread Peter L. Berghold
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Juan Espinosa wrote: > Hi im looking for a hosting company that supports java 1.5, tomcat 5.x (i > will upload a struts 2 application) > Take a look at http://www.performancehosting.net I recently switched to them when my previous provider Assorted I

Re: display only mode using struts tags

2006-10-20 Thread Angelo zerr
Hi martin, if your are intersted, you can see FormView Project at http://formview.sourceforge.net With Formview you can manage mode (READ-ONLY, READ-WRITE.) of your jsp fields in your action struts or with a XML file config Regards Angelo 2006/10/20, Martin Kindler <[EMAIL PROTECTED]>: I do

Re: Drag-and-drop struts-aware IDE?

2006-10-20 Thread Peter L. Berghold
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bruno Melloni wrote: > > Any advice would be welcome. > Bruno, While it isn't drag and drop, I am a big fan (warts and all.. and it does have warts) of MyEclipseIDE (http://www.myeclipseide.com/) which is a plugin to Eclipse (http:///www.eclipse.o

Re: Problem with hidden String[] object

2006-10-20 Thread Anet
Hi; Thank very much for your help, but my string[] object filled dynamic.I don't know its size at first. and I don't need its data on my form, I just need them to pass with form when the form is submitted. also your solution can help me. just I want to know something. I saw in a document that

AW: display only mode using struts tags

2006-10-20 Thread Martin Kindler
I do not see any sensible way to do it without changing the JSPs. The user must see somehow that the fields are readonly and this must be done in the frontend. You could of course just choose to not evaluate the ActionForm in the "readonly"-case, but this would be not very user-friendly. But the S

Re: Problem with hidden String[] object

2006-10-20 Thread WongTseng王曾
Maybe you can make your String[] Object a indexed attribute of your formbean. Then use html:hidden: something like this below: Class YourFormBean extends ActionForm{ String[] aaas = new String[5]; public String getAaa(int index){ return aaas[index]; } publi

display only mode using struts tags

2006-10-20 Thread fea jabi
Developed jsp using struts html tags. (html:text etc.) Now we have the requirement which should display the values only is display mode on a condition. user should not be able to edit any in some condition. Is there something in struts that can be used to get this functionality. I have se

RE: Drag-and-drop struts-aware IDE?

2006-10-20 Thread Juan Espinosa
Here are some struts - eclipse plugins - i dont know if they are drag and drop plugins Easy Struts - http://easystruts.sourceforge.net/ MyEclipseIde - http://www.myeclipseide.com/index.php NitroX - http://www.eclipseplugincentral.com/displayarticle194.html Improve Struts Editor - http://www.im

RE: Drag-and-drop struts-aware IDE?

2006-10-20 Thread Bruno Melloni
It surprises me that a drag-and-drop struts aware IDE does not exist. A Struts drag-and-drop plug-in for Eclipse would be a very compelling product - the strength of (a current version of) Struts with the easy of use of Visual Studio... Many would pay for that. -Original Message- From: M

Problem with hidden String[] object

2006-10-20 Thread Anet
Hi everybody; I have a String[] object. but I can't pass it via form as a hidden object. Is it wrong to pass a string[] object as html:hidden ??? Thanks. - How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates.

open source to convert movie to SWF or FLV

2006-10-20 Thread wilson wong
Hi All Looking for open source or commercial product to convert AVI, MPG, MPEG, WMV, MOV, ASF, MP4 into SWF or FLV, this product must provide java API for integration Thanks for your time. Wilson __ Do You Yahoo!? Tired of spam? Yahoo! Mail has th

Please unsubscribe me

2006-10-20 Thread Pillay, Kiren KN
Hi Your unsubscribe functionality isn't working. Please unsubscribe me from this list. Regards Kiren Pillay __ Standard Bank Disclaimer and Confidentiality Note This

[OT] Re: java.lang.OutOfMemoryError: Java heap space

2006-10-20 Thread Antonio Petrelli
B.Sridhar ha scritto: yes . actually my appln initially downloads the file from database to a temp directory of the tomcat as a temp file and then from there iam reading it to display. So the file is not getting stored in the temp directory. while getting the file from database its displaying

Re: java.lang.OutOfMemoryError: Java heap space

2006-10-20 Thread B . Sridhar
yes . actually my appln initially downloads the file from database to a temp directory of the tomcat as a temp file and then from there iam reading it to display. So the file is not getting stored in the temp directory. while getting the file from database its displaying exception On 10/20/06,