Re: ActionForm and default values

2002-02-22 Thread Sarah Farrell
It's Friday, it's late, and I'm answering my own posts replacing "newInstance()" with "getInstance()" does the trick. At 10:02 PM 2/22/2002 -0700, you wrote: >I was trying out Ted's code, slightly modified, in an Action class: > >protected ActionForm createActionForm(String path) { >

Re: ActionForm and default values

2002-02-22 Thread Sarah Farrell
I was trying out Ted's code, slightly modified, in an Action class: protected ActionForm createActionForm(String path) { ActionServlet as = this.getServlet(); ActionMapping mapping = as.findMapping(path); String name = mapping.getName(); ActionForm form = null;

Re: Struts design question about maintenance screens

2002-02-22 Thread Ted Husted
The standard DispatchAction can be a handy way to keep various tasks together in the same Action, where they can share code, but without getting into kludgy performs. Dispatch lets you have a separate perform for each task, but all in the same Action, where they can be easier to maintain. http:/

Re: Error in running struts example in weblogic 6.1

2002-02-22 Thread rgiri
I got a similar error in an example complaining about the following attribute from the struts-form.tld for image org.apache.struts.taglib.html.ImageTag path false true isKey false tr

Re: How to prevent users from jumping into the middle of a series of pages

2002-02-22 Thread Ted Husted
Generally, Struts developrs tend to pass all control through an Action, and then to a page. This gives the Action the opportunity to vet any workflow concerns. So, do not link directly to any JSPs. Link only to Actions, and let the Action select the appropriate JSP. -- Ted Husted, Husted dot

Re: form validation

2002-02-22 Thread Ted Husted
Two ActionMappings, one with validate=false and the other with validate=true. One Action class should be sufficient, though. -- Ted Husted, Husted dot Com, Fairport NY US -- Developing Java Web Applications with Struts -- Tel: +1 585 737-3463 -- Web: http://husted.com/about/services "Pritcha

Re: Error handling philosophy in STRUTS

2002-02-22 Thread Ted Husted
The messages can include replacment parameters. If you want to the message to be just a replacement parameter, put error.message={0} in your resource file, and then pass the remote messsage as the replacement parameter. -- Ted Husted, Husted dot Com, Fairport NY US -- Developing Java Web Appli

Re: Error in running struts example in weblogic 6.1

2002-02-22 Thread rgiri
I ran into the same problem, I would also like to get the answer to the mystery. Try removing the title tag from the struts-html.tld file and run the example again. it worked for me, for any attribute which it complained like that I tried to remove it from the tld and tried running it , it worked

Re: how to decide how many beans to use?

2002-02-22 Thread Ted Husted
I use as few ActionForm (and Action) objects as possible. One thing to keep in mind is that a form bean is not an object, it's name we give to an object. In the case of the Struts Validator, you could give the same ActionForm class several different form bean names, and validate each one differe

Re: action and form contract

2002-02-22 Thread Ted Husted
http://news.basebeans.com/forums.jsp "Yu, Yanhui" wrote: > > Hi I have been reading all the emails from this mailing list, and found it > quite time consuming opening one, read, closing one then opening another... > > I wonder if I can view these messages through a web? like something for > Ja

Re: Request scope question again...

2002-02-22 Thread dderry
Hey Theron, Let me take a shot at this for you. I don't claim to be an expert (except when applying for a job ;-) ), so hopefully an expert will correct any mis-information. Page scope is valid only for a single page. Typically this MAY be the same as request scope. However, if your Action class

Re: How do I init a Form bean via business logic?

2002-02-22 Thread Ted Husted
kothapallibc wrote: > > MVC says that views should update themselves. I think the most > important argument may be, that views are considered the most > volatile layer and models the most stable. So it is OK for views to > depend stongly on models, but it is not OK for controllers to depend > str

How to use ?

2002-02-22 Thread Maturo, Larry
I am trying to create a table of radio buttons. Each row looks something like: Required Exempt Done Gate O O * Repository Link where the "O" represents an unchecked radio button and the "*" represents a check one. I have an ArrayList of beans. Each bean has a status st

Request scope question again...

2002-02-22 Thread theron . kousek
Hi Folks: How can I determine "when" a bean/form in request scope has "terminated"? Will hitting the "back" button on the browser and bringing up JSP pages that use beans in "request" scope be using "invalid" beans in that case (since they have scope=request)? I'm still trying to figure out t

RE: Error in running struts example in weblogic 6.1

2002-02-22 Thread Parmar, Deepak
Hi KK, I checked it out and "ApplicationResources.properties" is in correct place. To clarify this i added another jsp file: <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> and this does display TITLE from resource file but if i just add taglib directiv

Struts Examples

2002-02-22 Thread Lundin, Michael
Is there anywhere, other than this mailing list, that holds some good practical examples of using Struts tags? I'm finding the documentation to be tough to follow at points, and am just looking for some good examples. Thanks, Michael Lundin -- To unsubscribe, e-mail:

Re: Parsing ActionForm Strings

2002-02-22 Thread Louis Leung
if i understand you right, you want to change the input, which is Strings, to actual data types (i.e. Dates, Boolean, etc.) in the ActionForm. This issue has been brought up before, read the pass post on : Subject: Re: Form -> Bean conversion Date:Fri, 15 Feb 2002 16:47:39 -0500

RE: Error in running struts example in weblogic 6.1

2002-02-22 Thread Khalid, Khusro
Deepak... first of all u werent clear on what u were doing ... if ur just trying out that example, then i think u need to check out the web.xml and verify that the "ApplicationResources.properties" is in the correct place. Your action servlet cant find it and hence the error..due to => " (in inde

Re: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread Eddie Bush
nevermind - it's actually exposed through both taglibs. - Original Message - From: "Eddie Bush" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 3:39 PM Subject: Re: FW: how to use an images for submit, cancel button etc > Shouldn't

RE: Error in running struts example in weblogic 6.1

2002-02-22 Thread Parmar, Deepak
Hi KK, There is not tag. I'm trying to run struts example. I have added struts-example.war file and trying to access index.jsp file Deepak -Original Message- From: Khalid, Khusro [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 4:55 PM To: 'Struts Users Mailing List' Subject:

RE: Error in running struts example in weblogic 6.1

2002-02-22 Thread Khalid, Khusro
Deepak, im thinking u probably have something like the form tag doesnt support any "title" attribute... you may want to check out: http://jakarta.apache.org/struts/doc-1.0.2/struts-html.html#form -KK > -Original Message- > From: Parmar, Deepak [mailto:[EMAIL PROTECTED]] >

Struts config.xml and request/session scope

2002-02-22 Thread theron . kousek
Hi Folks: I have an action in struts.config.xml that looks like: - Question: - The scope refers just to the "BillingIDForm" bean and not the action object? Also, I understand session scope,

Re: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread Eddie Bush
Shouldn't html:image, then, be included as form:image rather than it's current place? It seems logical to me, but who am I to say. - Original Message - From: "KM" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 3:34 PM Subject: RE:

Error in running struts example in weblogic 6.1

2002-02-22 Thread Parmar, Deepak
Hello, I'm getting following error while running struts example: /index.jsp(3): Error in using tag library uri='/WEB-INF/struts-html.tld' prefix='html': The Tag class 'org.apache.struts.taglib.html.FormTag' has no setter method corresponding to TLD declared attribute 'title', (JSP 1.1 spec, 5.4.

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Thanks for all the help guys KM --- "Pierce, Britt" <[EMAIL PROTECTED]> wrote: > If you look into the code, an 'image' button > inherits from the 'submit' > button. Therefore, an tag > submits the form to the > server. > > Not sure how the code below works though...It's not > how I would do

Why doesn't the Artimus application see my re-compiled classes?

2002-02-22 Thread Dick Starr
I am running Ted's Artimus sample application and it runs fine until I change the table names (they are defined as static fields in his Commands classes). Via some diagnostic code I can see the old Command classes are being executed (not my modified and re-compiled Command classes) when I enter ht

RE: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Gosh I was reading the details at img - Render an HTML img tag instead of image - Render an input tag of type "image" Thanks JC KM --- "Jakkampudi, ChandraseKhar" <[EMAIL PROTECTED]> wrote: > Look at the TLD file or the documentation to find > out what attributes are > allowed for the html

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Pierce, Britt
If you look into the code, an 'image' button inherits from the 'submit' button. Therefore, an tag submits the form to the server. Not sure how the code below works though...It's not how I would do these buttons...Not that I'm any less of a newbie to this then anybody else on this list... Aga

RE: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread Jakkampudi, ChandraseKhar
Look at the TLD file or the documentation to find out what attributes are allowed for the html:image. http://jakarta.apache.org/struts/struts-html.html#image >From this, you can see that height and width are not supported attributes. Alternatives: 1. write your own patch to the tag to do this.

RE: Re:Help on WebSphere installation

2002-02-22 Thread subhendukumar mohanty
For running the struts in websphere installation you need to put modified formtag class. It is available as struts-modified.jar in struts home page. -Original Message- From: Ben Liang [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 4:23 PM To: Struts Users Mailing List Subject

Re: how to use an images for submit, cancel button etc

2002-02-22 Thread Jim Crossley
I don't think you need the onclick events for tags. I *think* they're all going to submit your form anyway. So in your action, you'll need to look at the request to see which button the user pressed. Image inputs are tricky though, because instead of just their name (or value, I can't remember

Re: Re:Help on WebSphere installation

2002-02-22 Thread Ben Liang
I finally found JAXP_1.0.1 from Sun, and get struts-example running. But when I click on logon or register, I got this exception in my log, and can never get to logon.jsp: [02.02.22 14:44:22:750 CST] 82e3d434 ServletInstan X Uncaught service() exception thrown by servlet {0}: {1}

RE: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Strange I took your suggestion and put both width and heigth in qoutes, it gave me an error saying Attribute height invalid according to the specified TLD and Attribute weight invalid according to the specified TLD So I took out both of them and it works. Wonder why? I am using struts 1.01. Any

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Pierce, Britt
Read this: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg15597.html -Original Message- From: KM [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:00 PM To: [EMAIL PROTECTED] Subject: RE: how to use an images for submit, cancel button etc Any more suggestions

onblur ????????????????

2002-02-22 Thread Boyalla, Raveendra
In the following code in text tag I want to do in the onblur event. Is it possible ? see the following example code from apche. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts.tld" prefix="struts" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/WEB-

BEER = GOOD : EJB = bad = MS.net

2002-02-22 Thread Eugene Neymark
- Original Message - From: "Malcolm Davis" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 12:19 PM Subject: RE: EJB = bad = MS.net > I think I was better off not sending that last email, > especially on a Friday. :) > Thanks for

RE: newbie question: HTML Taglib

2002-02-22 Thread Nail, Evan Burke
Lets say you have a script as follows function testme(){ alert("you tested me"); } then your html tag would look like this Hope this helps. > -Original Message- > From: "Boyalla, Raveendra" <[EMAIL PROTECTED]>@ENRON > Sent: Friday, February 22, 2002 2:57 PM > To:

Parsing ActionForm Strings

2002-02-22 Thread Tom Brunner
Hey all, Quick question...What is the best place to parse Strings to actual data representations from an ActionForm? I have a co-worker that is complaining that Struts is going to take too long to do something like that in an action class. He believes that when an ActionForm is created it shoul

RE: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread Jakkampudi, ChandraseKhar
Try putting your attributes in quotes as the error message suggests. width="88" height="24" etc JC -Original Message- From: KM [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:06 PM To: Struts Users Mailing List Subject: Re: FW: how to use an images for submit, cancel button

Re: FW: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Ok here is the chronology The Code I posted was using buttons for cancel, submit, reset , submit etc. I asked for help using images instead of buttons. Someone suggested I use something like for the cancel button(read image) wrote: > Hmm. > > I'm actually a bit confused. I don't see any > tag

Re: Help needded on Struts-config file

2002-02-22 Thread dderry
No - Original Message - From: "subhendukumar mohanty" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 3:42 PM Subject: RE: Help needded on Struts-config file Is this element is mandatory in action mapping? -Original Message

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Galbreath, Mark
Using images as buttons is quite common. You can do this easily with java.awt.* or javax.swing.*. You can even do it in HTML, but you won't get the button "push" effect without JavaScript and alternate images. Explain exactly what the requirement is. Mark -Original Message- From: KM T

Re: Help needded on Struts-config file

2002-02-22 Thread dderry
Subhendu, I'm not one of the experts, but I do know one way in which 'input' is used by the controller. This specifies the page to which the user will be returned if the ActionForm fails validation. You can also us it in you Action class by returning new ActionForward( mapping.getInput() ) if yo

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Any more suggestions, anybody who used an image as a button with an action defined? God why do the clients need an image for a button? KM "Mattos, John" wrote: Could you do the following...border="0"/>border="0"/>src="../images/onionReset.gif" border="0"/>Reset and submit work fine, but

RE: Passing a parameter to tiles definition

2002-02-22 Thread Zeltser, Mark
I tried this one, didn't work. This technique is working with templates... -Original Message- From: Kanoza, Douglas (NCI) [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:56 PM To: 'Struts Users Mailing List' Subject: RE: Passing a parameter to tiles definition Maybe somethi

FW: how to use an images for submit, cancel button etc

2002-02-22 Thread Mattos, John
Hmm. I'm actually a bit confused. I don't see any tags in the code snippet you provided, conly and , which are buttons. Can you send a bit more of the JSP? As far as the image submitting the form, I don't know of any other way without using JavaScript (not that it doesn't exist, I'm just not

Re: RE:how to use an images for submit, cancel button etc

2002-02-22 Thread dderry
Read the error message carefully. Then look at the attribute values in your tag. Smack yourself on the forehead with the palm of your hand and say "Dooohhh!" - Original Message - From: "KM" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 2:46 PM Subjec

RE: newbie question: HTML Taglib

2002-02-22 Thread Boyalla, Raveendra
Hi, Please tell me, How to use onBlur event for text Tag Thank you Raveendra -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Passing a parameter to tiles definition

2002-02-22 Thread Kanoza, Douglas (NCI)
Maybe something like this? -Original Message- From: Zeltser, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:54 PM To: [EMAIL PROTECTED] Subject: Passing a parameter to tiles definition Hi, I have the following definition

RE: Help needded on Struts-config file

2002-02-22 Thread Kanoza, Douglas (NCI)
I think that's all there is, but I could be wrong. I'm pretty new at this myself. -Original Message- From: subhendukumar mohanty [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:50 PM To: Struts Users Mailing List Subject: RE: Help needded on Struts-config file Thanks Is t

Passing a parameter to tiles definition

2002-02-22 Thread Zeltser, Mark
Hi, I have the following definition I would like to pass a parameter to menu.jsp. How would I do it? Thanks. -- This message is intended only for the personal and confidential u

RE: Help needded on Struts-config file

2002-02-22 Thread subhendukumar mohanty
Thanks Is that the only functionality of input tag or it is used for anything else. -Original Message- From: Kanoza, Douglas (NCI) [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:50 PM To: 'Struts Users Mailing List' Subject: RE: Help needded on Struts-config file That's

RE: Help needded on Struts-config file

2002-02-22 Thread Kanoza, Douglas (NCI)
That's pretty much how it works. If you look at the code in the LogonAction in the example, they check for the existence of the database and also compare the supplied password with the password in the database. If there's a problem in either case, they save the errors and redirect to the input p

RE: Help needded on Struts-config file

2002-02-22 Thread subhendukumar mohanty
Is this element is mandatory in action mapping? -Original Message- From: Lundin, Michael [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 3:41 PM To: 'Struts Users Mailing List' Subject: RE: Help needded on Struts-config file My understanding of the input is that it's a mapp

newbie question: HTML Taglib

2002-02-22 Thread Parmar, Deepak
Hi, I'm getting error like in my logon.jsp file: Error in using tag library uri='/WEB-INF/struts-html.tld' prefix='html': The Tag class 'org.apache.struts.taglib.html.FormTag' has no setter method corresponding to TLD declared attribute 'title', (JSP 1.1 spec, 5.4.1) probably occurred due to an er

RE: Help needded on Struts-config file

2002-02-22 Thread Lundin, Michael
My understanding of the input is that it's a mapping to the document that submits the form. For this example, it's the page that presents you with the username/password screen. This way if there is an error, you can send the user back to the input screen that they came from. -Original Messa

Re: Changing Request Parameters

2002-02-22 Thread Michael Baldwin
Since you're forwarding from Action to Action, you do have a minor issue. Things you set in the request will be reset after the forward. Solution 1: add what you need to the session. Solution 2: extend ActionForward with a subclass that takes a map of name value pairs to stick in the request. O

Help needded on Struts-config file

2002-02-22 Thread subhendukumar mohanty
Hi One of the mapping in struts-config.xml file comes with example is as follows Could anybody explain me what the "input" element means. How it is used by controller. Thanks, Subhendu -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread KM
Thanks for the tip Mattos, However javascript is not something the end client likes in this case, so trying to minimise using javascript. Any clue as to why the code I posted is not working? Thanks for your time KM --- "Mattos, John" <[EMAIL PROTECTED]> wrote: > Could you do the following... >

Re: viewing email from this list

2002-02-22 Thread Eddie Bush
OutlookExpress works in a similar fashion =) - Original Message - From: "Ted Husted" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 2:28 PM Subject: Re: viewing email from this list > Netscape Messenger works great for me. > > It

Re: viewing email from this list

2002-02-22 Thread Ted Husted
Netscape Messenger works great for me. It also threads everything, so if something goes off topic, it's easy to start ignoring the thread =:O) -Ted. Sarah Farrell wrote: > > Is anyone *not* having problems viewing the email from this list? And if > you aren't having problems, what email prog

RE: struts-example won't run

2002-02-22 Thread Subhadra Vemuri
Guy, Some of my colleagues here are able to work with struts and 3.2 tomcat. I am using Tomcat 3.3a. This error really baffles me. It works for some and doesn't for some. I didn't like having to install a new tomcat - but that's what worked for me. For now, I am glad you were able to work around

RE: EJB = bad = MS.net

2002-02-22 Thread Malcolm Davis
I think I was better off not sending that last email, especially on a Friday. :) Thanks for educationÂ… - Malcolm >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED]] >> Sent: Friday, February 22, 2002 2:09 PM >> To: Struts Users Mailing List >> Subj

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Mattos, John
Could you do the following... Reset and submit work fine, but you need to implement the cancel to do whatever you need it to do. Is that overly simplistic? John Mattos Sr. Developer and Architect iNDEMAND 345 Hudson St. 16th Floor New York, New York 10014 -Original Message- Fr

Re: EJB = bad = MS.net

2002-02-22 Thread Bob Williams
TGIF - Original Message - From: "Cakalic, James" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 2:02 PM Subject: RE: EJB = bad = MS.net > > == Rolling on the floor laughing my ass off > > > -Original Message- > > From:

Re: EJB = bad = MS.net

2002-02-22 Thread Eddie Bush
I believe we all knew that one, James ;) ... but thanks for your clearification none-the-less =) - Original Message - From: "Cakalic, James" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 2:02 PM Subject: RE: EJB = bad = MS.net

