Re: SilverStream 3.5.2

2001-10-25 Thread Brian Holzer
You need to get into the 3.7 versions, and the more recent the better. [EMAIL PROTECTED] 10/24/01 06:08am NO -- Original Message -- From: Tim [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 24 Oct 2001 13:41:13 +0800 Hi, I'd like to inquire

Struts Sample Code Repository!!!

2001-10-25 Thread Hitesh Parashar
Hi Guys: Is there a place where I can get the exhaustive list of struts sample code? In particular, I am looking for following set of sample code / tutorial / How-TOs / user-guides: (1) Model involving entity EJB (CMP) and talking to Oracle database. (2) View involving table of dynamically

Help with message creating

2001-10-25 Thread Strichartz, Beth
I want to do this: logic:messagesPresent property=name font color=redbean:message key=errors.header//font ul html:messages id=message property=name libean:write name=message//li /html:messages /ul /logic:messagesPresent But, how do I add a message when I am

Poolman under Orion not working

2001-10-25 Thread Emilio Suarez
Hi all, Well, I have read some messages that indicate problems running Poolman under Tomcat 4. But here I am having problems running Poolman under Orion. I have a Struts application and I was using the connection pooling from Struts, but now I am changing it to Poolman. But the problem

Re: SilverStream 3.5.2

2001-10-25 Thread Brian Holzer
To those answering this Silverstream question: I am using 3.7.2 Has anyone else had any problems with the server creating a new session for each JSP you go to rather than maintaining one session? I am trying to save some objects in the session for use throughout my app, but a new session is

multiple params on link

2001-10-25 Thread MacKellar, Kimberly
I have an iterate tag and the body of this tag prints out a link to forward. I need to pass multiple parameters to the link one of which is a property of the current bean in the iteration. I tried doing the following : % java.util.HashMap args = new java.util.HashMap(2);

Re: Knowing where you came from

2001-10-25 Thread JEWeaver
Hi, It seems pretty common for applications to need some kind of what screen / logical function did the user get here from mechanism. I think it would be interesting to try to build an xml driven navigation tool that would work with struts forwardings / actions. The navigation bean could be

RE: SilverStream 3.5.2

2001-10-25 Thread Dmitri Colebatch
really? I've never used silverstream, but struts doesn't break any rules afaik... any idea what the problem is? (btw - I'm just an interested party, so dont spend time explaining it for my benefit if you dont want to!) cheers dim On Wed, 24 Oct 2001, George, Carl wrote: no -Original

submit button internationalization.

2001-10-25 Thread Mark Gordon
Has anyone come up with a cool way to internationalize a submit button using the html:submit tag? html:submit property=xmit value=%=org.apache.struts.util.RequestUtils.message(pageContext, org.apache.struts.action.Action.MESSAGES_KEY, org.apache.struts.action.Action.LOCALE_KEY,button.save)%

Re: Iterate and add Link

2001-10-25 Thread Dmitri Colebatch
Not sure if this will work, but try creating the map with a usebean tag: jsp:useBean id=args class=java.util.HashMap / % args.put(adjType, send); % from memory I think that should work.. hth dim On Wed, 24 Oct 2001, MacKellar, Kimberly wrote: I have an iterate tag and the body of this tag

Struts Expresso Framework

2001-10-25 Thread Ho Chin Hwang
Hi, I'm new to Struts and happen to come across Expresso too. I wonder what're the differences between the 2 framework? What're the strength and weakness of each framework? Thank you. Best Regards, Ho Chin Hwang

Re: Real time web page?

2001-10-25 Thread Erik Hatcher
Sure... Remote Scripting. Check out a few articles I've written about it (which includes a couple of servlet base classes to kick start the process): Remote Scripting Using a Servlet http://www.ibm.com/developerworks/library/wa-resc/ Pushing Messages to a Browser Using Remote Scripting

Re: Real time web page?

2001-10-25 Thread Robert Parker
Hmmm - http is typically connectionless, however there are a few tricks to give the impression of what you require... You can get the server to serve a multipart response and hence give a sequence of snapshots. You can set a refresh interval in the response header so that the browser requests

Re: Real time web page?

2001-10-25 Thread John Yu
Dave, It is limited by the HTTP protocol that the web server cannot 'push' data. The only pure HTML solution I'm aware of is to put a meta tag onto the page to ask the browser to refresh (i.e. 'pull') the page periodically: META HTTP-EQUIV=Refresh CONTENT=3;URL=http://www.some.org/some.html

Re: Showing image beside fields with errors

2001-10-25 Thread John Yu
Michelle, I see. Struts doesn't have direct support for this. But this doesn't mean it can't be done. I haven't tried this myself, but it might just work :-) In the Action, you add two ActionError's, one with a property, one as global error: errors.add(ActionErrors.GLOBAL_ERROR, new

Re: Example Site Built using Struts

2001-10-25 Thread John Yu
See http://www.husted.com/struts/resources.htm#sites At 02:50 pm 24-10-2001 +0100, you wrote: Hello Can anyone suggest the URLs of a couple of websites built using the Struts framework? My company needs such examples before commiting to Struts for our own site. I am subscribed, so you can reply

Re: Flash button and forms with struts

2001-10-25 Thread Dmitri Colebatch
There are two different parts to struts... firstly the framework side, and secondly the presentation side (taglibs). There's no reason you couldn't use the framework without the presentation. The key thing would be that you'd lose the ability to have fields populated with values that were

Re: adding /viewing messages like errors

2001-10-25 Thread John Yu
Are you referring to the logic:present name=beanName tag? http://jakarta.apache.org/struts/struts-logic.html#present Or are you looking for information on html:errors/? http://jakarta.apache.org/struts/struts-html.html#errors At 02:04 pm 24-10-2001 -0400, you wrote: I thought I read somewhere

Re: Weird problem (WAS)

2001-10-25 Thread Aapo Laakkonen
Seems like my struts installation doesn't work anymore as expected. All my forms do not have .do added to the end of action url anymore. It's interesting because html:links does work. What can cause this behavior? I did not do anything except updated my own jar-package. The problem was not

Re: how to bean:define for a static method

2001-10-25 Thread John Yu
Any particular reason you have to use static method? Can you turn it into an instance method? public class A { public ArrayList getMyArray() { //... } //... } (The worst case is you have this instance method calling your static method.) In JSP, logic:iterate id=listID name=keyA

RE: Using ApplicationResources.properties for submit button

2001-10-25 Thread Roumen Ganeff
it would be html:submit property=udmButton bean:message key=button.update/ /html:submit G. -Original Message- From: Bernhard J. Hirschmann [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 6:27 PM To: Struts-User Subject: Using ApplicationResources.properties for

Pecuiliar Error!

2001-10-25 Thread Tricia Ong Cheah Yen
Hi, i'm having a very pecuilar error. i've need to have 7 html:select in one page but by the time i add in my 7th html:select tag, i am thrown with this error message: Internal error: Unexpected error condition thrown (unknown exception,no description), stack:

Example Site Built using Struts

2001-10-25 Thread Robin Roos
Hello Can anyone suggest the URLs of a couple of websites built using the Struts framework? My company needs such examples before commiting to Struts for our own site. I am subscribed, so you can reply to the list or direct to me. Many thanks, Robin.

Using a HashMap for storing the FormBeans-Data

2001-10-25 Thread storck
Hi, is it possible to use a HashMap to get and set the data of a FormBean. I would like to have a formbean with a HashMap wich represents the formbeans data! Any suggestions are welcome

AGAIN: Using ApplicationResources.properties for submit button

2001-10-25 Thread Bernhard J. Hirschmann
Hello guys! Just in case anybody can give me a hint - again my message from yesterday: == How is it possible to use a String defined in ApplicationResources.properties for the value of a submit button? I would need something like: html:submit value=bean:message key=button.update/

RE: multiple params on link

2001-10-25 Thread Peschardt Sverre
Hi, http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg01695.html It uses a custom tld to pass multiple parameters for the html:link tag without scriptlets. Hope it helps SPE -Original Message- From: MacKellar, Kimberly [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October

Populate Struts' Action Form Bean's Date field by a String input

2001-10-25 Thread Peter Pilgrim
Hi I have a form bean with a Date field with accessor and mutators `Date getCurrentDate()' , `void setCurrentDate( Date )' ? I have written a custom subclass of the html:text to do the following pp:text property=currentDate trim=yes pp:dateFormat format=mm-DDD- name=dataForm

Re: Validator and Struts 1.0

2001-10-25 Thread Ted Husted
This looks like it is from one of my examples (which lead to the addition of the bCancel variable). I just updated this to use bCancel and the 7/2 release. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel +1 716 737-3463 --

RE: Using ApplicationResources.properties for submit button

2001-10-25 Thread Alexander Jesse
Hi, make it: html:submit bean:message key=button.wizard.same/ /html:submit Be aware though that the value transferred to your action is the translated message. (In case that you have multiple submit-buttons) I wrote a bit of logic to do reverse-translating... hope this

Re: Placing JSP's below the WEB-INF directory

2001-10-25 Thread Ted Husted
First, please turn off the HTML mail. It makes it harder to respond. Yes, the template packages can retrieve files from under WEB-INF. You just can't keep stylesheets and images down there. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel +1 716

RE: How to pass initialise parameters to action class

2001-10-25 Thread Alexander Jesse
Hi, you might use context-parms: !-- The context-param element contains the declaration of a web application's servlet context initialization parameters. -- !ELEMENT context-param (param-name, param-value, description?) They will be available to all servlets in your web-app. So from the

Re: Convertings String to Date and other stuff

2001-10-25 Thread Peter Pilgrim
Yep! I have nested the business object (COMPOSITION) inside the action form and written convenience accessor and mutators Eh voila! public class SomeActionForm extends ActionForm { private BusinessObject bizobj=new BusinessObject(); // Value object delegate! public BusinessObject

Re: HowTo: pass template as a put in the xml file

2001-10-25 Thread Cedric Dumoulin
Hi Stephen, Try something like : definition name=page.basic path=/common/MainLayout.jsp put name=title value=Basic Page direct=true/ put name=header value=/common/header.jsp / put name=footer value=/common/footer.jsp / put name=menu

default scope for struts actions

2001-10-25 Thread chiji nwankwo
I am right to think that the default scope for the struts action is request? Thanks ChijiGet your FREE download of MSN Explorer at http://explorer.msn.com

Struts 'n Expresso

2001-10-25 Thread Ho Chin Hwang
Hi,I'm new to Struts and happen to come across Expresso too. I wonder what'rethe differences between the 2 framework? What're the strength and weaknessof each framework?Thank you.Best Regards,Ho Chin Hwang

RE: Role-Based Actions

2001-10-25 Thread Matt Raible
Hal, While you suggestion looks good, my problem is that I'm actually protecting all my action classes. url-pattern/do/*/url-pattern or url-pattern*.do/url-pattern in your case. And therefore, I refer to separate JSP's. login-config auth-methodFORM/auth-method

Application Ressources from database?

2001-10-25 Thread juraj Lenharcik
hi all, want to ask how i can use the tags with a source like a database intead of ApplicationRessources.properties. a example is to use error messages from database. when it is not possible, how can i check with the iterate tag if a error id is there? example: logic:present name=errors

RE: Knowing where you came from

2001-10-25 Thread DUPRAT Alexandre
Hi, I would be pretty interresting to know what is the action mapping when validating an ActionForm. We are using one form bean for 3 actions. We need to know what is the current action but the form is validating before going to action.perform() :-( do something exist to help us? -Message

RE: How to pass initialise parameters to action class

2001-10-25 Thread Nocera, Robert
I'm not real familiar with struts (yet), but I see no reason why you couldn't put some standalone static code in your action class to read the parameter. The static code will get executed once when the action class is instantiated and should do what you're looking for. In other non-struts

target tracking and cookies question

2001-10-25 Thread ALAMI Ahmed - BOR
Hello eveybody Ihave two questions / first - how to use cookies with Struts? second - how to use Struts to track the detail of Targets that a user has perfomed to get to the current page? Thanks Ahmed ALAMI Stagiaire Ahmed ALAMI Stagiaire 8, rue Gustave

RE: What is proper way to determine ActionForm type?

2001-10-25 Thread Justin Piper
True, it's more straightforward and slightly easier to implement if you put all the work in the ActionForm. I look at the ActionForm as nothing more than a temporary scratch space to allow the Struts framework to pass an unknown number and type of values to the ActionServlet, hence I'm reluctant

Re: Knowing where you came from

2001-10-25 Thread Ted Husted
The problem is that, in a Web app, the client can request any valid URI at any time, and the application has to deal with that. Another way of looking at this is + what is our current state, + what changes are being requested to that state, and + can we make the change from the current state

RE: Real time web page?

2001-10-25 Thread Justin Piper
A couple of options spring to mind. You could use a META refresh to reload the page every so often. It's a little clumsy, but widely supported, and easy to add. The downside is that reloading the entire page is likely to interrupt the user's concentration. I've seen some browsers that scroll

Re: submit button internationalization.

2001-10-25 Thread Jonathan R. Okin
I could be wrong, but this is what I use and it doesn't get much simpler: html:submit property=xxxbean:message key=yyy//html:submit where xxx = the value of the button to evaluate in your action class and yyy = the message key in your ApplicationResourses.properties file -Jonathan --- Mark

HowTo: Preselect a value of a SelectBox

2001-10-25 Thread storck
Hi, how can I preselect a value of a SelectBox? Many Thanks!!

RE: SilverStream 3.5.2

2001-10-25 Thread Michelle Popovits
SilverStream 3.5.x is a very old release. Release 3.7.x came out last december and has been out for a while. Many older versions of app servers do not support web app. You should consider upgrading. Michelle From: Dmitri Colebatch [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL

Re: SilverStream 3.5.2

2001-10-25 Thread Michelle Popovits
I used 3.7.2 release several months ago (in a struts app) and I didn't have this kind of problem. I'm not sure what the problem could be. I know that SS uses cookies to track sessions and if cookies are not available it uses url rewriting, so I would think that this would take care of it. I

RE: Weird problem (WAS)

2001-10-25 Thread Siggelkow, Bill
Check your url patterns for the ActionServlet servlet mapping in your web.xml. -Original Message- From: Aapo Laakkonen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 10:12 AM To: [EMAIL PROTECTED] Subject: Weird problem (WAS) Seems like my struts installation doesn't work

RE: SilverStream 3.5.2

2001-10-25 Thread George, Carl
I believe it's because they just wanted to say they could do jsp as quickly as possible, so in 3.5 they could do jsp with embedded sript, but they didn't support taglibs until 3.7.x. -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001

Re: Validator and Struts 1.0

2001-10-25 Thread Sandeep Takhar
sorry I just noticed that your new validator.war file was using the same format. I was just being paranoid that if I used a certain type of functionality in the 7/2/2001 release that I would have to make a lot of changes later. That doesn't seem to be the case. btw: I do like what the

RE: How to pass initialise parameters to action class

2001-10-25 Thread Martin, Margaret
Alex, why not just lazy load the value in an accessor for the value? in general I prefer this over an init method, but it guess it's just a stylistic preference... hope this helps - Margaret -Original Message- From: Alex Colic [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001

ActionForward to ActionClass

2001-10-25 Thread Wolfgang Frank
Hello there, i am currently trying to find a way to call another action (ActionB) from within an action (ActionA). as and ActionForeward object should be returned from an action i cerated a new ActionForward with the path of the URL, or the action i wanted to call, but it doesn´t seem to work.

Re: Getting Error:Unable to import Java Page Compile source code

2001-10-25 Thread SLBrand
Hi Hitesh, At first glance, it looks like you're doing an import of a .jsp file that has a compile error in it. You might want to try turning on the jsp debugging in WTE to find the offending line. If you're not familiar with JSP debugging in VAJ/WTE look at the VAJ on-line help under:

javax.servlet.jsp.JspException: Cannot find bean showSelectionBoxesForm in scope null

2001-10-25 Thread storck
What is wrong with that struts-config? the corresponding Java classes for you. Otherwise, you would need only the form-bean element itself, with the corresponding name and type attributes. -- struts-config !-- == Form Bean Definitions

what is expresso??

2001-10-25 Thread John McClain
Can someone out there tell me what expresso is and how it is different from struts? What are the features it has that struts does not and vice-versa? Thanks John McClain7604 Muschetto Ct.Citrus Heights, CA. 95621[EMAIL PROTECTED](916)728-5223

Re: How to pass initialise parameters to action class

2001-10-25 Thread Jason . Gola
I see at least 2 choices: 1. You can a static initializer. 2. You can do it in the constructor, since action classes are made only once. Jason

How do i generate a unique checkbox name when iterating a dynamically created page

2001-10-25 Thread Reid Thompson
Title: How do i generate a unique checkbox name when iterating a dynamically created page Read through the archives and could not get any of the variations that I found re iteration/index to do what I need. Would appreciate any guidance. I am using logic:iterate id=lineList

RE: SilverStream 3.5.2

2001-10-25 Thread Krueger, Jeff
Brian, I have built several struts apps on top of Release3.7.2 Build (010502-01) and don't have any problems with losing session information. If you want to send me some examples of your action classes and pages I would be happy to look at them. You can e-mail then directly to me at

Re: Invalid attribute Prefix error

2001-10-25 Thread Mikael Eriksson
It looks like there is no space character between the @ and taglib. If it is not there try to add it. Regards Hitesh Parashar wrote: Hi: I am trying to run a struts sample with VisualAge 4.0 WTE. I get an error as follows: Message: Directive: Invalid attribute, prefix My JSP file is:

struts and VAJ 3.5 ?

2001-10-25 Thread PARR, Kristian
Hi, I'm new to struts and am trying to install it to run under VAJ 3.5. I've followed the instructions from the following mail http://www.mail-archive.com/struts-user@jakarta.apache.org/msg00019.html to install the framework using apache test environment. And basically inserted the

ActionErrors.add

2001-10-25 Thread emmanuel.boudrant
What's happen if... ActionErrors errors = new ... (...) errors.add(login,new ActionError(error.login1)); (...) errors.add(login,new ActionError(error.login2)); Is the first errors is overloaded by the second error ? ___ Do You Yahoo!?

Re: Struts and IPlanet 6.0 (Test Drive)

2001-10-25 Thread Brian Dainton
Thanks Matt, I've downloaded your src for struts-example, packaged it up, and deployed it to IAS 6.0 SP3 (Test Drive Edition). I'm getting the following error when accessing: http://localhost/NASApp/struts-example/ - Error: 404 SC_NOT_FOUND Extension of file not

PROPOSAL: collectionProperty attribute in html:options

2001-10-25 Thread Mindaugas Idzelis
PROPOSAL: collectionProperty attribute in html:options Abstract: A new attribute collectionProperty which will act like the current colllection attribute except that it specifies the property of the form which contains the collection thereby elimating the need for a bean:define and

Re: submit button internationalization.

2001-10-25 Thread Wolfgang Frank
Have you tried: html:submit property=xmit styleClass=formField bean:message key=button.save/ /html:submit Where the key is defined in your ApplicationRessources. I guess that should do it ... Wolfgang Mark Gordon wrote: Has anyone come up with a cool way to internationalize a submit

Struts mapper

2001-10-25 Thread Sandeep Takhar
I have downloaded and installed the mapper utilities available from Tim Husted's resource page http://husted.com/struts/resources.htm#extensions under Mapper Framework by Capco. It sounds promising and for a complex application can save a lot of time. I have been reading about it and have

messages tag - how to get the current property?

2001-10-25 Thread Michelle Popovits
I am now trying out the messages tag for the purpose of hyperlinking the error messages to focus on the field in error. And I can't quite get that to work (the basic messages functionality works great, though). I don't know if I can gain access to the current message property field name. What I

RES: submit button internationalization.

2001-10-25 Thread Rogerio Acacio Zamboim
Hi Mark, have you tried this? html:submit bean:message key=button.save/ /html:submit -Mensagem original- De: Mark Gordon [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 24 de outubro de 2001 22:00 Para: [EMAIL PROTECTED] Assunto: submit button

Re: Example Site Built using Struts

2001-10-25 Thread Adam Grohs
Robin, Pleas have a look at http://www.hallmarkstories.com. Hope this helps. Adam S. Grohs [EMAIL PROTECTED] - Original Message - From: Robin Roos [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 24, 2001 9:50 AM Subject: Example Site Built using Struts Hello

RE: Real time web page?

2001-10-25 Thread Nathan Anderson
Dave, There is a sample servlet created by Marty Hall in his book Core Servlets and JavaServer Pages [ISBN: 0-13-089340-4]. In this sample he does just what Robert suggested, setting the refresh interval in the HTTP response. But the one twist that makes me mention this is he had a variable of

Re: Using ApplicationResources.properties for submit button

2001-10-25 Thread Brian Holzer
Try something like this strutshtml:submit property=userAction strutsbean:message key=button.delete/ /strutshtml:submit Brian [EMAIL PROTECTED] 10/24/01 09:26am How is it possible to use a String defined in ApplicationResources.properties for the value of a submit

Double values in Select-Box if I use a Vector

2001-10-25 Thread storck
If I call my action with http://localhost:8080/struts-testbox/showSelectionBoxes.do I get a strange behaviour. The values in my last two select-boxes are double. The het-methode for my selectbox-values get called 3 or 4 times. What can be the problem ?? I use struts 22.11.2001 CAN someone help me

RE: Real time web page?

2001-10-25 Thread Brian Gebbie
Check out pushlets: http://www.fluidiom.com:8080/. It pushes (streams) JavaScript to a hidden frame on the browser where it is then executed which updates the page. -brian -Original Message-From: John Yu [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 24, 2001 8:14 PMTo:

RE: Struts Expresso Framework

2001-10-25 Thread Flying Cloud
Expresso 4.0 framework incorporates Struts so they are complimentary frameworks. Struts is a thin framework and Expresso provides addition component functionality. -Original Message- From: Ho Chin Hwang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 10:07 PM To: [EMAIL

Re: Flash button and forms with struts

2001-10-25 Thread Matt Raible
I've never done it, but I know you can use XML to communicate with Flash. Produce XML from your bean, and walla! http://www.macromedia.com/support/flash/interactivity/xml/ --- Dmitri Colebatch [EMAIL PROTECTED] wrote: There are two different parts to struts... firstly the framework side, and

Cactus : Struts

2001-10-25 Thread Nick Chalko
Here is the extension I wrote. I am still trying to get this released Open Source. Note that I have a internal class to wrap the action servlet, to return the action forward, instead of the response. This also allows me to use the actual struts-congif.xml. If there is interest I think I can

Fwd: Dynamic message

2001-10-25 Thread martin . cooper
Forwarding to struts-user. From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Dynamic message Date: Thu, 25 Oct 2001 14:43:36 -0400 Hi, Martin, I'm new to struts. I'm wondering if there is a way to set up a dynamic message, just like dynamic errors. I have a search page, search.jsp,

RE: how to bean:define for a static method

2001-10-25 Thread Thinh Doan
That's exactly what I had to do. Thank you. Thinh -Original Message-From: John Yu [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 25, 2001 1:21 AMTo: [EMAIL PROTECTED]Subject: Re: how to bean:define for a static methodAny particular reason you have to use static

java IDEs

2001-10-25 Thread peter
Hi I know this is off topic (apologies), but I think there several people within this group who use Java IDEs. I've never used an IDE (always used an editor like Ultra Edit), but would like to use one to perform mundane tasks like creating beans, etc. My question is: are there any free Java

Re: Messages like Errors...

2001-10-25 Thread David Winterfeldt
Are you talking about a general message or an error message? The below works with nightly builds or the Validator project (in the Struts nightly source contrib/validator directory or http://home.earthlink.net/~dwinterfeldt) has tags to do this if you aren't using nightly builds.

RE: Example Site Built using Struts

2001-10-25 Thread Robin Roos
Fantastic - thanks John! -Original Message-From: John Yu [mailto:[EMAIL PROTECTED]]Sent: 25 October 2001 04:32To: [EMAIL PROTECTED]Subject: Re: Example Site Built using StrutsSee http://www.husted.com/struts/resources.htm#sitesAt 02:50 pm 24-10-2001 +0100, you wrote:

Re: Struts and IPlanet 6.0 (Test Drive) - Solution

2001-10-25 Thread Matt Raible
I wanted to make sure the solution to this issue got into the mailing list archives. Matt --- Matt Raible [EMAIL PROTECTED] wrote: Date: Thu, 25 Oct 2001 10:31:48 -0700 (PDT) From: Matt Raible [EMAIL PROTECTED] Reply-to: [EMAIL PROTECTED] Subject: Re: Struts and IPlanet 6.0 (Test Drive)

RE: Example Site Built using Struts

2001-10-25 Thread Paap, Keith
You might want to do some searching through the archives. There have been threads on this in the past. http://www.mail-archive.com/struts-user@jakarta.apache.org/ One that was posted recently that has a nice look and feel is at: http://www.hallmarkstories.com/hmem/viewHome.do -Original

RE: AGAIN: Using ApplicationResources.properties for submit button

2001-10-25 Thread Bajaj, Simrandeep
use a normal button and call the submit function on click of button other wise u have to use scriptlets in value of button and the scriptlet will have the value of string that gets loaded using application resources properties Thanks -Original Message- From: Bernhard J. Hirschmann

RE: AGAIN: Using ApplicationResources.properties for submit button

2001-10-25 Thread Nathan Anderson
I am not very keen to the in's and out's of struts yet, but from the examples I have seen I think you can do something like this: html:submit bean:message key=button.update/ /html:submit So I would _ASSUME_ that it would be valid to have this: html:submit property=udmButton bean:message

This list NEEDS a FAQ

2001-10-25 Thread Mindaugas Idzelis
Subscribers, This list NEEDS a FAQ badly. There are many many many questions that are asked repeatedly. It would be nice to refer them to a FAQ. I'd be willing to put together a small FAQ. Please send me questions (and answers!! -- if you have them) to [EMAIL PROTECTED] Please include

Re: Using a HashMap for storing the FormBeans-Data

2001-10-25 Thread David Morris
Dirk, This sounds similar to a question I posted. Unfortunately, I did not receive a response. I set my form elements to have the same name and want to associate a class with them. Using the same name meant that I only had to have one getter and setter in my generic form. In my case I have a

Does struts spawn a new action class for every user?

2001-10-25 Thread Greg Lehane
Hey Folks, If I declare variables outside of the perform() method in my action classes, does this mean that multiple simultaneous users will overwrite each others variables? i.e. does struts spawn a new action object for every user session, or does it keep the same object and just call the