RE: redirecting to another action

2004-03-17 Thread Ramadoss Chinnakuzhandai
ActionA ===calling===ActionB In the forward attribute of actionmapping of ActionA specify the action path of ActionB action name=actionAForm type=ActionA scope=request/session validate=true input=xyz.do path=/A/do forward name=callActionB path=/B/do redirect=true /

RE: redirecting to another action

2004-03-17 Thread Ramadoss Chinnakuzhandai
YES, you can do that way ie set it before you call ActionB, inside ActionB you can get that value and execute any block of code of your choice...but I believe there are some other ways using which we can do it better. -Original Message- From: Vanessa Monteiro [mailto:[EMAIL PROTECTED]

Passing Value to Tile

2004-03-15 Thread Ramadoss Chinnakuzhandai
Hi, I have a main jsp contains set of tiles included and contents of each tile should be generated based on the value passed into it from its parent jsp.can anybody suggest me how can I send a value to tile from parent jsp and access that value inside tile? Thanks in advance,

RE: Iterating List

2004-03-10 Thread Ramadoss Chinnakuzhandai
meddelelse- Fra: Daniel Henrique Alves Lima [mailto:[EMAIL PROTECTED] Sendt: 10. marts 2004 06:21 Til: Struts Users Mailing List Emne: Re: Iterating List How about this ? logic:iterate id=myString name=myform property=ListofStringobjects bean:write name=myString/ /logic:iterate Ramadoss

[OT]JSP Debugger

2004-03-10 Thread Ramadoss Chinnakuzhandai
1.First my apology for post this question which I have asked it already. 2.This is question reg Debugging JSP,I do understand that debugging JSP is not really required if we are really follow MVC pattern as we are not putting too much of logic in it...BUT just wanted to know that is there any

RE: [OT]JSP Debugger

2004-03-10 Thread Ramadoss Chinnakuzhandai
If you have the code to the tags, you can set breakpoints there, and debug at that level. I have found that to meet 100% of my debugging needs as far as JSP debugging goes. 1.May I know which tool you are talking about..?? 2.If you are talking about MyEclipse I agree that it works well with

Iterating List

2004-03-09 Thread Ramadoss Chinnakuzhandai
I need to iterate and display collection object List containing objects of type String in my JSP, I know that if the collection is of type Array I can index and get all the objects but is there anyway I can iterate this List object and disply its String objects in my JSP(without having to

RE: Iterating List

2004-03-09 Thread Ramadoss Chinnakuzhandai
/eyebrowse/[EMAIL PROTECTED]). I think somebody has been sent a question like yours. I hope this helps you... Ramadoss Chinnakuzhandai wrote: I need to iterate and display collection object List containing objects of type String in my JSP, I know that if the collection is of type Array I can

Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
Is there anyway I can hide sending all the URL parameters (in the browser address) from once page to other whenever I do submit/click on html link? any help would be appreciated. Tnx in advance, -Ramadoss - To unsubscribe,

RE: Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
But if you're using an html hyperlink, or the Struts html:link... tag, you cannot pass arguments without having them appear in the URL. Im using html:link in most cases.and there is the need of hiding URL parameters despite I'm using method=post in my html:form any clue?? -Ramadoss

RE: Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
tnx all for your helpsure I would try that way. -Ramadoss -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Thu 3/4/2004 5:41 PM To: Struts Users Mailing List Cc: Subject: RE: Hiding URL Parameters

RE: Action not forwarding to another Action

2004-03-03 Thread Ramadoss Chinnakuzhandai
the id? I tried it and I can't find id from the Request object. -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 6:24 PM To: Struts Users Mailing List Subject: RE: Action not forwarding to another Action If Im not wrongif .exe

RE: Action class calling other Action class

2004-03-01 Thread Ramadoss Chinnakuzhandai
/ /action hth -jayash -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 12:29 PM To: [EMAIL PROTECTED] Subject: Action class calling other Action class Hi, I hv ActionClassA ==Display JSP of ActionClassA having

RE: Action class calling other Action class

2004-03-01 Thread Ramadoss Chinnakuzhandai
/ /action hth -jayash -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 12:29 PM To: [EMAIL PROTECTED] Subject: Action class calling other Action class Hi, I hv ActionClassA ==Display JSP of ActionClassA having

RE: Action not forwarding to another Action

2004-03-01 Thread Ramadoss Chinnakuzhandai
If Im not wrongif .exe is what you hv configured in web.xml then I see there is no reason why it is not picking up / possible reason could be... make sure that you are forwarding to Content which is mapped to /app/ListOfOrder.exe in your OrderMaintainAction 1) Can someone also tell me if I

RE: Action not forwarding to another Action

2004-03-01 Thread Ramadoss Chinnakuzhandai
your request object. This is like a client side/browser redirect. Remove this attribute from your forward element and give it a try. -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 3:24 PM To: Struts Users Mailing List Subject: RE

Action class calling other Action class

2004-02-27 Thread Ramadoss Chinnakuzhandai
Hi, I hv ActionClassA ==Display JSP of ActionClassA having a link to Edit JSP of ActionClassB==ActionClassB=Edit JSP of ActionClassB==ActionClassB(Update records)=dispatch control over to ActionClassA. My question is that Can I forward my control to ActionClassA from

[OT]Ant Script

2004-02-25 Thread Ramadoss Chinnakuzhandai
Hi, Using Ant Script is it possible to detect the latest modified file by comparing the same file across two different locations and make them sync or override the old file with the latest modified file and make sure that same version of file exists on these two different location??

RE: A question on Struts taglib.

2004-02-24 Thread Ramadoss Chinnakuzhandai
add index attribute in your logic iterate and append that index to your host string. e.g logic:iterate id=xyzID name=xyzForm property=xyz indexId=index yourhoststring+%=indexId % /logic:iterate -R -Original Message- From: Au-Yeung, Stella H [mailto:[EMAIL PROTECTED] Sent: Tuesday,

ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
Hi, Is there any features in Struts using which I can make the ActionClass smart enough to understand where the request is coming from and execute appropriate block ? If so could you pls drop some light on it? Thank you in advance, -Ramadoss

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
to optionally perform. It is not clear what you are trying to accomplish -- give some more details so we can help. -Max - Original Message - From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 23, 2004 11:26 AM Subject: ActionClass Hi

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
= mapping.findForward(state); } return aForward; } } -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 3:38 PM To: Struts Users Mailing List Subject: RE: ActionClass