Request Parms Use Name NOT ParamName

2002-02-22 Thread Jack Frosch
FYI: The HTML TagLib Developer Guide.pdf says, "To pass multiple dynamic parameters, you can store them in a java.util.Map, and use the name of the map for the ***paramName***. The map must then contain one or more paramIds and their corresponding values. As the Map is processed, the keys are as

Re: Thanks Eddie.

2002-02-22 Thread Eddie Bush
Glad to have helped =) - Original Message - From: "Henry Lu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 2:01 PM Subject: Re: Thanks Eddie. > Thanks Eddie, it work fine now! > > > ---

RE: EJB = bad = MS.net

2002-02-22 Thread Cakalic, James
== Rolling on the floor laughing my ass off > -Original Message- > From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 22, 2002 1:57 PM > To: 'Wes Bramhall '; ''Struts Users Mailing List' ' > Subject: RE: EJB = bad = MS.net > > > ROTFLMAO! > > Mark > > -Orig

Re: Thanks Eddie.

2002-02-22 Thread Henry Lu
Thanks Eddie, it work fine now! --- Henry Lu MCITphone: (734) 936-2063 University of Michigan Medical Center fax: (734) 763-4372 On Fri, 22 Feb 2002, Eddie Bush wrote:

RE: EJB = bad = MS.net

