Re: What is wrong with this upload filename (UTF-8) decoding?

2003-12-26 Thread Firat TIRYAKI
I think it depends on the operating system on your machine where the app server is running... Try to solve the problem with your OS. F. - Original Message - From: Zsolt Koppany [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, December 26, 2003 12:51 PM

Re: BeanUtils.populate Error

2003-12-20 Thread Firat TIRYAKI
check your form and bean properties, types, ... they have to be same... F. - Original Message - From: Raman [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 12:41 PM Subject: Re: BeanUtils.populate Error Hi I am using Validator

Re: Please Help With This Error Message

2003-12-17 Thread Firat TIRYAKI
maybe you don't have a space character between creator and scope... try to write the tag in one line, not multiple lines. F. - Original Message - From: fredatwork [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 8:53 AM Subject: RE:

Re: html:select tag or logic:iterate

2003-12-15 Thread Firat TIRYAKI
try this, html:select property=defaultContainerType html:options collection=CONTAINER_TYPES property=id labelProperty=name/ /html:select F. - Original Message - From: Marco Mistroni [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, December 15, 2003

Re: java.lang.VerifyError

2003-12-12 Thread Firat TIRYAKI
check your scope and try to change it, I mean the private, public and protected shed on your code... F. - Original Message - From: Vasi [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, December 12, 2003 1:19 PM Subject: RE: java.lang.VerifyError Hi

Re: problem in javascript for select enabled/disabled by checkbox in a list with in logic iterate

2003-12-11 Thread Firat TIRYAKI
Well, sorry but you can't use the disabled property for one of a select element's options, you can use it for the whole select. F. - Original Message - From: Udaya Allu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 11, 2003 5:17 PM Subject: problem in javascript for

Re: downloading of files

2003-12-08 Thread Firat TIRYAKI
what exactly you want to do? please be more spesific. F. - Original Message - From: Viral_Thakkar [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 08, 2003 11:33 AM Subject: downloading of files Is there any struts support to download the files?

Re: how to handle refresh button ?

2003-12-08 Thread Firat TIRYAKI
send a random number, seed by date, that's like - (?random=10002373); F. - Original Message - From: Kalra, Ashwani [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 08, 2003 11:45 AM Subject: RE: how to handle refresh button ? hi Caroline,

Re: downloading of files

2003-12-08 Thread Firat TIRYAKI
Define a download accessor class (that you'll write using servlet functionality) in the web.xml file that manages the file when requested. F. - Original Message - From: Viral_Thakkar [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 08, 2003 12:00

Re: downloading of files

2003-12-08 Thread Firat TIRYAKI
: downloading of files Should I write the action class for the download functionality or servlet code required? -Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 3:45 PM To: Struts Users Mailing List Subject: Re: downloading of files Define

Re: downloading of files

2003-12-08 Thread Firat TIRYAKI
] Sent: Monday, December 08, 2003 2:17 PM Subject: RE: downloading of files Can u please look at http://www.mail-archive.com/[EMAIL PROTECTED]/msg15750.html and tell me what code need to go in the download action class? -Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED] Sent

Re: Drop-down-list

2003-12-01 Thread Firat TIRYAKI
You can directly do it using javascript, refer to the below URL for a detailed example http://www.jguru.com/faq/view.jsp?EID=923880 F. - Original Message - From: Gede Indrawan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 01, 2003 12:39 PM

Re: IDE

2003-11-19 Thread Firat TIRYAKI
I think Struts Studio will satisfy your needs for beginning. F. - Original Message - From: Manjunath Bhat [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 4:27 PM Subject: RE: IDE Eclipse + Lamboz + Easy Struts are good combination I

Re: Migration of a servlet that uses pathinfo to struts

2003-11-17 Thread Firat TIRYAKI
I think you should manage this situation in the web.xml, don't include it in struts action servlet, just run it stand alone. F. - Original Message - From: Chris Searle [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 17, 2003 12:30 PM Subject: Migration of a servlet that

Re: multibox - Null attribute name ServletException

2003-11-06 Thread Firat TIRYAKI
store the properties in a bean and recall them in your action. F. - Original Message - From: ZYD [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:52 AM Subject: multibox - Null attribute name ServletException I tried to use

Re: html:text

2003-10-31 Thread Firat TIRYAKI
you should use the name too name is the id you define in tags (logic:iterate maybe) bean:write name=users property=userName/ and also c:out value=${users.userName} should work F. - Original Message - From: struts [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]

Re: html:text i'm lost

2003-10-31 Thread Firat TIRYAKI
(form, request); - Original Message - From: Firat TIRYAKI [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, October 31, 2003 2:35 PM Subject: Re: html:text you should use the name too name is the id you define in tags (logic:iterate maybe

Re: struts include

2003-10-16 Thread Firat TIRYAKI
Try to make it with your actions rather than in jsp, Seperate the business logic and view, that's what struts is mainly for. Well it depends on what your actions do but it seems that you want to make two different actions in a jsp page, connect your actions with an alternate action. F. -

Re: Session Tracking in Struts

2003-09-15 Thread Firat TIRYAKI
Then set it inyour action that refers to the second jsp page by request.setAttribute... F. - Original Message - From: Naveen Mudgal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 2:33 PM Subject: Session Tracking in Struts I am making a simple JSp which have

Re: help....! it's possible to format date output with bean:write?

2003-09-10 Thread Firat TIRYAKI
You should make a decleration in the application resources file ; --- date.format=MM/dd/ --- and use it in jsp bean:write with the parameter formatKey like below bean:write name=beanName property=dateProperty

Re: help....! it's possible to format date output with bean:write?

2003-09-10 Thread Firat TIRYAKI
or it behaviour in another manner. My requirement is I have date field, If user enters 10022003, it should convert into 10/02/2003. If I given wrong it should promt to user wrong format. Thanks Regards, Ashok.D - Original Message - From: Firat TIRYAKI [EMAIL PROTECTED] To: Struts

Re: How to get the url containing anchor from request

2003-09-02 Thread Firat TIRYAKI
if it works out for you, you can use javascript; document.location.hash gives you the anchor you specified. F. - Original Message - From: Marius Oancea [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 10:55 AM Subject: How to get the

Re: Struts form validation: DAO and multipages

2003-09-01 Thread Firat TIRYAKI
Well, try a javascript solution ; 1) history.go(-1); or 2) document.location.replace(your url here); or 3) recreate your DAO list in the validate and you can use it in the page. or send the first action to us, have to know what it does, if the problem continues. :o) F. - Original

Re: J2EE IDE

2003-08-27 Thread Firat TIRYAKI
you should use eclipse, it doesn't use swing for GUI's, and it's faster than the others. F. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 9:46 AM Subject: J2EE IDE Can someone please suggest me a free J2EE IDE suitable for

Re: J2EE IDE

2003-08-27 Thread Firat TIRYAKI
Well, you can add struts support to every application you want, it automatically adds the required struts jar files when you open a new project. and struts 1.1 is supported too, you choose the version when you add. WSAD is the best IDE I've ever seen. F. - Original Message - From:

Re: list Map iby c:forEach

2003-08-19 Thread Firat TIRYAKI
You should use ligic:iterate if you have the menu data in your database make a list in your action by using your data object and iterate it. F. - Original Message - From: Jiri Chaloupka [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 2:03

Re: Form data is not null and the length is 0 -- why this ?

2003-08-18 Thread Firat TIRYAKI
null means the related object has no reference, it has no memory allocation, and it has no value. A string may have 0 length but may be referenced in the memory area, so null doesn't mean 0 length in strings. F. - Original Message - From: Stefan Berger [EMAIL PROTECTED] To: [EMAIL

Re: Dependent select boxes

2003-07-22 Thread Firat TIRYAKI
Take a look at the jguru faq for dynamic select box. You should generate javascript arrays dynamically and use them in the functions, I hope it will be helpful http://www.jguru.com/faq/view.jsp?EID=923880 - Original Message - From: Brian McSweeney [EMAIL PROTECTED] To: [EMAIL

Re: Java Script Confirm and struts

2003-07-16 Thread Firat TIRYAKI
if you make the change button as a type=button the below code works fine. onclick=if (confirm('make sure all the values are correct, once it is submitted it cannot be take back')){document.formName.submit();} else {return false;} - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

Re: table dispaly

2003-07-14 Thread Firat TIRYAKI
use checkbox names associated with the data in columnB and C. Maybe you can use their IDs like below input type=checkbox name=check_ID ID is ; input type=checkbox name=check_54 input type=checkbox name=check_85 . . . . . F. - Original Message - From: Adwait B [EMAIL PROTECTED] To:

Re: newbie question - setting form parameter in Javascript

2003-07-12 Thread Firat TIRYAKI
probably you can not see the javascript error, because the form submits in the function, remove the submit(); in the function and see the error, and also I recommend you not to use onclick event, try onchange, it's better in this situation. F. - Original Message - From: Shyam A [EMAIL

Re: html:image doesn't submit the page in netscape???

2003-07-11 Thread Firat TIRYAKI
check out the source in the browser. Would you please send it to here... F. - Original Message - From: sriram [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, July 11, 2003 1:22 PM Subject: html:image doesn't submit the page in netscape??? I'm using

Re: html:image doesn't submit the page in netscape???

2003-07-11 Thread Firat TIRYAKI
. - Original Message - From: sriram To: 'Struts Users Mailing List' Sent: Friday, July 11, 2003 1:49 PM Subject: RE: html:image doesn't submit the page in netscape??? Firat The source is attached. Sriram -Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED] Sent: Friday

Re: html:image doesn't submit the page in netscape???

2003-07-11 Thread Firat TIRYAKI
-Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 5:03 PM To: Struts Users Mailing List Subject: Re: html:image doesn't submit the page in netscape??? RE: html:image doesn't submit the page in netscape???It seems that you don't have the function

characterEncoding for resource bundle

2003-07-08 Thread Firat TIRYAKI
Hi, Is there a way to set the characterEncoding for the ApplicationResources.properties file? Simply I can not get the special characters in the 8859_9 chartype. Thanks F. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [OT] Does any one know ....

2003-07-04 Thread Firat TIRYAKI
the logo should be the skeleton of tomcat... will be cool... F. - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 04, 2003 2:48 PM Subject: Re: [OT] Does any one know hmm, you're right. I wasn't inspired by

Re: [OT] Does any one know ....

2003-07-04 Thread Firat TIRYAKI
:o)... well great idea F. - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 04, 2003 3:23 PM Subject: Re: [OT] Does any one know a bit like Tom when gets an electric shock in Tom Jerry? Firat

Re: Submiting a form through a link

2003-06-30 Thread Firat TIRYAKI
Well, filling the href parameter to tell that it should read javascript, you can use the below alternative. a href=javascript:// onclick=document.forms[0].submit(); F. - Original Message - From: Kruse, Matt [EMAIL PROTECTED] To: 'Struts Users Mailing List ' [EMAIL PROTECTED] Sent:

Re: accessing form element in javascript

2003-06-23 Thread Firat TIRYAKI
use the below statement. javascript has an array object of forms document.forms[0].age.value; F. - Original Message - From: Gemes Tibor [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, June 23, 2003 12:25 PM Subject: Re: accessing form element in

Re: Javascript w validator

2003-06-16 Thread Firat TIRYAKI
check out the arrays you are using... if there is any... - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 16, 2003 1:55 PM Subject: Javascript w validator I am trying to introduce validator's javascript in my form but i get:

Re: Javascript w validator

2003-06-16 Thread Firat TIRYAKI
Message Received from host: daedalus.apache.org [208.185.179.12] From: Firat TIRYAKI [EMAIL PROTECTED] on 16-06-2003 11:06 Firat TIRYAKI To: Struts Users Mailing List [EMAIL PROTECTED][EMAIL PROTECTED

Re: [OT] Java Trivia

2003-06-12 Thread Firat TIRYAKI
well, what's the message you are getting? F. - Original Message - From: Jarnot Voytek Contr AU HQ/SC [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, June 12, 2003 5:01 PM Subject: RE: [OT] Java Trivia for( int i = 0; i string.length; i++ ) {}