Struts and Workflow

2003-07-11 Thread Mike Duffy
I think that Struts and the MVC architecture could be used to create a basic workflow system. A WorkflowState object would represent the state of items in the workflow (current assignment, current status, and other attributes). A WorkflowRights object would represent a user's right to view or

Re: Using JSTL tags instead of Struts tags

2003-07-11 Thread Adam Hardy
I've never been a fan of having SQL tags (especially the updating ones) in JSTL, for all the obvious reasons. However, there are a whole bunch of developers in the world who are used to model 1 style development (VB, PHP, PERL, Cold Fusion, ...), and it would not be fair for expert groups to

Populating form from request parameters in JSP

2003-07-11 Thread Ajay Patil
Hello, I know this question has probably been asked several times. But, possibly a Struts developer can explain because I am confused. Generally, my action classes receive posted data, query the database, put the query result as request attribute and then forward to the next JSP. However, I

Re: Struts and Workflow

2003-07-11 Thread Mike Duffy
The reason I posted a message on workflow to this group is because there were a few brief postings on the subject earlier in the week. Also, as a point of clarification, the WorkflowRights object is needed to keep business logic out of the view. A display decision is made based on rights and not

Re: Dynamically generated form

2003-07-11 Thread Ajay Patil
Dear Ravi, Use indexed properties... I am pasting some basic code for you. Hope it helps, Ajay JSP Page html:form name=TestForm type=test.TestForm action=/test logic:iterate name=TestForm property=indexedBeans id=indexedBeans !-- Please note that id in logic:iterate tag

Re: Populating form from request parameters in JSP

2003-07-11 Thread Nagendra Kumar O V S
hi, your two jsp pages have different action forms associated with them. so u cant expect the second jsp page to autopupulate the previous request parameters. u have to go thro' the struts thing(action class) which will then autopopulate ur new action form

Use subclass or ResourceBundle in Struts

2003-07-11 Thread Duan Qiang
Hi, I need to use a subclass of resourceBundle to allow dynamic loading of message changes and other requirements, so the default implementation does not fit my needs. Here is what I have done but it does not work. 1) define a class of test.MyResourceBundle extends ResourceBundle 2) define the

Re: Using JSTL tags instead of Struts tags

2003-07-11 Thread Laurent PETIT
From: Mark Lowe [EMAIL PROTECTED] I'd be interested in any research comparing the readability of the two and seeing which site builders prefer. logic:iterate or c:forEach [...] but I confess I'm more concerned with writing code for humans rather than compilers. I tend to use

Does multiple modules work?