RE: ActionClass

2004-02-23 Thread Ramadoss Chinnakuzhandai
the request. But that can be unreliable. Brian -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 4:07 PM To: Struts Users Mailing List Subject: RE: ActionClass tnx for your informationjust curious that is it possible to identify

RE: Must have action=..... in html:form tag?

2004-02-23 Thread Ramadoss Chinnakuzhandai
I'm not sure this but you can try... Create Main screen (define a attribute in your form which holds the value of which screen and set update/create before dispatch) use 'theForm' to input data (here check that attribute value whether it is create/update and assign the same to

Sturts JSP and Javascript

2004-02-19 Thread Ramadoss Chinnakuzhandai
Can anybody provide me sample code of Struts JSP contains Javascript..? or any link to refer how to use JavaScript function inside Struts JSP..?? Thanks in advance, -Ramadoss - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[OT]Eclipse CVS

2004-02-13 Thread Ramadoss Chinnakuzhandai
Hi, Can anybody tell me the procedure to setup CVS in eclipse...or any document to refer? Tnx in advance, -Ramadoss - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Debugging JSP

2004-02-09 Thread Ramadoss Chinnakuzhandai
Hi, I'm debugging Java code using JBoss IDE installed with Eclipse 2.1 and I found I could not debug JSP using the same IDEthen I installed MyEclipse to debug JSP and tested working fine with JSP when I come to debug Java code the break point which I put seems to be does not

RE: [OT] Re: Debugging JSP

2004-02-09 Thread Ramadoss Chinnakuzhandai
I do understand your pointbut the same time wondering is there anyway we can debug JSP as I mentioned. for eg I just wanted to change the value dynamically while displaying it in JSP without testing it action before dispatching to JSP for some reasons. -Ramadoss -Original Message-

RE: Orkut

