Eric i got an OutOfMemory Exception inside my OC4J, but nevertheless
my application is working fine. I am not sure, if the case is the same and i
do not know, why now i got these execptions. I am running against an
oracle 8i and it seems the database is working fine.
On question.. the clue behind
Bill Siggelkow wrote:
Tomcat seems to "hang on" to pages sometimes -- when I run into
problems that seem should *not* be happening -- I always dump the
particular folder in /webapps and 'rm -r' the /work directory.
Michael McGrady wrote:
Bill Siggelkow wrote:
Hmmm ... well, it works for me under
U simply copy the html file at ur jsp form directory. So that the u can refer to ur
static html page as
/form/urhtml.html
On Thu, 26 Aug 2004 Towers,Stuart G wrote :
>Hi Group,
>
>
>
>I'm trying to add some static HTML pages to my Struts application
>(running under Tomcat) as Help files. I
Yes. UserMaint.jsp does not have an entry in strus-config.xml
because UserMaint.jsp does not contain a form for user to input data.
struts-config.xml does contain entry of AddUserProfile.
Should I transform the UserMaint.jsp to a form?
UserMaint.jsp (contains links only) calls
AddUserProfile.jsp
Hi Sebastian,
> How do I override the actionerrors headers already defined in my
> properties file (which is a validation message)?
>
> I am using actionerrors in my exceptionhandler and the 'validation'
> message is inappropriate in this case.
I think the "bundle" attribute will suffice.
ht
Sorry forgot to add the .do or whatever you have setup to foward to
Struts ActionServlet. If using the common .do it would be ..
--
Rick
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
PC Leung wrote:
Do you mean my approach is wrong?
Originally UserMaint.jsp contains links only.
Do I need to transform it as a form?
As Bill asked earlier, what does you struts-config file look like. My
guess is you are not getting to your action class because you haven't
set up a mapping for it.
Do you mean my approach is wrong?
Originally UserMaint.jsp contains links only.
Do I need to transform it as a form?
On Wed, 25 Aug 2004 23:08:24 -0400, Bill Siggelkow
<[EMAIL PROTECTED]> wrote:
> Well, passing a dispatch parameter to a JSP is not going to do anything
> unless on the JSP you expl
Hi
How do I override the actionerrors headers already defined in my
properties file (which is a validation message)?
I am using actionerrors in my exceptionhandler and the 'validation'
message is inappropriate in this case.
Thanks
Sebastian Ho
-
Well, passing a dispatch parameter to a JSP is not going to do anything
unless on the JSP you explicitly pull that request parameter and stick
it somewhere on the form. (This sounds like what you are trying to do --
it sounds like you are trying to pass the method to dispatch to through
the Add
I want an Action to include a "forward" element that forwards an "Update"
action to a "Confirm Update" page.
I use the java code below to return a value that forwards to a jsp page ..
forward name="confirm" in the java code does a RequestDispatch.forward to
pages/conf2_subedit.jsp.
The problem i
Thanks to all who replied. I can't always count on u guys :D
If I really did use the stupid approach on the job,
I guess I am going to be fired on the spot. ;D
Regards
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional
UserMaint.jsp (contains links only) calls
AddUserProfile.jsp which links with
AddUserProfileAction.java (it contains DispatchAction)
and AddUserProfileForm.java
UserMaint.jsp constructs originally like this:
Do you suggest me to change the coding to the following?
On Wed, 25 A
While I agree that there is nothing wrong with calling validate()
yourself; if you are using 1.2 you might want to look into the
MappingDispatchAction -- it was designed to allow for one Action that
supports multiple action configurations -- even with different forms, etc.
Bryce Fischer wrote:
PC -- I am not sure what you mean by "AddUserProfileAction.java
(AddUserProfile.jsp)"? Do you mean that the Action forwards to the JSP?
Or do you mean that the JSP submits to the Action?
Anyway, if you want the link to be to the Action it would be like this:
Notice the ".do" on the page att
Rick Reumann wrote:
Vic wrote:
I allways say validate = false in mapping, and then manualy call it.
Would that help?
I do the same. Validating manually also gives you the nice advantage
of being able to set up any lists or other objects you need in request
scope if valdiation fails. Bryce, an ex
Vic wrote:
I allways say validate = false in mapping, and then manualy call it.
Would that help?
I do the same. Validating manually also gives you the nice advantage of
being able to set up any lists or other objects you need in request
scope if valdiation fails. Bryce, an example of it might loo
David Stevenson wrote:
One thing though: The WAR file I grabbed from that page seems to have a
garbled index.jsp in it? The other files are OK.
Sorry about that. Should be ok to download. Please let me know if there
are any other issues with the downloads or links not working etc. Thanks
so much
Vic wrote:
I allways say validate = false in mapping, and then manualy call it.
Would that help?
Thanks for your quick response Vic. Do you mean manually calling it in
the DispatchAction class (I think that's what you mean, but I didn't
want to assume)?
Bryce Fischer wrote:
I'm having a problem
+1 Vic's on target when it comes to validating. This is an especially
useful tactic when using DispatchActions for CRUD (Create Read Update
Delete) actions.
Regards,
David
-Original Message-
From: news [mailto:[EMAIL PROTECTED] Behalf Of Vic
Sent: Wednesday, August 25, 2004 9:49 PM
I allways say validate = false in mapping, and then manualy call it.
Would that help?
.V
Bryce Fischer wrote:
I'm having a problem with a ValidatorForm and validation. The first time
I try to access the action below, I get a validation error. The form
never gets the opportunity to be filled in by
On 25 Aug 2004 20:42:31 +0800, Sebastian Ho
<[EMAIL PROTECTED]> wrote:
> hi
>
> I am having this strange behavior that I don't understand.
> I keep having 'experiments' in my request scope when I don't think I put
> that in.
>
There is no code in Struts that ever creates a request scope attribut
I'm having a problem with a ValidatorForm and validation. The first time
I try to access the action below, I get a validation error. The form
never gets the opportunity to be filled in by the Action class (action
called is /fringe.do?method=edit). Is there any way to tell Struts to
not do valid
I searched high and low for 'experiments' but can't find it anywhere. I
am changing from request to session. Can't afford to spent too much time
on it..my dateline is coming.
Thanks Jim
Sebastian Ho
On Thu, 2004-08-26 at 00:09, Jim Barrows wrote:
> > -Original Message-
> > From: Sebastia
My first web page is page contains links only. No Form nor Action.
UserMaint.jsp ---> AddUserProfileAction.java (AddUserProfile.jsp)
UserMaint.jsp constructs:
The link becomes http://.../AddUserProfile.jsp.do?method=setup
Does it mean that it cannot invoke the setup DispatchAction?
On Wed, 25 Aug 2004 16:22:34 -0700 (PDT), wrote:
> Do you know when 1.2.1 (or whatever is the latest version) is going
> to be GA'd? I see that it's been in Beta for about 5 weeks, but my
> boss won't let me install it to production boxes unless it's in GA
> status. We have a major issue with th
From: "Ricardo Andres Quintero"
> Hello im getting an error that
> i have a bean form with a boolean property
> but when i use ,
> i got a no getter method for propert myProp,
> but it does exist in the bean form.
> any ideas?
Post your code, otherwise we're just guessing. You've got 'checbox' no
> -Original Message-
> From: Ricardo Andres Quintero [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 3:04 PM
> To: Struts Users Mailing List
> Subject: RE: html:checkbox no getter method for propety
>
>
> Mensaje citado por Jim Barrows <[EMAIL PROTECTED]>:
>
> >
> >
> >
Tomcat seems to "hang on" to pages sometimes -- when I run into problems
that seem should *not* be happening -- I always dump the particular
folder in /webapps and 'rm -r' the /work directory.
Michael McGrady wrote:
Bill Siggelkow wrote:
Hmmm ... well, it works for me under Struts 1.2; however I
Mensaje citado por Jim Barrows <[EMAIL PROTECTED]>:
>
>
> > -Original Message-
> > From: Ricardo Andres Quintero [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 25, 2004 2:42 PM
> > To: [EMAIL PROTECTED]
> > Subject: html:checkbox no getter method for propety
> >
> >
> >
> > Hel
> -Original Message-
> From: Ricardo Andres Quintero [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 2:42 PM
> To: [EMAIL PROTECTED]
> Subject: html:checkbox no getter method for propety
>
>
>
> Hello im getting an error that
> i have a bean form with a boolean property
>
Hello im getting an error that
i have a bean form with a boolean property
but when i use ,
i got a no getter method for propert myProp,
but it does exist in the bean form.
any ideas?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Rick Reumann wrote:
As I side I really don't like Map backed ActionForms (I used to love
them:) for the same reason that I don't like DynaForms (basically a
Map form). The potential for problems later setting the properties is
what bothers me. There isn't any compile time safety. Nothing would
> -Original Message-
> From: Jesus Rodriguez [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 2:02 PM
> To: Struts Users Mailing List
> Subject: Reusing forms and configuring struts-config.xml
>
>
> Is there a good way of reusing forms? I have several pages which are
> the
Struts 1.2.1 is available here:
http://struts.apache.org/acquiring.html
and, yes, Struts 1.2.2 will be the latest nightly build for the day we roll it. (Looks
like today!)
-Ted.
On Wed, 25 Aug 2004 15:41:10 -0500, David Durham wrote:
> Bill Siggelkow wrote:
>
>> I am using Struts 1.2;
>>
> Whe
Bill Siggelkow wrote:
Hmmm ... well, it works for me under Struts 1.2; however I did notice
that your tag did not specify the required 'value'
attribute.
Here is the snippet I tested with:
Blah blah
Also, if I change to use the it does fail as
expected when it hits the ta
> -Original Message-
> From: Steven Leija [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 2:15 PM
> To: Struts Users Mailing List
> Subject: RE: Question about authentication
>
>
> I'm currently running into the same situation. If you added
> to your web-inf directory. D
Dunno -- it seems odd that you can serve up some static pages but not
others -- I would take a look at Tomcat's access logs (not catalina.out
but the localhost-log [blah..blah] files.
Towers, Stuart G wrote:
Yes, it's definitely relative URLs - I've even tried just a link to a
file at the same l
noAccess
*.jsp
Erik
Steven Leija wrote:
I'm currently running into the same situation. If you added to your web-inf directory. Do you
just create a dir called "jsp"? and treat that as your root? Is there any sort of
special path or configuration needed for this? I'm using Tomc
NP - by the way, if you do end up wanting to look at a custom
ExceptionHandler is really pretty easy -- about as easy as writing an
Action!
Bill Siggelkow
Erik Weber wrote:
And thanks for posting in the first place, or I might not have figured
this out.
Erik
Erik Weber wrote:
Bill, sorry, I fo
And thanks for posting in the first place, or I might not have figured
this out.
Erik
Erik Weber wrote:
Bill, sorry, I found the problem. I was invoking resetToken after
making sure the form was valid, but before one of these
declaratively-handled exceptions was being thrown, in my "save"
acti
I'm currently running into the same situation. If you added to your web-inf
directory. Do you just create a dir called "jsp"? and treat that as your root? Is
there any sort of special path or configuration needed for this? I'm using Tomcat 5.0.
Thanks,
Steven
> Hi
> I am going to use
Bill, sorry, I found the problem. I was invoking resetToken after making
sure the form was valid, but before one of these declaratively-handled
exceptions was being thrown, in my "save" action. I put the resetToken
invocation right after the isTokenValid invocation, out of habit. But
resetToken
Is there a good way of reusing forms? I have several pages which are
the exact same form but different URLS and headings. So I've broken it
up as follows:
1) preferences.jsp contains the form which is common.
2) yourpreferences.jsp has some stuff then includes preferences.jsp and
is referen
Bill Siggelkow wrote:
Try here -- though 1.2.2 should be about the same as the nightly me
thinks.
Nah. These struts committers kick out shoddy nightly effluvia.
:-D
http://cvs.apache.org/dist/struts/
Thanks.
- Dave
-
To unsubscr
Yes, it's definitely relative URLs - I've even tried just a link to a
file at the same level as the root - as soon as I try to navigate away
from the page explicitly mentioned in the Struts action I get the 404.
Stuart G Towers
Manager, Software Engineering
--
Try here -- though 1.2.2 should be about the same as the nightly me thinks.
http://cvs.apache.org/dist/struts/
David Durham wrote:
Bill Siggelkow wrote:
I am using Struts 1.2;
Where do you download 1.2?
Is it just a nightly build available here:
http://cvs.apache.org/builds/jakarta-struts/nigh
Bill Siggelkow wrote:
I am using Struts 1.2;
Where do you download 1.2?
Is it just a nightly build available here:
http://cvs.apache.org/builds/jakarta-struts/nightly/
Thanks,
- Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Are you sure that the "root" help file is using relative URLs? It sounds
like it might be using absolute or incorrect hrefs. Take a look at the
location in the browser so if its gone squirrelly.
Bill Siggelkow
Towers, Stuart G wrote:
Hi Group,
I'm trying to add some static HTML pages to my S
Yes, my "input" attribute is set to the JSP I came from. Also I tried
with and without the "path" attribute to the exception element itself.
No luck.
I am using 1.1. I wonder if this is the problem.
Where would the token field get "whacked" from? Whose field is it? There
is nothing required of
Erik Weber wrote:
Bill, my login action is almost identical to yours up until the forward
element, but I *am* losing the token. You said you thought this might
happen if I redirected back to the login page instead of forwarding, but
I don't even know how I would do that . . .
What version of St
> -Original Message-
> From: Towers, Stuart G [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 1:21 PM
> To: [EMAIL PROTECTED]
> Subject: [OT] Help files as Static HTML Content
>
>
> Hi Group,
>
>
>
> I'm trying to add some static HTML pages to my Struts application
> (r
Hi Group,
I'm trying to add some static HTML pages to my Struts application
(running under Tomcat) as Help files. I've added an action mapping to
point to the root of my help files - which is fine until the HTML starts
to reference other pages. I get 404 errors from the web server when
trying t
Hmmm ... well, it works for me under Struts 1.2; however I did notice
that your tag did not specify the required 'value' attribute.
Here is the snippet I tested with:
Blah blah
Also, if I change to use the it does fail as expected
when it hits the tag.
Bill Siggelkow
Mich
Bill Siggelkow wrote:
Michael McGrady wrote:
Rick Reumann correctly pointed out that I just need to use map.test
rather than value(test). Thanks.
True, map.test will work; I was answering the original question about
why value(test) did not work.
---
Michael McGrady wrote:
Rick Reumann correctly pointed out that I just need to use map.test
rather than value(test). Thanks.
True, map.test will work; I was answering the original question about
why value(test) did not work.
-
Bill, my login action is almost identical to yours up until the forward
element, but I *am* losing the token. You said you thought this might
happen if I redirected back to the login page instead of forwarding, but
I don't even know how I would do that . . .
What version of Struts are you using
If a bean named 'actionForm' is not present and we have the following:
Blah blah
Then nothing inside should be evaluated, should it? I
am getting an error that says that there is no bean called 'actionForm'
for the tag which I thought I avoided with the
tag. What's with this?
That
Internet meltdown predicted:
http://it.slashdot.org/article.pl?sid=04/08/25/1533213&tid=172&tid=95&tid=1
Now lets see how many of us can slip this to the marketroids so we can laugh at
them when they want to download the net to CD :)
Best of the slashdot comments:
Jihad: Holy War
e-had: Elect
Bill Siggelkow wrote:
Michael, for a map-backed property to work with the
property="value(key)" syntax the key must be defined as a String; the
methods must follow the pattern:
public Object getFoo(String key) {…}
public void setFoo(String key, Object value) {…}
Try that out and let me know if i
Well, if the page that displays the errors is "errors.jsp" then the path
should be "/errors.jsp".
If the path should be to an action ("errors.do") then you must have an
action defined for that mapping
Bill Siggelkow
Keith Bottner wrote:
I cannot get the configuration of my global-exception to
Erik,
I just tried an example of what you are saying (triggering a declarative
exception and then losing the token in the redisplayed form) and I did
not lose the token! Here is the action mapping I am using:
type="com.oreilly.strutsckbk.ch09.PasswordMatchException"/>
I am not quite sure I am following this (it would help to see the
relevant action mappings from your struts-config.xml but it sounds like
you may not be saving the token *in the action preceding the JSP that
contains the form*.
PC Leung wrote:
Error message is solved.
but the form does not disp
> -Original Message-
> From: Woodchuck [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 11:10 AM
> To: Struts Users Mailing List
> Subject: RE: ActionForm.validate() to dynamic input?
>
>
>
> --- Jim Barrows <[EMAIL PROTECTED]> wrote:
> > >
> > > well, the problem is becau
Michael, for a map-backed property to work with the
property="value(key)" syntax the key must be defined as a String; the
methods must follow the pattern:
public Object getFoo(String key) {…}
public void setFoo(String key, Object value) {…}
Try that out and let me know if it works for you.
Bill
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
> >
> > well, the problem is because my Action can be arrived at from
> > different
> > places. and upon requesting for my Action if there are validation
> > errors i want to return the user back to where they came from.
> >
> > i'm not sure about wha
As I side I really don't like Map backed ActionForms (I used to love
them:) for the same reason that I don't like DynaForms (basically a Map
form). The potential for problems later setting the properties is what
bothers me. There isn't any compile time safety. Nothing would prevent
you in your
Michael McGrady wrote:
Yet, when I put setValue("test","TEST") into the session, I get the
following exception from the attempted use of :
"No getter method for property value(test) of bean formName"
try: property="map.test"
that should call getMap and then retrieve the value
--
Rick
Sure Rick, and "where should me do it" might be a good
discussion (like the one that we`re all going on right
now).
A few months ago i had a similar discussion in a
forum.
Is someone is interested to hear more opinions, here
it is
http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topi
I am using the following in an action form:
public void setMap(Map map) {
this.map = map;
}
public Map getMap() {
return map;
}
public void setValue(Object key, Object value) {
map.put(key,value);
}
public Object getValue(Object key) {
return map.get(key);
}
Yet, when I put set
hi Craig!!
yup, i am using prepared statements and it safely handles the
single/double quotes beautifully.
i guess i still have to filter out sql constructs/keywords/statements
myself before passing the data to my prepared statement objects.
do you mean that instead of doing this:
i do this i
> -Original Message-
> From: Woodchuck [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 10:42 AM
> To: Struts Users Mailing List
> Subject: RE: ActionForm.validate() to dynamic input?
>
>
>
> --- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
> >
> >
> > > -Original Messag
Tate,
http://www.manning.com/catalog/view.php?book=husted&item=source
Download the husted_src.zip file it has the source.
*
Ruben Cepeda
[EMAIL PROTECTED]
*
Original Message Follows
From: "Tate Austin" <[EMAIL PROTEC
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Woodchuck [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 25, 2004 10:24 AM
> > To: Struts Users Mailing List; Hubert Rabago
> > Subject: Re: ActionForm.validate() to dynamic input?
> >
> >
> > hi Hu
On 25/8/04 11:43, "Rick Reumann" <[EMAIL PROTECTED]> wrote:
> I also added a very small war and some brief explanation of using both
> the nested tag and JSTL for working with nested beans in your forms.
Looks very useful, thanks.
One thing though: The WAR file I grabbed from that page seems to
For embedded quotes, use JDBC prepared statements ... they take care
of any escaping that is necessary for you.
For embedded HTML, use Struts tags like to render the
dynamic output to your page -- unless you tell them not to
(filter="false"), any sensitive characters in HTML will be
automatically
> -Original Message-
> From: Woodchuck [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 10:24 AM
> To: Struts Users Mailing List; Hubert Rabago
> Subject: Re: ActionForm.validate() to dynamic input?
>
>
> hi Hubert,
>
> thanks, but unfortunately i know about manually valida
hi Hubert,
thanks, but unfortunately i know about manually validating and
forwarding in the Action object. i was hoping there was a way to avoid
doing this.
this is because if you use ActionForm to validate, your Action object
does not even get created. this is more efficient, and it would be
n
On Wed, 25 Aug 2004 12:24:42 -0400, Tate Austin
<[EMAIL PROTECTED]> wrote:
> I am trying to track down the Apache struts scaffold source? I need a copy of the
> org.apache.struts.scaffold.ProcessAction .java file for instance, and for the life
> of me I cannot seem to locate a working version of
Leandro Melo wrote:
Rick,
i agree with you, i also use BeanUtils to populate my
forms.
But, this doesn't go far way from having your
ActionForms dependent on your TOs (or CustomTOs,
doesn' t matter).
Well I wouldn't say they are 'dependent' on each other except that it
makes it easier if the prop
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Woodchuck [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 25, 2004 9:44 AM
> > To: struts
> > Subject: best practice for handling single/double quotes, html
> > characters, sql injection/poisoning
> >
Hello,
I've been facing troubleshooting with declarative exception handling in
struts (tomcat 5.0, struts 1.1).
It does not work with :
web.xml : (no error page declaration)
http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>
http://java.sun.com/xml/ns/j2ee";
xmlns:xsi="http://www.w3.org/2001/XML
Sebastian Ho wrote:
I thought of putting the TO in session as well to prevent another DB
call.
This will work but if you are using a decent persistence mechanism
another call to your backend layer will have the results of that query
cached so the performance hit is extremely minimal. And unless t
This is the commons scaffold, I already pulled this one down. It does not have the
org.apacha.struts.scaffold.ProcessAction, or any process action in it.
- Original Message -
From: [EMAIL PROTECTED]
To: Struts Users Mailing List
Sent: Wednesday, August 25, 2004 12:26 PM
Subje
See http://marc.theaimsgroup.com/?l=struts-user&m=109302108205069&w=2
On Wed, 25 Aug 2004 09:56:01 -0700 (PDT), Woodchuck
<[EMAIL PROTECTED]> wrote:
> hihi,
>
> i'm using Struts' built-in ActionForm validation mechanism, and it
> works fine. If the ActionErrors container is not empty, it will
>
> -Original Message-
> From: Woodchuck [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 9:44 AM
> To: struts
> Subject: best practice for handling single/double quotes, html
> characters, sql injection/poisoning
>
>
> hihi,
>
> does struts or jstl have a good way to handle
hihi,
i'm using Struts' built-in ActionForm validation mechanism, and it
works fine. If the ActionErrors container is not empty, it will
automatically forward me to the specified value of the "input"
attribute of my Action definition.
however, is there a way to programmatically change this "inpu
hihi,
does struts or jstl have a good way to handle data coming back from the
database that contains things like:
- ' (single quote)
- " (double quote)
- <,> (html characters)
and also to prevent agains sql injection/poisoning attacks?
can someone shed light on best practice suggestions?
> -Original Message-
> From: Joe Hertz [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 9:22 AM
> To: 'Struts Users Mailing List'
> Subject: RE: ActionForm and Transfer Object
>
>
> > > 1) If you have a page which will update field A, but have
> > > field B as hidden,
> > >
Susan, I could not use your option, but it did lead me to a solution. I
would like to know if anyone has a better solution, since mine involves
catching and rethrowing an Exception, which is, however small, a
performance hit to take. Also, it kind of defeats the purpose of Struts'
declarative E
http://jakarta.apache.org/commons/sandbox/scaffold/downloads.html
"Tate Austin"
<[EMAIL PROTECTED]>
08/25/2004 12:24 PM
Please respond to
"Struts Users Mailing List" <[EMAIL PROTECTED]>
To
"Struts Users Mailing
List" <[EMAIL PROTECTED]>
cc
Subject
Scaffold
I am trying t
I am trying to track down the Apache struts scaffold source? I need a copy of the
org.apache.struts.scaffold.ProcessAction .java file for instance, and for the life of
me I cannot seem to locate a working version of it?
> > 1) If you have a page which will update field A, but have
> > field B as hidden,
> > and while the user on this screen is on the phone, someone
> > else updates
> > field B, when the user saves his record, the other guy's
> > field B will be
> > overwritten.
>
> You have this race condition
> -Original Message-
> From: Sebastian Ho [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, August 24, 2004 11:22 PM
> To: Struts Users Mailing List
> Subject: ActionForm and Transfer Object
>
>
> Hi
>
> People have been telling me that ActionForm should not be dependent on
> your TO. Simple
> -Original Message-
> From: struts Dude [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 5:50 AM
> To: Struts Users Mailing List
> Subject: Question about authentication
>
>
> Hi
> I am going to use custom tags for checking
> access to Jsp, if no user/bean bean in session,
> -Original Message-
> From: Sebastian Ho [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 5:43 AM
> To: Struts Users Mailing List
> Subject: strange request scope behaviour
>
>
> hi
>
> I am having this strange behavior that I don't understand.
> I keep having 'experiments
Very helpful! Thank you.
Erik
Daniel Perry wrote:
They effect browser behaviour.
cache-control - used by browsers and proxies to determine wether to cache
the document or not, and if so, for how long.
content-length - not sure if struts would do this for you, but i know there
are issues with some b
> -Original Message-
> From: andy wix [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 5:45 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Tiles and well formed html
>
>
> Hi,
>
> I'm not sure if this is the correct way to continue a thread,
> but here
> goes...
> I have trie
> -Original Message-
> From: Joe Hertz [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 25, 2004 8:51 AM
> To: 'Struts Users Mailing List'
> Subject: RE: ActionForm and Transfer Object
>
>
> Seems to me that the issue is in how you go about hitting the
> database with
> your TO.
>
Error message is solved.
but the form does not display with token when it displays
at the first time.
I think the following line does not work properly.
UserMaint.jsp constructs:
In the setup DispatchAction, I try to saveToken().
On Wed, 25 Aug 2004 10:19:04 -0500, Joe Germuska <[EMAIL PROTE
1 - 100 of 142 matches
Mail list logo