RE: Help on struts

2004-03-26 Thread Shoaib
Thanks for your guidance. You are right , we are in the case where user will come back from search page. I will try as you suggested and give feedback. Regards Shoaib I guess the first thing to consider is what you mean by come back to the previous page. Do you just mean have the user

RE: Help on struts

2004-03-13 Thread Andrew Hill
I guess the first thing to consider is what you mean by come back to the previous page. Do you just mean have the user redirected back to that url when they have finished playing with the search? or is it more complex. For example the previous page is a form, and they are halfway through filling

RE: help about struts

2004-03-11 Thread Leticia Golubov
This is where I started: Read Struts In Action (Published by Manning) book. http://www.manning.com/husted/index.html Resources: http://jakarta.apache.org/struts/ http://jakarta.apache.org/index.html -Original Message- From: EROL TEZCAN [mailto:[EMAIL PROTECTED] Sent: 11 March 2004

Re: Help on Struts- Tiles Tab

2003-10-20 Thread Lim Huat Heng
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, October 17, 2003 3:08 AM Subject: RE: Help on Struts- Tiles Tab I believe you forgot the class part of your items: should be definition name=asset.detail.tabs.body path=/jsp/tabsLayout.jsp put name=selectedIndex

RE: Help on Struts- Tiles Tab

2003-10-16 Thread Yann Lebreton
I believe you forgot the class part of your items: should be definition name=asset.detail.tabs.body path=/jsp/tabsLayout.jsp put name=selectedIndex value=0/ put name=parameterName value=selected/ putList name=tabList item value=Search Asset

RE: Help Wanted, Struts Translate to Russian, Portuguese, etc

2003-07-14 Thread Yansheng Lin
I am not sure what is involved in this project? Are you translating the Struts Documentation to different languages? -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Vic Cekvenich Sent: July 13, 2003 8:20 PM To: [EMAIL PROTECTED] Subject: OT: Help Wanted, Struts

Re: Help Required Struts and iPlanet Web Server 4.1 sp7

2002-12-27 Thread mxranga
I use iPlanet 6.0 without any problems. According to Struts User Guide, iPlanet 4.1 doesn't support webapps and WAR file deployment. Check this link. http://jakarta.apache.org/struts/userGuide/installation-ip.html Thanks, Manju

Re: Help! Need Struts-El Library Compatible With Struts 1.1 B2

2002-12-10 Thread Brian Moseley
Hohlen, John wrote: P.S. If anyone has the 11/7 release of Struts-EL, I'd love it if they could send it to me. http://www.maz.org/struts/ -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Help! Need Struts-El Library Compatible With Struts 1.1 B2

2002-12-09 Thread Hohlen, John
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 8:35 PM To: Struts Users Mailing List Cc: '[EMAIL PROTECTED]' Subject: Re: Help! Need Struts-El Library Compatible With Struts 1.1 B2 On Fri, 6 Dec 2002, Hohlen, John wrote: Date: Fri, 6 Dec

RE: Help! Need Struts-El Library Compatible With Struts 1.1 B2

2002-12-09 Thread Hohlen, John
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 8:35 PM To: Struts Users Mailing List Cc: '[EMAIL PROTECTED]' Subject: Re: Help! Need Struts-El Library Compatible With Struts 1.1 B2 On Fri, 6 Dec 2002, Hohlen, John wrote: Date: Fri, 6 Dec

RE: Help! Need Struts-El Library Compatible With Struts 1.1 B2