2003-07-11 Thread ben
Hi there, Question: Has anyone successfully worked with multiple modules? I experience quite some problems, see below. Cheers Ben -Original Message- From: ben [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8. Juli 2003 02:54 To: 'Struts Users Mailing List'; 'Jing Zhou' Subject: Linking

Validator Framework and Business Objects

2003-07-11 Thread Jens v . P .
Hello, I'm currently working on a framework for a special kind of web-applications. These applications all require some questionnaires. These questionnaires are defined using a bundle of business objects. These business classes include logic for validating user input values. The validator

J2EE DAO Pattern Connection Pooling (struts-newbie)

2003-07-11 Thread jan . sandholm
Hello, I'm planning an application for Lotus Domino that (hopefully) will be ported to Tomcat/Struts too (MySQL/PostgreSQL). I'm trying to apply J2EE DAO Pattern to hide db specific stuff (testing the concept). J2EE DAO Pattern implies: package dao; import java.sql.Connection; import

RE: JSTL Book

2003-07-11 Thread Mark Galbreath
Just tryin' to keep the conversation lively ;-) -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 7:52 PM But I can see that Mark's in Friday mode already, so it's time to go back to not paying attention to his remarks. Craig

Re: Populating form from request parameters in JSP

2003-07-11 Thread Ajay Patil
Thanks Nagi, Atleast I know that I am not doing something wierd. Anyway, why does the JSP page care about the origin of the forward. Why cant it simply autopopulate the form from request parameters ? Defining an extra action class just to do the forward seems to unnecessarily increase

Refreshing Issue.

2003-07-11 Thread Anurag Garg
Hi All, I am facing a problem in jsp page refreshing. After submitting the page to add a new record in the database, I again display the same page with the added record in the list. Now If I press F5 (I am not clicking the ADD button) it again adds a new record(duplicate record) in the database,

RE: [FRIDAY] Old news already but amusing...

2003-07-11 Thread Mark Galbreath
what an asshole! -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11:15 PM To: Struts Subject: [FRIDAY] Old news already but amusing... http://www.wired.com/news/politics/0,1283,59305,00.html

Re: Using JSTL tags instead of Struts tags

2003-07-11 Thread Mark Lowe
On Thursday, July 10, 2003, at 09:21 PM, David Geary wrote: On Thursday, Jul 10, 2003, at 08:29 America/Denver, Mark Lowe wrote: I started using JSTL but found that it encouraged site builders to start embedding logic in JSP's. While I can see that JSLT is more powerful, isn't it true to say

Re: Refreshing Issue.

2003-07-11 Thread Mark Lowe
redirect=true where you define your forward. //in your action return (mapping.findForward(good)); //Struts-config forward name=good path=/myPage.jsp redirect=true/ HTH mark On Friday, July 11, 2003, at 11:07 AM, Anurag Garg wrote: Hi All, I am facing a problem in jsp page refreshing. After

RE: Refreshing Issue.

2003-07-11 Thread Ravi Garg
Dear Anurag, This is a general problem. Actually when you refresh your page then the previous action which has called this page(which is in this case this page it self) is again submitted. And this previous page is taken from the history of your computer. To prevent this you can do one

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

2003-07-11 Thread sriram
I'm using html:image to submit a page. It works fine in IE, but not in Netscape 4.7. Did anybody face this issue before?

Re: Refreshing Issue.

2003-07-11 Thread Mark Lowe
opps.. you may loss what it is your displaying if your putting it in the request.. in which case ..this is the action that lists all your records... action path=/displayList type=com.sparrow.struts.DisplayListAction... //your forward then recalls the original action forward name=good

RE: [FRIDAY] Old news already but amusing...

2003-07-11 Thread Andrew Hill
Hehe, but before you yanks try to claim the credit for having the least internet-savvy senators, check out this bloke - labeled worlds biggest luddite by The Register (now theres a title you have to work hard to earn!) http://www.theregister.co.uk/content/archive/17941.html Ill bet your Senator

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 sriram
Title: 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, July 11, 2003 4:23 PM To: Struts Users Mailing List Subject: Re: html:image doesn't submit the page

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

2003-07-11 Thread Mark Lowe
Providing validations.js would also be useful.. On Friday, July 11, 2003, at 11:49 AM, sriram wrote: Firat The source is attached. Sriram -Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 4:23 PM To: Struts Users Mailing List Subject: Re:

struts-blank.war basedir

2003-07-11 Thread Andy Pahne
hi, when I had a look into struts-blank.war (Struts 1.1) I found that the ${basedir} in the supplied build file is set to /WEB_INF/. I would have set it to the directory below WEB-INF, so that index.jsp or the pages folder also is part of the project. Maybe I am wrong, but I simply cannot

Re: struts-blank.war basedir

2003-07-11 Thread Mark Lowe
Andy I think that putting your jsp's in /WEB-INF is considered better nowadays cos nobody can make a direct request for it.. This means all requests are mediated by actions and thus there's no exposure to the underlying file structure.. I remember that there were a lot o debates on this, but

how to populate drop down list

2003-07-11 Thread Ravi Garg
Hi all, How can I populate dropdown list from form bean? What is the structure of getter and setter methods required? Actually the values of drop down list are coming from database which gets populated into the form bean now from form bean how can that be populated in dropdown

JBoss Problem

2003-07-11 Thread Kristanto Oetomo
I got the following error when I tried to start the service: Could not start the JBoss30 service on Local Computer. The service did not return an error. This could be an internal Windows Error or an internal service error. If the problem persists, contact your system administrator. I have

Re: Different actionforms pointing to the same action ?????

2003-07-11 Thread Ted Husted
I often use coarse-grained ActionForms that can serve a number of related actions. In practice, a common set of properties are used by different actions at different times. The difference is that each action will often have its own way of validating a subset of these properties. If you are

RE: how to populate drop down list

2003-07-11 Thread James Childers
How can I populate dropdown list from form bean? What is the structure of getter and setter methods required? Actually the values of drop down list are coming from database which gets populated into the form bean now from form bean how can that be populated in dropdown list?

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

2003-07-11 Thread Firat TIRYAKI
RE: html:image doesn't submit the page in netscape???It seems that you don't have the function preSubmit , instead you have a function named selpreSubmit. try writing javascript: in the addressbar in netscape, you will see the error console tells you what's wrong with the script you wrote. F.

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

2003-07-11 Thread sriram
Title: RE: html:image doesn't submit the page in netscape??? Validations.js (in .txt format) is attached.. -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED]] Sent: Friday, July 11, 2003 4:37 PM To: Struts Users Mailing List Subject: Re: html:image doesn't submit the page

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

2003-07-11 Thread sriram
preSubmit() code is given below: function preSubmit(form, action_value) { alert(form); alert(action_value); document.forms[0].lrAction.value=action_value; selPreSubmit(); //form.submit(); } // end of preSubmit -Original Message- From: Firat TIRYAKI [mailto:[EMAIL PROTECTED]

[FRIDAY] It's Friday on IRC!

2003-07-11 Thread Mark Galbreath
#struts_users irc.darkmyst.org 6667 Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

2003-07-11 Thread Firat TIRYAKI
Use eval() function while constructing a form element by the function parameter given. may be netscape takes them as strings not objects. F. - Original Message - From: sriram [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:27 PM Subject:

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

2003-07-11 Thread Mark Lowe
My apologies for not responding sooner... And I wont have time to look at this in detail.. But image submit buttons behave differently on NS4 to other browsers.. My quickest suggestion is to use a link to call your onclick function.. It was a while ago when i encountered this and the details

RE: [FRIDAY] Old news already but amusing...

2003-07-11 Thread Davidson, Glenn
Those who live in glass houses. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 6:16 AM To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: [FRIDAY] Old news already but amusing... what an asshole! -Original Message-

Struts 1.1 - struts-config_1_1.dtd not found

2003-07-11 Thread sriram
Did any one face this problem before? I'm trying to migrate from struts 1.0 to 1.1. java.util.zip.ZipException: oversubscribed dynamic bit lengths tree 18:39:05,316 ERROR [ActionServlet] Parsing error processing resource path java.io.FileNotFoundException: JAR entry

Re: Re-Population of form parameters after nn error has occured

2003-07-11 Thread Sandeep Takhar
I may be naive, but I don't know why you are using type here: html:form action=/company/OrganisationNameSearch name=company.OrganisationNameSearch type=net.natdata.application.itf.insolvency.company.OrganisationNameSearchActionForm sandeep --- Rodney Paul [EMAIL

RE: Using JSTL tags instead of Struts tags

2003-07-11 Thread Davidson, Glenn
Please tell me that this is the start of a new urban legend and a joke. There are people who like Dog food coding (see PHP, Perl) but this should not be used as an excuse to pollute what Struts stands for. I understand that you want to increase the acceptance of Struts but history has shown that

RE: Refreshing Issue.

2003-07-11 Thread Ravi Kora
Hi, This is a common problem and have a look at the 'Synchronizer Token' J2EE pattern for more details. Below I am pasting the URL where the problem is elucidiated. http://www.javaworld.com/javatips/jw-javatip136_p.html HTH, Ravi Kora -Original Message- From: Ravi Garg [mailto:[EMAIL

Re: best way to build a wizard

2003-07-11 Thread Sandeep Takhar
Personally I don't think there is anything wrong with having multiple mappings. You are doing the right thing by mapping to the same action and form. The jsp can define the action individually. After reading Ted's book I think of mappings and actions as just presentation layer components that

Re: Struts 1.1 - struts-config_1_1.dtd not found

2003-07-11 Thread ville . kaseva
I've seen it, still looking for solution. I get the error when trying to move my web app to the service providers server. Same app works fine with my tomcat 4.1.x Struts 1.1b2. I checked struts.jar and there is struts-config_1_1.dtd. Ville Did any one face this problem before? I'm trying

Re: (RE-POST) RE: using getInputForward vs new ActionForward(mapping.getInput())

2003-07-11 Thread Sandeep Takhar
there is a way you won't like and I don't like either. have the input point to a mapping that is exactly the same and has a different parameter. Change the action to check for it and just render the jsp. sandeep --- Adam Levine [EMAIL PROTECTED] wrote: nothing asked, nothing answered..

Re: DefinitionDispatcherAction problem

2003-07-11 Thread Sandeep Takhar
sorry can't help much, but I looked at the code and it didn't make sense to me and I'm probably missing something. At the end of the method it says ..[forward to success, but this isn't used].. the one second glance seems to indicate that it would be?? sandeep --- ale bra [EMAIL PROTECTED]

Re: struts-blank.war basedir

2003-07-11 Thread Andy Pahne
hi, thanks. I get the point with pages being positioned below /WEB-INF/ to enforce security and the usage of controler components. But that is not the case with struts-blank.war: the /pages folder is not inside /WEB-INF/ and I can also call pages in /pages directly, like:

Netscape problem

2003-07-11 Thread Gandle, Panchasheel
May be this is off the topic struts, but in new netscape 7 and above, if the remember password is enabled by a user. All the other password fields do come with password *. we have some other password fields too on our site, which are different from login-password. has anyone solved this in

retention of the ActionForm values for display only fields

2003-07-11 Thread Brahme, Supriya \(ENJ\)
Hi all I have a scenario where I am displaying user profile details on the page using UserProfileForm which extends ValidateForm. I am displaying all the personal details like address, phone, credit card etc as editable fields using html: text tag. While only user name appears as display only

Re: JBoss Problem

2003-07-11 Thread James Mitchell
You might try asking on the JBoss Users list. -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: Kristanto Oetomo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 11, 2003 7:19 AM Subject:

Re: [OT] Struts Developers Needed

2003-07-11 Thread James Mitchell
Actually, I believe the scale is more accurately portrayed like this: Quality % 100 | xxx 90 | xx 80 |x x x 70 | x 60 | x 50 | x 40 | x 30 | x 20 |

RE: retention of the ActionForm values for display only fields

2003-07-11 Thread Sri Sankaran
Since the name fields are non-form fields they are not submitted and hence are not part of the request. Therefore, when validation fails, there is nothing to send back to the browser. Sri -Original Message- From: Brahme, Supriya (ENJ) [mailto:[EMAIL PROTECTED] Sent: Friday, July 11,

RE: Netscape problem

2003-07-11 Thread Mark Galbreath
You should have implemented single sign-in in the first place. Mark -Original Message- From: Gandle, Panchasheel [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:16 AM To: 'Struts Users Mailing List' Subject: Netscape problem May be this is off the topic struts, but in new

RE: retention of the ActionForm values for display only fields

2003-07-11 Thread Sri Sankaran
If you really want to stay with request scope, a (hacky) way around it would be to have the names as hidden form fields as well. Sri -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:49 AM To: Struts Users Mailing List Subject: RE: retention

img tag

2003-07-11 Thread Raphaël di Cicco
Hi, I'm using Struts 1.1 with modules. I want to use the page attribute of html:img but without struts genrating the module name. For instance: I'm in a JSP page inside the module administration let's say I want to display an image called image.gif in directory img: html:img page=/img/image.gif

Re: img tag

2003-07-11 Thread Raphaël di Cicco
Any solution to this problem with using src ? Sorry read WITHOUT ! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: retention of the ActionForm values for display only fields

2003-07-11 Thread Brahme, Supriya \(ENJ\)
Thanks Srini.That means the ActionForm has to be in session scope to achieve this. Right? -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:49 AM To: Struts Users Mailing List Subject: RE: retention of the ActionForm values for display only

RE: Netscape problem

2003-07-11 Thread Gandle, Panchasheel
The password on other pages are not of the same user as the one who logs in Thanks Panchasheel -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:51 AM To: 'Struts Users Mailing List' Subject: RE: Netscape problem You should have

Re: Using JSTL tags instead of Struts tags

2003-07-11 Thread Mark Lowe
I'm familiar with the tech idiom dog-food .. but I have no idea what it is you're talking about please can you explain what you understand by dog-food coding? If your saying what I think you are are you sure you're not choking on some? On Friday, July 11, 2003, at 02:36 PM, Davidson, Glenn

Struts, search, and approval...

2003-07-11 Thread Gregory F. March
First a quick note. It seems that searching of the struts list archive is not working. A search for forward in the body is returning zero results. I think there should be just a few hits for that one. :-) Next, I have developed a POC for a product I'm working on. However, struts is not

Ann: new release of bP

2003-07-11 Thread Vic Cekvenich
A new build of bP Jasic v9.7_3 was released. bP is a Struts CMS app, that requires a DB to run. It uses JSTL 1.1 (not 1.03), which requires JSP 2.0 (Tomcat 5 AND Resin 3 included). Also three are few new newsgroups added to new.baseBeans.com (new: Oracle, MS SQL, C#, old are JDO, Eclipse,

need help with nested:iterate tag -- NullPointerException

2003-07-11 Thread Wes Rood
Hi I was trying to convert a logic:iterate into a nested:iterate and I'm getting a NullPointerException. First off, the Action is adding a List to the request like this: request.setAttribute(courseProviderList, theList); and the JSP is successfully iterating through the objects using

Re: Does multiple modules work?

2003-07-11 Thread Martin Cooper
ben [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi there, Question: Has anyone successfully worked with multiple modules? I experience quite some problems, see below. Yes, modules work. I use them extensively. You do need to make sure that you *always* go through the

[FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Jing Zhou
No eye deer. (No idea :-) What do you call a dead deer without eyes?

Re: how to populate drop down list

2003-07-11 Thread Qasim Khawaja
Is that the Action or the ActionForm? If it is the Action when is it called prior to the display of the form and what is the entry point or means to determine that its a display form request as opposed to posting the html form? James Childers wrote: How can I populate dropdown list

Re: Struts, search, and approval...

2003-07-11 Thread Greg Reddin
Sun's Blueprints book makes mention of Struts when talking about MVC Frameworks. It's about as close to an endorsement as you can get. Greg Gregory F. March wrote: First a quick note. It seems that searching of the struts list archive is not working. A search for forward in the body is

access application scope object in execute

2003-07-11 Thread martin hablak
Hello, how can I access application scope object in Action's execute method? martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: retention of the ActionForm values for display only fields

2003-07-11 Thread Chen, Gin
Just use html:hidden property=blah write=true that will take care of retaining them as well as display them for you so that you dont need another html:write -Tim -Original Message- From: Brahme, Supriya (ENJ) [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:56 AM To: Struts Users

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread James Mitchell
Blinded deer (Blind dead deer) -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: Jing Zhou [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:23

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Mark Lowe
Brian ? On Friday, July 11, 2003, at 05:39 PM, James Mitchell wrote: Blinded deer (Blind dead deer) -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: Jing Zhou [EMAIL PROTECTED] To: Struts

RE: best way to build a wizard

2003-07-11 Thread Mathew, Manoj
I have a method which dynamically create my current form .I used this when i had one action on multiple forms and i gave only one mapping for the action and didn't give form name in the mapping. public static ActionForm createActionForm(HttpServletRequest request, ActionMapping mapping,

RE: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Chen, Gin
Dinner -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:41 PM To: Struts Users Mailing List Subject: Re: [FRIDAY] What do you call a deer without eyes? Brian ? On Friday, July 11, 2003, at 05:39 PM, James Mitchell wrote: Blinded deer

Re: access application scope object in execute

2003-07-11 Thread James Mitchell
On Friday 11 July 2003 12:24, martin hablak wrote: Hello, how can I access application scope object in Action's execute method? The same way you would do it in a servlet. martin - To unsubscribe, e-mail: [EMAIL

single signon and struts

2003-07-11 Thread Ashish Kulkarni
Hi, does anyonehave some info about single signon, i have developed project using struts 1.1, i have about 4 as400 which can be accessed, i was planning to put in place single signon, can anyone provide some links or info about it Ashish __ Do you Yahoo!? SBC

Declarative Exception Handling

2003-07-11 Thread Qasim Khawaja
I have defined an exception in the action mapping declaration but the ide I am using (eclipse) is insisting that I throw an exception or surround with a try catch. Am I missing something here? Q - To unsubscribe, e-mail:

Re: Declarative Exception Handling

2003-07-11 Thread David Graham
--- Qasim Khawaja [EMAIL PROTECTED] wrote: I have defined an exception in the action mapping declaration but the ide I am using (eclipse) is insisting that I throw an exception or surround with a try catch. Am I missing something here? Your code is potentially throwing an exception that you

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Jeff Kyser
On Friday, July 11, 2003, at 11:23 AM, Jing Zhou wrote: No eye deer. (No idea :-) What do you call a dead deer without eyes? I'll take a buck shot in the dark and guess 'worse than 20/20 venison'? - To unsubscribe, e-mail:

Strange Results of Validation

2003-07-11 Thread Hunter Hillegas
I have an ActionForm that contains a Collection of JavaBeans. The ActionForm validates some properties in the JavaBeans. The Collection uses a LazyList. If validation fails and I get pushed back to the entry page, I get an extra item displayed from my nested:iterate tags. For instance, if I

RE: single signon and struts

2003-07-11 Thread Gandle, Panchasheel
I guess it just means that once user logs in , you share the same login info wherever you go to the related sites, and if its valid , you don't have to do the authentication. check this site if it helps http://www-106.ibm.com/developerworks/webservices/library/ws-single/ Thanks Panchasheel

RE: need help with nested:iterate tag -- NullPointerException

2003-07-11 Thread Sri Sankaran
This subject is addressed by Arron in an earlier message (http://marc.theaimsgroup.com/?l=struts-userm=103848775020380w=2). Sri -Original Message- From: Wes Rood [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:15 PM To: [EMAIL PROTECTED] Subject: need help with nested:iterate

newbie question - setting form parameter in Javascript

2003-07-11 Thread Shyam A
Hi, I have an HTML form with Submit and Cancel buttons, and a drop down list, which when clicked submits the form. I use Javascript to submit the form when the dropdown list is clicked. I have a property called action defined in my ActionForm class that identifies the Submit and Cancel

[Struts-Atlanta] Next meeting

2003-07-11 Thread James Mitchell
As some of you may already be aware, the mid-month meeting (MDE Testdrive) scheduled for July 15th has been cancelled due to an unexpected business trip by our presenter David Zygmont. However, we are still on for the JSTL presentation by Bill Siggelkow on July 29, 2003. I haven't updated the

RE: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Gandle, Panchasheel
Eye Opener for not to look at such questions Panchasheel -Original Message- From: Jeff Kyser [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 1:03 PM To: Struts Users Mailing List Subject: Re: [FRIDAY] What do you call a deer without eyes? On Friday, July 11, 2003, at

RE: retention of the ActionForm values for display only fields

2003-07-11 Thread Brahme, Supriya \(ENJ\)
Thanks Gin. -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:29 PM To: 'Struts Users Mailing List' Subject: RE: retention of the ActionForm values for display only fields Just use html:hidden property=blah write=true that will take care of

Re: newbie question - setting form parameter in Javascript

2003-07-11 Thread James Mitchell
You will need to create a hidden field named action, with a value of Lookup: html:hidden property=action value=Lookup/ My question to you iswhy Lookup? What does that have to do with your form? Here's a sample: SCRIPT language=JavaScript function submitForm(form) {

Struts 1.1 Doc question

2003-07-11 Thread Goel Shalab
Hello Everyone I was wondering if there was a way for downloading the HTML as a package for User and Developer Guides for Struts 1.1. Also, is there a plan for having these guides in alternate printable format -- as a single document -- like Acrobat PDF or Microsoft Word. Appreciate your

Re: Struts 1.1 Doc question

2003-07-11 Thread James Mitchell
On Friday 11 July 2003 14:40, Goel Shalab wrote: Hello Everyone I was wondering if there was a way for downloading the HTML as a package for User and Developer Guides for Struts 1.1. Yes, the binary comes with struts-documentation.war, which is the complete documentation that used for the

RE: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Mark Galbreath
deer doesn't have is -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:43 PM To: 'Struts Users Mailing List' Subject: RE: [FRIDAY] What do you call a deer without eyes? Dinner -Original Message- From: Mark Lowe [mailto:[EMAIL

Re: Struts 1.1 Doc question

2003-07-11 Thread Ted Husted
James Mitchell wrote: Something is in the works for PDF, but I'm not sure of the status. If you need it for MS Word, that's not going to happen any time soon. It's all in XML, so something that can do XML to PDF and be called from Ant could be made part of the build process. -Ted. -- Ted

RE: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Bailey, Shane C.
What do you call a fish with two knees? A two knee fish! (Tunafish!) -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:49 PM To: 'Struts Users Mailing List' Subject: RE: [FRIDAY] What do you call a deer without eyes? deer doesn't have

Re: Struts 1.1 Doc question

2003-07-11 Thread Goel Shalab
Hello Ted, If it can become part of the build process.. it will be great.. and highly appreciated. -Shalab At 02:51 PM 7/11/2003 -0400, Ted Husted wrote: James Mitchell wrote: Something is in the works for PDF, but I'm not sure of the status. If you need it for MS Word, that's not going to

Re: Struts 1.1 Doc question

2003-07-11 Thread James Mitchell
On Friday 11 July 2003 14:51, Ted Husted wrote: James Mitchell wrote: Something is in the works for PDF, but I'm not sure of the status. If you need it for MS Word, that's not going to happen any time soon. It's all in XML, so something that can do XML to PDF and be called from Ant could

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread James Mitchell
On Friday 11 July 2003 14:43, Bailey, Shane C. wrote: What do you call a fish with two knees? A two knee fish! (Tunafish!) Oh my God, I can't believe I actually laughed at that .(smack forehead) :P -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Vinay
knee fish - Original Message - From: Bailey, Shane C. [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:43 PM Subject: RE: [FRIDAY] What do you call a deer without eyes? What do you call a fish with two knees? A two knee fish!

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Mark Lowe
whats got 2 legs and bleeds a lot? On Friday, July 11, 2003, at 07:43 PM, Bailey, Shane C. wrote: What do you call a fish with two knees? A two knee fish! (Tunafish!) -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:49 PM To: 'Struts

Best Way to Combine Validated Input and Pre-Population?

2003-07-11 Thread Hunter Hillegas
I have an ActionForm that contains a Collection of JavaBeans. The ActionForm validates some properties in the JavaBeans in its validate() method. The Collection uses a LazyList. There is an Action that pre-populates *some* of the form fields from a database. Other fields are empty and need to be

Re: newbie question - setting form parameter in Javascript

2003-07-11 Thread Shyam A
James, Thanks for your mail. I guess I need to elaborate a little bit. My HTML form can be submitted in 2ways. 1. Clicking the Submit button. 2. Clicking the drop-down Clicking the drop-down triggers a different action than clicking the Submit button. Selecting a value in the drop-down would

Xdoclet

2003-07-11 Thread Saman Ghodsian
Hi everyone, Just starting with struts, I'm looking for xdoclet for struts, where I can put attributes on my model source code and it will generate all the Action, form, etc and xml files for me. Any ideas? Pointers appreciated.. Saman Ghodsian CTO Middle Earth Technologies Ltd.

Re: [FRIDAY] What do you call a deer without eyes?

2003-07-11 Thread Vinay
Is the blood red - Original Message - From: Mark Lowe [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:58 PM Subject: Re: [FRIDAY] What do you call a deer without eyes? whats got 2 legs and bleeds a lot? On Friday, July 11, 2003, at

Re: Xdoclet

2003-07-11 Thread Erik Price
Saman Ghodsian wrote: Hi everyone, Just starting with struts, I'm looking for xdoclet for struts, where I can put attributes on my model source code and it will generate all the Action, form, etc and xml files for me. Any ideas? Pointers appreciated..

RE: Xdoclet

2003-07-11 Thread Alex Shneyderman
They are subtasks of ejbdoclet (strutsform) and webdoclet's strutsconfigxml and strutsvalidationxml you can find appropriate tag descriptions in the docs for those modules. -Original Message- From: Saman Ghodsian [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 3:02 PM To:

  1   2   >