2002-02-22 Thread Galbreath, Mark
ROTFLMAO! Mark -Original Message- From: Wes Bramhall To: 'Struts Users Mailing List' Sent: 2/22/02 2:52 PM Subject: RE: EJB = bad = MS.net But it's Friday now, so SSS is allowed, right? (SSS = Small Scale Spamming) -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]

Re: Development Environment

2002-02-22 Thread dhay
does it have support for jsp's? Dave "John M. Corro" <[EMAIL PROTECTED]> on 02/21/2002 02:11:39 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> cc: Subject: Re: Development Environment Glad to see someone

Re: Indexed Properties

2002-02-22 Thread dhay
loads on this in the archive. Sridhar M <[EMAIL PROTECTED]> on 02/22/2002 09:48:36 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: Subject: Indexed Properties Hi, I have a requirement wherein my HTML Form contains around 100 textfi

RE: EJB = bad = MS.net

2002-02-22 Thread Wes Bramhall
But it's Friday now, so SSS is allowed, right? (SSS = Small Scale Spamming) -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 1:45 PM To: Struts Users Mailing List Subject: Re: EJB = bad = MS.net I thought we had abandoned this thread in fav

RE:how to use an images for submit, cancel button etc

2002-02-22 Thread KM
I have tried the following as suggested how ever I get an error Attribute value should be quoted so I tried to put value="cancel" in the above string but it still gives me the error. Any suggestions on how to resolve this. I will have to write the action methods as suggested by Mr Press late