2002-12-09 Thread Karr, David
of cvs appropriate for your platform. -Original Message- From: Hohlen, John [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:49 AM To: 'Struts Users Mailing List' Subject: RE: Help! Need Struts-El Library Compatible With Struts 1.1 B2 I guess I need a CVS lesson. Does

Re: Help! Need Struts-El Library Compatible With Struts 1.1 B2

2002-12-06 Thread Craig R. McClanahan
On Fri, 6 Dec 2002, Hohlen, John wrote: Date: Fri, 6 Dec 2002 07:58:14 -0600 From: Hohlen, John [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts-User (E-mail) [EMAIL PROTECTED] Cc: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Help! Need Struts-El Library

Re: Help with Struts + DB Access

2002-10-03 Thread Kevin . Bedell
Wendy - One approach I've used is: - Create (as it looks like you have) your form bean (that you refer to as the ActionForm extention) so you can set/get the properties using a collection. (eg, setDropdownValues(Collection values), etc.) - In your Action class, have

RE: Help with Struts + DB Access

2002-10-02 Thread Robert Taylor
Initializing the data: One solution would be to implement javax.servlet.ServletContextListener interface and define it in your web.xml. This is a type of bootstrap class for web applications. When it is invoked populate all of your static data and place it in the ServletContext where it is

RE: Help with Struts + DB Access

2002-10-02 Thread David Graham
is useless but it's just another way of looking at things. Dave From: Robert Taylor [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: Help with Struts + DB Access Date: Wed, 2 Oct 2002 21:26:09 -0400 Initializing

Re: Help on Struts Id

2002-06-26 Thread Craig R. McClanahan
On Wed, 26 Jun 2002, Chandra Sekharan Bhaskaran wrote: Date: Wed, 26 Jun 2002 17:55:51 +0530 From: Chandra Sekharan Bhaskaran [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Help on Struts Id How to use

RE: Help using Struts Logic tags.

2002-01-15 Thread Andrew B Forman
I've been using the session taglib http://jakarta.apache.org/taglibs/doc/session-doc/intro.html which would end up looking something like... session:existsAttribute name=KEY value=true session:equalsAttribute name=KEY matchTrue value=true // Some HTML goes here.

RE: Help using Struts Logic tags.

2002-01-15 Thread Keith Bacon
logic:equal name=KEY scope=session value=True /logic:equal not tested - done my best..watch the capitalisation! K. --- Andrew B Forman [EMAIL PROTECTED] wrote: I've been using the session taglib http://jakarta.apache.org/taglibs/doc/session-doc/intro.html which would end up looking

RE: Help - new struts user questions

2001-12-19 Thread Jon.Ridgway
Hi Tony, Sounds like you may have to do a bit more reading. Just to get you started. A web application is the code that you will write and deploy on jetty. I have not used jetty so I can't give specifics. But somewhere under the jetty install you will find a deployment directory. This is where

RE: Help with struts model

2001-11-26 Thread Alexander Jesse
Hi, to get some form-data to the server the links on top need to be form-buttons (if you do nat want to use javascript). In this case you would have one action per jsp-page. In that action you can process the the desired action ((say, for example, authorize the user, save...) and then use the

RE: Help with Struts and EJBS..

2001-09-25 Thread Peter Pilgrim
:47 CET Please respond to [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] cc: Subject: RE: Help with Struts and EJBS.. I need some serious help. I am a novice Java and Struts developer. I am trying to develope a prototype that will work with backend EJBS.. taken those 3

RE: Help with Struts and EJBS..

2001-09-25 Thread Peter Pilgrim
Message History From: Peter Pilgrim/DMGIT/DMG UK/DeuBa@DMG UK on 25/09/2001 10:49 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: RE: Help with Struts and EJBS.. With the delegation model approach, if I understand

RE: Help with Struts and EJBS..

2001-09-25 Thread Hans Gilde
eat more memory and processor than creating a value object. -Original Message- From: Peter Pilgrim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 7:46 AM To: [EMAIL PROTECTED] Subject: RE: Help with Struts and EJBS.. Yes he value object approach would work if you re

RE: Help with Struts and EJBS..

2001-09-25 Thread George, Carl
That's bad. You should have any data-loading in the form. It should be in the action. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 11:47 AM To: [EMAIL PROTECTED] Subject: RE: Help with Struts and EJBS.. Peter, I understand

RE: Help with Struts and EJBS..

2001-09-25 Thread Hicks, James
I usually use a standard javabean as a proxy into my ejbs. This approach allows you to modify the EJB layer without modifying your action/actionform classes. If you ever decided you didn't want the EJBs you could modify the javabean to use JDBC instead. I use my Action classes to process the

RE: Help with Struts and EJBS..

2001-09-24 Thread Barry Glasco
1) No, but it will work. Look at previous posts on how to properly implement. 2) Your form should have get and set methods? 3) Collection 4) None that I am aware of. -Original Message- From: Strichartz, Beth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 1:09 PM To: [EMAIL

RE: Help with Struts and EJBS..

2001-09-24 Thread Mike Dewhirst
I need some serious help. I am a novice Java and Struts developer. I am trying to develope a prototype that will work with backend EJBS.. taken those 3 into account, I think you really do need serious help. Not being funny, but usually people either working with other experienced developers

RE: Help with Struts and EJBS..

2001-09-24 Thread Strichartz, Beth
Thanks, My from has sets and gets. I will try to look for previous posted messages.. Beth. -Original Message- From: Barry Glasco [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 1:40 PM To: [EMAIL PROTECTED] Subject: RE: Help with Struts and EJBS.. 1) No, but it will work

RE: Help: Processing Struts tags in XSL output

2001-06-18 Thread Thane Eisener
Not sure if it's just a typo in the email but where's the tag terminator (/) ? e.g. bean:message key="workOrder.Market" / Thane -Original Message-From: Kapila, Ranjit [mailto:[EMAIL PROTECTED]]Sent: Monday, June 18, 2001 4:22 PMTo: '[EMAIL PROTECTED]'Subject: Help:

RE: Help: Processing Struts tags in XSL output

2001-06-18 Thread Kapila, Ranjit
]] Sent: Monday, June 18, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: Re: Help: Processing Struts tags in XSL output Hi Ranjit, I didn't follow what you said about including the bean:message tag directly (do you mean instantiating it from a scriptlet?) but usually when tags come through

