changing tiles definitions in action

2003-02-20 Thread Dave Weis
/index.jsp / /definition So I can change the value of title from inside my action. I looked for quite a while and couldn't find it in the docs. Any ideas? Thanks dave -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED] of the freedom

Re: changing tiles definitions in action

2003-02-20 Thread Dave Weis
, e-mail: [EMAIL PROTECTED] -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent and sudden usurpations

RE: Help!! Getting NT User

2003-01-29 Thread Dave Weis
using JAAS? My requirement: Once the user access the application URL, I want to get the use profile based on NT User name(Assuming that the user already authenticated by the NT domain). -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED

Re: html:hidden fields

2002-09-30 Thread Dave Weis
. Is the only change you made going from html:text property=field/ to html:hidden property=field/ ? Make sure you still have the field inside the form tags. Also, take a look at the page source and see if the value is correct in the code and that it exists. dave -- Dave Weis I believe

RE: Some ActionClasses Are Invoked Twice, Why?

2002-09-19 Thread Dave Weis
] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those

RE: dynamic img src attribute

2002-09-19 Thread Dave Weis
of the content generating folks that don't know Java/JSP code). Is there a struts taglib or other taglib that allows you to do something like... img param name='src' bean='myBean' property='beanProp' scope='beanScope' /img -- Dave Weis I believe there are more instances

Problem with Struts and display tag library

2002-09-03 Thread Dave Weis
the path of the jsp, not the url I used to access the page. Any ideas? dave -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent

Re: Prefilling ActionForm Data

2002-07-29 Thread Dave Weis
to the form bean, so you can grab your data from the database and do something like: MyFormBean fb = (MyFormBean) form; fb.setName(dave); and forward to your form. dave -- Dave Weis I believe there are more instances of the abridgment [EMAIL PROTECTED] of the freedom of the people

RE: Problem with empty file upload field