Re: EJB = bad = MS.net

2002-02-22 Thread Eddie Bush
I thought we had abandoned this thread in favor of Struts related questions =) - Original Message - From: "David Smith" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 1:41 PM Subject: Re: EJB = bad = MS.net > I'm staying out of th

Re: EJB = bad = MS.net

2002-02-22 Thread Eddie Bush
IMNSHO = In My Not So Humble Opinion? - Original Message - From: "Joseph Barefoot" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; "Edward Q. Bridges" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 12:03 PM Subject: RE: EJB = bad = MS.net > IMNSHO? What th

Re: EJB = bad = MS.net

2002-02-22 Thread David Smith
I'm staying out of this discussion, but to answer your question -- IMNSHO = In My Not So Humble Opinion --David On Friday 22 February 2002 01:03 pm, you wrote: > IMNSHO? What the hell is that? Man, the colloquial shortcuts are getting > hairy these days :) > > -Original Message- >

RE: Implement HTTP and HTTPS in a safe, flexible, and easily maintainable manner

2002-02-22 Thread Ditlinger, Steve
Hey, thanks for the publicity. We've created a Struts extension based on this article. Find it at http://struts.ditlinger.com. Try it out, let us know what you think. Steve -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 12:24 PM

RE: logic tag

2002-02-22 Thread Dua, Amit
no response from any one so far -Original Message- From: Dua, Amit Sent: Friday, February 22, 2002 12:03 PM To: 'Struts Users Mailing List' Subject: logic tag Hi how can I compare two variables which are stored in my session attribute by using the logic tag. As what I know is the or