RE: Help: Processing Struts tags in XSL output

2001-06-18 Thread Kapila, Ranjit
:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: Re: Help: Processing Struts tags in XSL output Hi Ranjit, I didn't follow what you said about including the bean:message tag directly (do you mean instantiating it from a scriptlet?) but usually when tags

Re: Help with struts-example...

2001-06-14 Thread Ryan Cornia
This makes much more sense now. However, I was looking at the Javadoc, and it appears PropertyUtils.copyProperties is deprecated. Is there other functionality somewhere to use to copy the properties from the form (where properties are all strings) to the data bean (where properties might be

Re: Help with struts-example...

2001-06-14 Thread Craig R. McClanahan
On Thu, 14 Jun 2001, Ryan Cornia wrote: This makes much more sense now. However, I was looking at the Javadoc, and it appears PropertyUtils.copyProperties is deprecated. Is there other functionality somewhere to use to copy the properties from the form (where properties are all strings) to

Re: Help with struts-example...

2001-06-13 Thread Craig R. McClanahan
On Wed, 13 Jun 2001, Ryan Cornia wrote: In the struts-example, there is an OrganizationForm, and an Organization bean. They have identical fields and getters and setters. Why is the logic duplicated in both places? Couldn't OrganizationForm extend Organization, or have a organization bean

RE: Help on struts on Unix.

2001-05-02 Thread Michael Wang
Title: RE: Help on struts on Unix. Thanks, that is the problem. I kill the process which is running on background. However when I use shutdown.sh, it does not shutdown the process. I will post if I find out what is going on. --Michael -Original Message- From: shunhui zhu

Re: Help on struts on Unix.

2001-05-01 Thread shunhui zhu
It seems you have another copy of Tomcat running, you may want to type ps to see the processes, and kill the old one. Or type shutdown.sh to shutdown the old Tomcat. Shunhui --- Michael Wang [EMAIL PROTECTED] wrote: On Unix, when I started tomcat by typing startup.sh, I got following