2002-07-07 Thread Dave Weis
to 25 names of files to upload, not all are required. I don't get this error when a page is submitted. I have tried the nightly build and get the same results. The line numbers are different in the stack trace, but it's the same result. dave -Original Message- From: Dave Weis [mailto

Problem with empty file upload field

2002-07-06 Thread Dave Weis
Hello I've got file uploading working fine with Struts 1.1b1. I can upload files with no problem, but I receive an error if I try to submit the form with the file field on it with no file selected. I'm using a normal action form, not a dynamic form. This is the error that I receive: 500

RE: Multiple Select Problem

2002-06-24 Thread Dave Weis
, for example, if I have 11 items to show, I want it on one page like this: 1 2 3 4 5 6 7 8 9 10 11 dave -Original Message- From: Dave Weis [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 23, 2002 10:12 PM To: Struts Users Mailing List Subject: Re: Multiple Select Problem On Sun, 2002-06

Re: Multiple Select Problem

2002-06-23 Thread Dave Weis
On Sun, 2002-06-23 at 17:57, Sandeep Takhar wrote: try using an array list. I think you need something that can be converted to an iterator?? I'm trying to make a multiple select on a form. I can't seem to get the correct type signatures on the getter and setter in the form. When I

Re: User Authentication

2002-06-11 Thread Dave Weis
On Mon, 10 Jun 2002, Craig R. McClanahan wrote: On 10 Jun 2002, Dave Weis wrote: On Mon, 2002-06-10 at 13:56, Craig R. McClanahan wrote: [snip] In general, I would recommend that apps be developed using container managed security capabilities -- for example, form-based login defined

Re: User Authentication

2002-06-10 Thread Dave Weis
On Mon, 2002-06-10 at 13:56, Craig R. McClanahan wrote: [snip] In general, I would recommend that apps be developed using container managed security capabilities -- for example, form-based login defined in the Servlet spec (http://java.sun.com/products/servlet/download.html). Then, you can

Re: org.apache.struts.actions.ReloadAction missing in Struts 1.1

2002-05-23 Thread Dave Weis
a similar post here http://www.mail-archive.com/struts-user@jakarta.apache.org/msg23877.html Craig had said earlier that he removed them. I personally would like them readded, it makes debugging much easier. dave -- Dave Weis I believe there are more instances of the abridgment [EMAIL

Missing ReloadAction is 1.0.2

2002-04-19 Thread Dave Weis
for tiles to reload componentDefinitions.xml? Thanks dave -- Dave Weis I believe there are more instances of the abridgement [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent

Re: Session management in Struts

2002-03-12 Thread Dave Weis
=j_security_check input type=hidden name=j_uri value=/main/index.do / Username input type=text name=j_username value=user br Password input type=text name=j_password value=pass br input type=submit name=submit value=Login /form -- Dave Weis I believe there are more instances

Re: Best Practice for parsing an XML file for applicationconfiguration parameters?

2002-03-06 Thread Dave Weis
reasonable. dave -- Dave Weis I believe there are more instances of the abridgement [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent and sudden usurpations.- James Madison

Re: Struts 1.1 and Tiles

2002-02-19 Thread Dave Weis
. Thanks for the help dave Dave Weis wrote: Hi Cedric I just downloaded tiles from your site and am proceeding to learn a few things. Is org.apache.struts.actions.ForwardAction updated to use the tiles functionality? I tried the line below and got an error: action path=/admin/message

Re: Struts 1.1 and Tiles

2002-02-19 Thread Dave Weis
. If you write modified ForwardAction, I will make it available in the distribution. Once I figure out how to get this going, I probably will. Thank dave -- Dave Weis I believe there are more instances of the abridgement [EMAIL PROTECTED] of the freedom of the people by gradual

Re: Struts 1.1 and Tiles

2002-02-19 Thread Dave Weis
any hits for that string. If you write modified ForwardAction, I will make it available in the distribution. Once I figure out how to get this going, I probably will. Thank dave -- Dave Weis I believe there are more instances of the abridgement [EMAIL

Re: Struts 1.1 and Tiles

2002-02-19 Thread Dave Weis
On Tue, 19 Feb 2002, Cedric Dumoulin wrote: Dave Weis wrote: On Tue, 19 Feb 2002, Cedric Dumoulin wrote: TilesRequestProcessor has been committed with Tiles for Struts1.1 since 18/02. It should be now in latest Struts nightly build. Also, you can download Tiles from its main site

Re: Struts 1.1 and Tiles

2002-02-18 Thread Dave Weis
incorrectly? dave Dave Weis wrote: How are the two shaping up? Are there still problems using a newer version of struts with tiles? There are some features of 1.1 that I need such as the dynamic forms. Also, would a nightly Struts download be in the 1.1 series or will it be 1.0.2

Reload missing in 1.1?

2002-02-18 Thread Dave Weis
I'm playing with 1.1 that I downloaded this morning and the ReloadAction and friends seems to be missing. There were 11 classes in the org.apache.struts.actions package in 1.0 and there are only 5 in 1.1. Should this be there? dave -- Dave Weis I believe there are more instances

Struts 1.1 and Tiles

2002-02-15 Thread Dave Weis
-- Dave Weis I believe there are more instances of the abridgement [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent and sudden usurpations.- James Madison -- To unsubscribe, e

Re: Importing CSV and VCF files

2002-02-05 Thread Dave Weis
! Auctions! http://auctions.yahoo.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Dave Weis

Re: [OT] Publishing an Application

2002-02-05 Thread Dave Weis
a bit of intelligence. dave -- Dave Weis I believe there are more instances of the abridgement [EMAIL PROTECTED] of the freedom of the people by gradual and silent encroachments of those in power than by violent and sudden usurpations.- James

RE: [OT] Publishing an Application

2002-02-05 Thread Dave Weis
web apps out on nt, but I'm not sure how tied in it is to their stuff. dave -Original Message- From: Dave Weis [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 10:00 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: [OT] Publishing an Application