2004-02-09 Thread Ramadoss Chinnakuzhandai
add me too :-) -R -Original Message- From: Babu, Bharathi [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 6:21 PM To: 'Struts Users Mailing List' Subject: RE: Orkut Please add me. -Original Message- From: Srinivas Kusunam [mailto:[EMAIL PROTECTED] Sent: Monday,

[OT]CVS client

2004-02-04 Thread Ramadoss Chinnakuzhandai
Hi, can anybody suggest me any better CVS client other than WinCVS and JCVS? Tnx in advance, -Ramadoss - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT]CVS client

2004-02-04 Thread Ramadoss Chinnakuzhandai
no power user. John- On Wed, 4 Feb 2004 15:33:11 -0400 Franck Lefebure [EMAIL PROTECTED] wrote: Le Tuesday, February 03, 2004 4:17 PM, Ramadoss Chinnakuzhandai [EMAIL PROTECTED] m'a, d'une plume avisee, ecrit: Hi, can anybody suggest me any better CVS client other than WinCVS and JCVS

RE: Re-deploying in JBoss3.2.3

2004-01-28 Thread Ramadoss Chinnakuzhandai
of the xml's (struts-config, tiles-config) then I simply touch the application.xml and Jboss goes ahead and runs through a re-deployment. Hope this helps. -- Marc -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: 26 January 2004 19:32 To: [EMAIL PROTECTED

Re-deploying in JBoss3.2.3

2004-01-26 Thread Ramadoss Chinnakuzhandai
Hi, Can anybody suggest me Is there anyway I can avoid re-deploy the ear file contains war again and again whenever we make changes to JSP's in JBoss 3.2.3 bundle with Tomcat 4.1.29..? earlier we were running separate container(JBoss and Tomcat as different container) and were able to

Switch Action

2004-01-23 Thread Ramadoss Chinnakuzhandai
Hi, Can anybody give an example for switch action if possible in detail. Thanks in advance. -Ram - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
PROTECTED] - Original Message - From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 22, 2004 3:07 PM Subject: Debugging in JBoss 3.2.3 Hi, I'm using JBoss 3.2.3 (with Tomcat as default container) and was using version 3.2.1 earliar

RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
this: http://jakarta.apache.org/struts/faqs/eclipse.html -- James Mitchell Software Engineer / Struts Evangelist http://www.struts-atlanta.org 678.910.8017 (cell) AIM: jmitchtx MSN: [EMAIL PROTECTED] - Original Message - From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED] To: Struts Users

RE: Debugging in JBoss 3.2.3

2004-01-23 Thread Ramadoss Chinnakuzhandai
Pascal Ramadoss Chinnakuzhandai wrote: Hi, I'm using JBoss 3.2.3 (with Tomcat as default container) and was using version 3.2.1 earliar with Tomcat as separate container and was able to debug my application using eclipse, now we are moved onto JBoss 3.2.3 with Tomcat as default

Debugging in JBoss 3.2.3

2004-01-22 Thread Ramadoss Chinnakuzhandai
Hi, I'm using JBoss 3.2.3 (with Tomcat as default container) and was using version 3.2.1 earliar with Tomcat as separate container and was able to debug my application using eclipse, now we are moved onto JBoss 3.2.3 with Tomcat as default container. Is there anyway I can debug my

Multiple config files under single application

2004-01-14 Thread Ramadoss Chinnakuzhandai
Hi, Is there anyway I can define multiple config files under a single application ? any suggestions/inputs would be hightly appreciated. Thanks in advance. -Ram - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[OT] Oldest Language