Dynamic form fields

2002-02-22 Thread John Regan
I've searched the mail list and cannot find a clear answer to this one! Here is an example of what I need: A user enters the # of Travelers for their vacation in the first jsp of the sequence. In the second jsp I want to display an html:text input field for each traveler's age. what is the simpl

Re: Exception handling best-practise

2002-02-22 Thread Jonathan Fuerth
On Fri, Feb 22, 2002 at 04:58:28AM -0500, Ted Husted wrote: > IMHO, the messages and the messages keys belong to the model. The > controller is simply transferring this data to the view, as it does with > everything else, like records from a database. Aha, that makes perfect sense to me! Thanks

RE: struts-user Digest 22 Feb 2002 17:34:22 -0000 Issue 1164

2002-02-22 Thread Pierce, Britt
I have to admit that I have not read all of the messages in this thread, so I apologies if I am repeating anything... But, I found in the archives that you can check to see if an image button is clicked you can do it on the server side by looking for the .x or .y property. So, for example, to

Re: PLEASE, HELP !!! upload problem

2002-02-22 Thread Eddie Bush
I uploaded graphics just fine just now. My code is slightly different than yours. I simply call the getFileData() method of FormFile to return the data, and write it all out at once. Then flush the buffer and close the file. Try something along the lines of: FormFile ff = ... get the FormFile

Re: is there a way to bring up simple js windows for prompts rather thancreating a form?

2002-02-22 Thread John M. Corro
At a glance this might be an option On the popup screen generate a list of valid Billing IDs and on each link set href="#" and onclick="selectBillingID(); return false;". The selectBillingID method will call a method of the parent browser (ie the one that it popped up from). The method of th

viewing email from this list

2002-02-22 Thread Sarah Farrell
Is anyone *not* having problems viewing the email from this list? And if you aren't having problems, what email program are you using? (Never mind if you're using Pine on Unix.) My email client, Eudora, hides some of the text if it looks like an HTML tag. I can only see it if I "view source" a

Token questions

2002-02-22 Thread Press, Michael
I see that a token can be set and queried by Action classes as a way of verifying that a certain flow from page A to page B has occurred. Can I have more than 1 token at a time for 1 user in an application? I might want to verify flow A->B and separately, C->D, but if there's only 1 token than

is there a way to bring up simple js windows for prompts rather thancreating a form?

2002-02-22 Thread theron . kousek
Hi Folks: Pardon my ignorance.You guys have been a great help.Only been using struts for a week or so. Here's the scenario: Step 1 Screen 1 has a menu of html:link - Add Biller - Edit Biller - View Biller Step 2 When you click Edit or View, I bring up another form (Screen 2) to prompt