2004-01-08 Thread Ramadoss Chinnakuzhandai
Hi, If anyone of you might be wizard of liguistics facts...may I know the worlds oldest language? my apology for posting other topic..thought some one is out there to answer. -R - To unsubscribe, e-mail: [EMAIL

RE: [OT] Oldest Language

2004-01-08 Thread Ramadoss Chinnakuzhandai
-Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 1:50 PM To: [EMAIL PROTECTED] Subject: [OT] Oldest Language Hi, If anyone of you might be wizard of liguistics facts...may I know the worlds oldest language? my apology for posting

RE: [OT] Oldest Language

2004-01-08 Thread Ramadoss Chinnakuzhandai
assimliated into another language, a newer language. So if you narrow the scope of your question to something more specific, more tangible, like the oldest written language, or earliest known language, you may have better answers. -tim -Original Message- From: Ramadoss Chinnakuzhandai

RE: [OT] Oldest Language

2004-01-08 Thread Ramadoss Chinnakuzhandai
: [OT] Oldest Language Wouldnt it be assembly for a computer language? - Original Message - From: Ramadoss Chinnakuzhandai [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 08, 2004 2:36 PM Subject: RE: [OT] Oldest Language yeah I agree too

RE: [OT] Oldest Language

2004-01-08 Thread Ramadoss Chinnakuzhandai
btw I stop the old(est)thread whoever interested in answering the question oldest programming language go ahead and enjoy. -Original Message- From: Ramadoss Chinnakuzhandai Sent: Thursday, January 08, 2004 2:51 PM To: Struts Users Mailing List Subject: RE: [OT] Oldest Language my

[OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
Hi, Is Eclipse owned by IBM or bought by IBM? Any idea? -Ram - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
it to the open source community. See: http://www.ibm.com/news/us/2001/11/05.html My understanding is that Eclipse grew out of IBM's VisualAge for Java project. -- Martin Cooper Ramadoss Chinnakuzhandai [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Is Eclipse owned by IBM

RE: [OT] Who owns Eclipse

2003-12-26 Thread Ramadoss Chinnakuzhandai
), an IBM company. They developed Visual Age before. IBM (and maybe some of the OTI employees) builds WebSphere Studio Application Developer on top of it and sells it. Ingo Ramadoss Chinnakuzhandai wrote: Hi, Is Eclipse owned by IBM or bought by IBM? Any idea? -Ram

RE: From Suresh

2003-12-24 Thread Ramadoss Chinnakuzhandai
Just look at the existing mail archives which has similar thread -Original Message- From: Suresh Korvi Sent: Wednesday, December 24, 2003 1:32 PM To: [EMAIL PROTECTED] Subject: From Suresh Hi Guys Can anybody help how to work with StrutsTestCase i am using Eclipse suresh

RE: [OT] SQL Date to Util Date

2003-12-12 Thread Ramadoss Chinnakuzhandai
if you hv yahoo id I can add and chat whenever we need. my id is [EMAIL PROTECTED] -Original Message- From: Tiago Henrique Costa Rodrigues Alves [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 4:02 PM To: 'Struts Users Mailing List' Subject: RES: [OT] SQL Date to Util Date

RE: [OT] SQL Date to Util Date

2003-12-12 Thread Ramadoss Chinnakuzhandai
ignore my prev mail tnx -Original Message- From: Ramadoss Chinnakuzhandai Sent: Friday, December 12, 2003 4:31 PM To: Struts Users Mailing List Subject: RE: [OT] SQL Date to Util Date if you hv yahoo id I can add and chat whenever we need. my id is [EMAIL PROTECTED] -Original

Form with a Form

2003-12-08 Thread Ramadoss Chinnakuzhandai
Hi, Can we define a form within a form...if so can you guide me . Actually in my jsp I wanted to perform two different action with respect to button pressed.so If I define global form I can only submit the global action defined in that form but I wanted to submit different action

RE: Form with a Form

2003-12-08 Thread Ramadoss Chinnakuzhandai
Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 10:17 AM To: [EMAIL PROTECTED] Subject: Form with a Form Hi, Can we define a form within a form...if so can you guide me . Actually in my jsp I wanted to perform two different action

RE: Form with a Form

2003-12-08 Thread Ramadoss Chinnakuzhandai
-Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 10:17 AM To: [EMAIL PROTECTED] Subject: Form with a Form Hi, Can we define a form within a form...if so can you guide me . Actually in my jsp I wanted to perform two different action

RE: Form with a Form

2003-12-08 Thread Ramadoss Chinnakuzhandai
script on click of multiple buttons Like ADD, DELETE, EDIT, RENAME buttons. What the java script will do is update HIDDEN variable and submit. I have not come across form within a form in HTML. Regards Ajay Kalidindi -Original Message- From: Ramadoss Chinnakuzhandai [mailto

RE: Email Validation Rules

2003-11-19 Thread Ramadoss Chinnakuzhandai
, November 18, 2003 11:46 PM To: Struts Users Mailing List Subject: RE: Email Validation Rules I'd suggest calling: org.apache.commons.validator.GenericValidator.isEmail(String arg); -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003

RE: Tokens

2003-11-19 Thread Ramadoss Chinnakuzhandai
Hi Gurpreet, If what I understand is correct from your question, you can use split function the same way as you use String Token...following is sample snap shot String str = botherouioero:and:foroffo:mar:ssod:slave; String[] arr = str.split(:, 9);

RE: Struts Validation

2003-11-19 Thread Ramadoss Chinnakuzhandai
Hi Luci, As you mentioned in your expression there a in-build function called email which will make use of org.apache.commons.validator.GenericValidator.isEmail(String arg) but the problem here is it does accepts even invalid email address also (eg) [EMAIL PROTECTED] would rather

RE: Email Validation Rules

2003-11-19 Thread Ramadoss Chinnakuzhandai
://www.breakingpar.com/bkp/home.nsf/Doc?OpenNavigatorU=87256B280015193F 87256C40004CC8C6 which I found using google with 'email address regular expression' Regards, Richard -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 6:34 AM

RE: IDE

2003-11-19 Thread Ramadoss Chinnakuzhandai
There is something you cant buy(?)for everything there is an eclipse -ram -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 10:13 AM To: Struts Users Mailing List Subject: RE: IDE Sergio, If you're looking for an IDE with good Struts

Email Validation Rules

2003-11-18 Thread Ramadoss Chinnakuzhandai
Can any one correct me where I'm wrong using the following rule for validating email addressIt fails to validate against the valid email address..? [EMAIL PROTECTED],4}$ Tnx in advance :) -Ram - To unsubscribe,

RE: Email Validation Rules

2003-11-18 Thread Ramadoss Chinnakuzhandai
Users Mailing List Subject: RE: Email Validation Rules I'd suggest calling: org.apache.commons.validator.GenericValidator.isEmail(String arg); -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 1:03 PM To: Struts Users Mailing

RE: Hello Basic Question.

2003-11-14 Thread Ramadoss Chinnakuzhandai
Hi Tim, Following are the easy steps to develop web app using Struts You also might want to try out my newbie walk throughs at http://www.reumann.net/do/struts/main I created those lessons because when I was learning nothing was out there like it (baby step by step stuff:). Let me

RE: Validation using mask

2003-11-13 Thread Ramadoss Chinnakuzhandai
when attempt to try this with other field its working fine()...Any Idea? Has anyone ever experienced such problem in validation ?? -Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Wednesday, November 12, 2003 4:46 PM To: Struts Users Mailing List Subject: RE: Validation

RE: Validation using mask

2003-11-13 Thread Ramadoss Chinnakuzhandai
is the cause but seems still look very hard for me to find out the following problem... :) -Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Thursday, November 13, 2003 9:54 AM To: Struts Users Mailing List Subject: RE: Validation using mask when attempt to try

RE: validation

2003-11-12 Thread Ramadoss Chinnakuzhandai
field property=txtField1 depends=requiredif arg0 key=form.txtField1/ var var-namefield[0]/var-name var-valuecheckBox/var-value

Validation using mask

2003-11-12 Thread Ramadoss Chinnakuzhandai
Sorry for posting my prev question again... In my form I'm validating a TextField hostname in order to accept only ^[0-9a-zA-Z-\.]*$ in its input value using mask pattern in validation.xml. field property=hostname depends=required,mask,minlength,maxlength arg0 key=form.hostname/

RE: Validation using mask

2003-11-12 Thread Ramadoss Chinnakuzhandai
Any suggestions or ideas for the below mail would be greatly appreciated. Tnx in advance, -Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Wednesday, November 12, 2003 10:18 AM To: [EMAIL PROTECTED] Subject: Validation using mask Sorry for posting my prev question again

RE: Validation using mask

2003-11-12 Thread Ramadoss Chinnakuzhandai
\.]*$ Saul -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 3:09 PM To: Struts Users Mailing List Subject: RE: Validation using mask Any suggestions or ideas for the below mail would be greatly appreciated. Tnx in advance, -Ram

RE: Validation using mask

2003-11-12 Thread Ramadoss Chinnakuzhandai
Try take out the - before \., ie. Use: ^[0-9a-zA-Z\.]*$ Saul -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 3:09 PM To: Struts Users Mailing List Subject: RE: Validation using mask Any suggestions or ideas for the below

Struts-Validation Error

2003-11-11 Thread Ramadoss Chinnakuzhandai
Hi, I need to accept .(dot) as part of input value. While trying to test it does not accept . in the input entry. Any idea how to make it accept . character in the validation pattern. following is the validation pattern for that field in validation.xml form name=AvailabilityForm

RE: Struts-Validation Error

2003-11-11 Thread Ramadoss Chinnakuzhandai
var-value^[0-9a-zA-Z-\.]*$/var-value /var /field Guide me where I'm doing wrong or how to resolve this. Tnx in advance, -Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Tuesday, November 11, 2003 3:18

RE: Struts-Validation

2003-11-06 Thread Ramadoss Chinnakuzhandai
Subject: Re: Struts-Validation Ramadoss Chinnakuzhandai wrote: yesI should restrict the user to enter both fields i.e they should enter anyone of the fields and not both. These option I think is to use the validate method in your ActionForm and then first call your validation framework

Nightly Build

2003-11-06 Thread Ramadoss Chinnakuzhandai
Hi, Can anybody let me know how can I integrate *Nightly Build* to my application if possible pls let me know the steps involved.since I'm going for validwhen. Tnx in advance. -Ram - To unsubscribe, e-mail: [EMAIL

RE: Nightly Build

2003-11-06 Thread Ramadoss Chinnakuzhandai
: Thursday, November 06, 2003 1:42 PM To: Struts Users Mailing List Subject: RE: Nightly Build Ramadoss Chinnakuzhandai wrote: Can anybody let me know how can I integrate *Nightly Build* to my application if possible pls let me know the steps involved.since I'm going for validwhen. Download

RE: Javascript question...

2003-11-05 Thread Ramadoss Chinnakuzhandai
Try this simple... document.write('select NAME='+optionName+''); document.write('option value=yearYear/option'); for (var i=(year-4);i(year+4);i++ ) { document.write('option value=' + i +'' + i+'/option'); if(i==defaultValue) {

Struts-Validation

2003-11-05 Thread Ramadoss Chinnakuzhandai
Hi, I hv two fields field1 and field2 1. If field1 is null while field2 is empty I should throw error message that anyone of the field is mandatoryI implemented using requiredif and its working fine. 2. when both fields are entered I should throw an error message that enter

RE: Struts-Validation

2003-11-05 Thread Ramadoss Chinnakuzhandai
a self-contradiction if you want to use them at the same time. You will need to write your own validation for that. -Original Message- From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: November 5, 2003 1:54 PM To: [EMAIL PROTECTED] Subject: Struts-Validation Hi, I

RE: Beginner Struts

2003-11-04 Thread Ramadoss Chinnakuzhandai
-Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 5:26 PM To: Struts Users Mailing List Subject: Re: Beginner Struts Ramadoss Chinnakuzhandai wrote: Can anybody suggest which is the best book for beginner to understand Struts1.1

Javadoc Warning

2003-11-03 Thread Ramadoss Chinnakuzhandai
Hi, I getting the following warning while generating Javadoc from ant build file.. [javadoc] initialize application beans [javadoc] 1. [javadoc] This sentence is different from what would be generated using -breakiterator: [javadoc] initialize application beans [javadoc] 1.

RE: Javadoc Warning

2003-11-03 Thread Ramadoss Chinnakuzhandai
could you pls explain... -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 1:59 PM To: [EMAIL PROTECTED] Subject: Re: Javadoc Warning Yes. [EMAIL PROTECTED] 11/03/03 11:56 AM Hi, I getting the following warning while

RE: Javadoc Warning

2003-11-03 Thread Ramadoss Chinnakuzhandai
if you know how to solve this problem pls let me know tnx in advance ~Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Monday, November 03, 2003 2:34 PM To: Struts Users Mailing List Subject: RE: Javadoc Warning could you pls explain... -Original Message

RE: Serializing objects in session

2003-11-03 Thread Ramadoss Chinnakuzhandai
Can anybody suggest which is the best book for beginner to understand Struts in a easyway. Tnx -Ram -Original Message- From: Derek Richardson [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 4:32 PM To: Struts Users Mailing List Subject: Serializing objects in session Is

RE: Serializing objects in session

2003-11-03 Thread Ramadoss Chinnakuzhandai
sorry for posting my prev msg here...I apologize for that. -Original Message- From: Ramadoss Chinnakuzhandai Sent: Monday, November 03, 2003 4:45 PM To: Struts Users Mailing List Subject: RE: Serializing objects in session Can anybody suggest which is the best book for beginner

Beginner Struts

2003-11-03 Thread Ramadoss Chinnakuzhandai
Hi, Can anybody suggest which is the best book for beginner to understand Struts1.1 in a easy approach...? Appreciate your time, -Tnx, Ram - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Debug output

2003-11-03 Thread Ramadoss Chinnakuzhandai
Try set Threshold level to higher in your root logger or log4j.properties/xml file(Levels FatalErrorWarnInfoDebug). -Ram -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 5:06 PM To: 'Struts Users Mailing List' Subject: Debug output How do

RE: Requiredif error?

2003-10-31 Thread Ramadoss Chinnakuzhandai
Try var-namefieldTest[0]/var-name -Original Message- From: Greg Hess [mailto:[EMAIL PROTECTED] Sent: Saturday, October 25, 2003 12:21 PM To: Struts Subject: Requiredif error? Hi All, I get the following error when I submit my form using the requiredif: 25 Oct 2003 12:03:13,311 -

RE: [OT] JSP code formatting/indentation

2003-10-27 Thread Ramadoss Chinnakuzhandai
JSP code editors/beautifiers and integration into eclipse Editor plug-in in eclipse for better viewing and editing of JSP and xml files. You can download from http://gd.tuwien.ac.at/opsys/linux/sf/subcat/cli/solareclipse/ (net.sf.solareclipse.jsp.ui_0.4.0) Also

RE: Role based action

2003-10-22 Thread Ramadoss Chinnakuzhandai
21, 2003 4:52 PM To: Struts Users Mailing List Subject: Re: Role based action On 10/21/2003 07:51 PM Ramadoss Chinnakuzhandai wrote: Hi, I need to load some jsp pages based on different level of access control who are accessing the site. for eg for userA I need

RE: HAPPY DIWALI!

2003-10-22 Thread Ramadoss Chinnakuzhandai
Great translation Shishir. -Ram -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 9:49 AM To: [EMAIL PROTECTED] Subject: RE: HAPPY DIWALI! Hi All before people start cursing over the beautiful festival of Deepawali its something

RE: Role based action

2003-10-22 Thread Ramadoss Chinnakuzhandai
:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 4:52 PM To: Struts Users Mailing List Subject: Re: Role based action On 10/21/2003 07:51 PM Ramadoss Chinnakuzhandai wrote: Hi, I need to load some jsp pages based on different level of access control who

User Authentication implemented in Struts

2003-10-22 Thread Ramadoss Chinnakuzhandai
apologize for repeating my question againI'm newbie to Struts and hv basic doubt in security level implemented using Struts framework. we are aware that in normal J2EE application we are authenticating user based on user access level specified in web-app in web.xml(web container) My

Role based action

2003-10-21 Thread Ramadoss Chinnakuzhandai
Hi, I need to load some jsp pages based on different level of access control who are accessing the site. for eg for userA I need to show some pages while userB can only view/access few pages. Thanks in advance, -Ram -

Access control in Struts

2003-10-21 Thread Ramadoss Chinnakuzhandai
Hi, I'm new to struts,I need to load some jsp pages based on different level of access control who are accessing the site. for eg for userA I need to show some pages while userB can only view/access few pages. Thanks in advance, -Ram -Original Message- From: Barry Volpe

RE: Access control in Struts

2003-10-21 Thread Ramadoss Chinnakuzhandai
I just wanted to know how to achieve it using Struts. Any clue? -Ram -Original Message- From: Ramadoss Chinnakuzhandai Sent: Tuesday, October 21, 2003 1:54 PM To: Struts Users Mailing List Subject: Access control in Struts Hi, I'm new to struts,I need to load some jsp pages

RE: Role based action

2003-10-21 Thread Ramadoss Chinnakuzhandai
-Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 4:52 PM To: Struts Users Mailing List Subject: Re: Role based action On 10/21/2003 07:51 PM Ramadoss Chinnakuzhandai wrote: Hi, I need to load some jsp pages based on different level