RE: EJB = bad = MS.net

2002-02-22 Thread Malcolm Davis
Is there an off-ramp section for EJB flares? People can write cramp in any language or technology. This is a Struts Mailing List. >> -Original Message- >> From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] >> Sent: Friday, February 22, 2002 6:15 AM >> To: dIon Gillard; Struts User

RE: EJB = bad = MS.net

2002-02-22 Thread Joseph Barefoot
IMNSHO? What the hell is that? Man, the colloquial shortcuts are getting hairy these days :) -Original Message- From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 4:15 AM To: dIon Gillard; Struts Users Mailing List Subject: Re: EJB = bad = MS.net "l

RE: Development Environment

2002-02-22 Thread Joseph Barefoot
Well, not really. It's bash for Windows, basically. This is really cool, but IMO if you want serious power, you'd set up your machine for Linux-Windows dual-boot. Then you've got the power of Linux with access to all your Windows files. Fun! -Original Message- From: [EMAIL PROTECTED]

Re:Help on WebSphere installation

2002-02-22 Thread Ben Liang
I am trying to install Struts under WS 3.5.4, but could not find a correct version of xerces.jar to get it work. I downloaded java_xml_pack-winter-01_01-dev which include JAXP 1.2, and put the xerces.jar under WS /servlets. And I get this error from the log: [02.02.22 11:26:24:062 CST] ecd486c1 W

Re: Nesting Tiles within each other problem

2002-02-22 Thread Cedric Dumoulin
What doesn't work in your example is that at a time you insert page /middle.jsp without passing it any attribute. This page use an attribute in its tag. You have two solution to pass the attribute : * while you do the : middle.jsp <%@ taglib uri="/WEB-INF/tiles.tld" prefix="til

Re: Display taglib

2002-02-22 Thread Sriram Nookala
My working example is as below: <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/WEB-INF/display.tld" prefix="display" %> - Original Message - From: "Steve Earl" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List' (E-mail)" <[EMAIL PROTECTE

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Boyalla, Raveendra
Hi How can I code for onBlur event of a Text tag. Regards, Raveendra Boyalla -Original Message- From: Todd G. Nist [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 11:13 AM To: 'Struts Users Mailing List' Subject: RE: how to use an images for submit, cancel button etc Yo

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Todd G. Nist
You could try something like the below: for cancel you could do this: for the others you would need to do something like: Regards, Todd G. Nist -Original Message- From: KM [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 10:27 AM To: Struts Users Mailing

[OT] ServletExceptions in StartupServlet & Logging

2002-02-22 Thread Matt Raible
Is it possible with Log4j or other logging mechanisms to show ServletExceptions in the console. They show up fine in my tomcat logfile, but not in the stdout. In tomcat's log file I get: 2002-02-22 10:09:52 StandardContext[/onpoint]: Servlet /onpoint threw load() exception javax.servlet.Servl

logic tag

2002-02-22 Thread Dua, Amit
Hi how can I compare two variables which are stored in my session attribute by using the logic tag. As what I know is the or any other comparison tag compares the value with a constant. any suggestions. Thanks Amit -Original Message- From: Boyalla, Raveendra [mailto:[EMAIL PROTECTED

How do I use onblur for text tag

2002-02-22 Thread Boyalla, Raveendra
Hi How do I use onBlur for text tag Thank you Raveendra -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Indexed Properties

2002-02-22 Thread Erik Tennant
I've had repeated problems with IE and Netscape on win9x platforms using a large number of text fields. The browser display seems to become corrupt after a short period of time using the screens. It might be worth your time to mock up some screens on your target platform(s) and make sure you

  1   2   >