FYI
> -Original Message-
> From: Peter A. Pilgrim [mailto:[EMAIL PROTECTED]
> Sent: 08 September 2004 07:12
> To: Struts Developers List
> Subject: [ANN] Bridgetown IoC Framework
>
>
>
> Hi
>
> I have been quietly working on my own Inversion of Control lightweight
> framework over the
Hi,
Has anyone else had a problem with this?
I am using Struts 1.1 but presume it has worked in this and previous
versions as it must come up in almost every project.
I cannot switch validation to false as my submit button does require
validation.
I suppose I could put the cancel and submit butto
What I usually do is check for isCancelled() in my Action (or
BaseAction) before anything else so I can forward to the appropriate
place if cancel was clicked.
As for the validation, I had to put my validation in a private method
in the Action instead of using the one in the ActionForm.
On Wed, 0
One note about tiles is that you cannot redirect to a tiles-definition
since it's not a valid URI. The usual way to get around that is to
create an ActionMapping that uses a ForwardAction and pass the tiles
definition as your parameter.
-Yves-.
On Wed, 8 Sep 2004 08:28:21 +0200, [EMAIL PROTECTED
Marco Tedone wrote:
>> Interesting, I also build commercial apps, and try to use wizards
>> whenever
> possible to keep things >simple for my users
>
> We prefer to keep things easy for us also for maintainability as we
> look at the project long life term.
Doing and maintain wizards with stru
Hi Bill
Thanks for your suggestion. I have switched to ValidatorActionForm for
my validation and now get the desired result (validation of only the
fields that appear on the specific page). So problem solved!
I am curious though about your interpretation of "wizard style". The
form is indeed
Hmm, not a lot of comments on this. I guess there is a consensus on the
matter (that, or no-one really gives a damn).
A quick followup on this; how could I achieve both
a) decoupling of my business classes from Struts
b) internationalization
if I validate in my business class?
1)
if (alreadyExist
Having overcome my validation problem with help from the list (thanks
Bill) I now find myself banging my head against another wall.
I now have a multi-page form backed by an ActionForm and an Action that
appears to work fine (stepping from one page to the next, accepting
input, validating it, s
Hai All,
Will it be possible in the Struts to do some mapping between the form
fields and
underlining database by writing queries in the xml file.
I want to develop a prototype with some functionality and do not want to
do
coding for this or minimal
I saw similar functionality with JDBC Connectio
I'm not exactly sure what you are asking. If you asking if Struts supports
putting sql in the configuration files, then the answer is no. If you
wanting some automatic framework to write your sql for you, then the answer
is yes and no. No, you can't do it with Struts config files, but yes, it
ca
[EMAIL PROTECTED] wrote:
Hello,
is ther any way I can forward to a tile-definition?
That is the only way you can ever get to a page at all in Struts, so the
answer has to be "Yes".
Wrong, you can forward to a JSP page or to a servlet (used in StrutsCX) or
to another action or to nothi
[EMAIL PROTECTED] wrote:
Hello,
is ther any way I can forward to a tile-definition?
That is the only way you can ever get to a page at all in Struts, so the
answer has to be "Yes".
Wrong, you can forward to a JSP page or to a servlet (used in StrutsCX) or
to another action or to nothi
Bill, this is for sure a disadavantage. Do you see
others
Actually, we're suceptible to this avantage in all
forms, but i agree with you that if i have a base form
with all atributes the chances of things getting
messed up is a log bigger.
--- Bill Siggelkow <[EMAIL PROTECTED]> escreveu:
>
Bill, wait a minute, i just thought on something.
I wouldn't matter if a hacker set a attributes in my
BaseActionFomr, if i don't use it to build my DTOs. I
mount my DTOs case specific, so i'd just ignore the
hacker set attribute.
But if this hacker set attribute is in my DTO, i agree
that i could
Can I add struts tags dynamically after loading the page, using
javascript probably???
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Simple answer : no - Struts tags are converted to HTML tags during
rendering
-Opprinnelig melding-
Fra: Hadeel Rashad [mailto:[EMAIL PROTECTED]
Sendt: 9. september 2004 01:10
Til: 'Struts Users Mailing List'; [EMAIL PROTECTED]
Emne: Adding Tags Dynamically
Can I add struts tags dynamic
- JSP tags are translated into java code during JSP compilation BEFORE any request
processing.
- Javascript is executed by browser AFTER reponse has been built by server.
Tags must be 'statically' set in JSP
What do you ant to do ?
Nico.
>
> Can I add struts tags dynamically after loading t
Peter, this sounds interesting, but what would Bridgetown offer
over a more mature IoC container like Spring?
robert
> -Original Message-
> From: Pilgrim, Peter [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 3:52 AM
> To: Struts User Apache (E-mail)
> Subject: FW: [ANN] B
No!
Struts tags are executed on the server.
Once user has received the page, it is running on the client browser, not on
the server, so struts tags are no use!
What do you want to do on the client? You probably want to use just
javascript!
Daniel.
> -Original Message-
> From: Hadeel
struts çæåèåçæäïæçååæï
[EMAIL PROTECTED]
www.matrix.org.cn
On Mon, 6 Sep 2004 07:25:36 -0700 (PDT), lixin chu <[EMAIL PROTECTED]> wrote:
> Hi,
> I gies a strange problem, the messages are not
> displayed. here is the code in my Action:
>
> messages.add(ActionMessages.GLOBAL_MESSAGE, new
>
I want when I press add input, I add the input in a definite place
-Original Message-
From: Nicolas De Loof [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 08, 2004 6:09 AM
To: Struts Users Mailing List
Subject: Re: Adding Tags Dynamically
- JSP tags are translated into java code d
This is off topic to the Struts list.
Also not forgetting Avalon, PicoContainer, etc from my POV. Admittedly
these "mature" containers have been around for sometime.
Here are my motivations:
1) To scratch the itch. Build a tiny container/kernel that
I could experiment with in Expresso / Struts.
You can combine Hibernate and FormDef to get this mapping. Create
your transfer objects and map them to your database using Hibernate,
then use FormDef to map formbeans to your transfer objects.
Hubert
On Wed, 8 Sep 2004 08:20:08 -0400, James Mitchell <[EMAIL PROTECTED]> wrote:
> I'm not exactl
Do you want to do this for a single extra field? or any number of extra
fields?
If single, then just hide it using css, and use a bit of javascript to
unhide it.
If multiple, you can achieve this using struts by having the form submit,
add extra item in a list (where each item represents a row),
Maybe there weren't a lot of comments because people agreed with Robert. :)
For your followup, the reason you get one of (a) and (b) is because
you're thinking that the error message should come from the business
tier. I like to think that it shouldn't. Error messages are a
presentation tier re
Hello all,
The following piece of code appears in my validate method of an actionForm.
How can I make work correctly?
errors.add(ActionErrors.GLOBAL_MESSAGE, new
ActionMessage("errors.required","activity.description"));
where "activity.description" is a key in my messages.properties file, jus
The first parameter of the ActionMessage constructor is the message
key. The rest (which are optional), are the actual parameters to the
message. If your parameter is itself in need of evaluation, you'll
need to do that yourself before you pass that on to ActionMessage.
For that, you can call
ge
Hubert,
Are you unable to do this from an ActionForms validate method?
Joshua
-Original Message-
From: Hubert Rabago [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 08, 2004 9:50 AM
To: Struts Users Mailing List
Subject: Re: How to resolve label in ActionMessage?
The first param
Ok,
then you have to define a Form with an array field:
private String[] values;
setValues(String[] values) ...
getValues() ...
then you will define the input tag in your jsp (you may use or not Struts HTML tag):
you should place it inside some HTML container, like or setting its id
attri
You might be able to. Action.getResources() is actually implemented as
return ((MessageResources) request.getAttribute(Globals.MESSAGES_KEY));
So try that to get the message resources, then call getMessage() on that.
On Wed, 8 Sep 2004 09:59:03 -0400, White, Joshua A (HTSC, CASD)
<[EMAIL PROT
Hi,
i believe that a lot of developers use BeanUtils to
copy the data from ActionForms to the specific DTOs.
I've used this approach, but right now i'm facing a
problem, not a big one.
I've allways been confused about working with dates in
Java. I got a jsp where the user must input a date in
the
Well, if I recall from your original post you only wanted to validate
the fields on the current page only. Validator provides support for a
page attribute that you can use for wizard-style forms. Validator will
use that attribute to validate form fields on the current page and any
previous page
True -- some people use bulk property setters like those provided by
BeanUtils to move data from the ActionForm to the DTO -- I think that is
primarily where you would need to be careful. Personally, I am not fond
of the use of an uber form; it doesn't seem very object-oriented;
however, I can
Are you setting scope="session" for the actions in your
struts-config.xml? If so, I'd take it through a debugger.
- Bill Siggelkow
Langdon Stevenson wrote:
Having overcome my validation problem with help from the list (thanks
Bill) I now find myself banging my head against another wall.
I now
Hi All,
I am trying to call a method on ejb through business delegate which in
turn is called by struts action class.
I have created a project in Jdeveloper and this is working fine.
When I created an ear file using ant script and deployed this in oc4j903
then I got following error
I have your solution:
Find out which method is being called and do not call that method, it does
not exist.
--
James Mitchell
Software Engineer / Open Source Evangelist
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx
- Original Message -
From: "Viral_Thakkar" <[EMAIL PROTECTED]>
To: "Struts
Method exists both in BD and EJB still this error is coming...
Below is the stack trace..
500 Internal Server Error
java.lang.NoSuchMethodError
at
com.tropics.web.commonservices.services.batch.B
That's good information; I read it with vigor... As you can tell, I'm
excited by the prospects of using XDoclet instead of .
And, I think I get the gist of Struts related support provided in
XDoclet, but I have a couple of questions. 1 -- How good is the
DynaValidatorForm support? I saw the
> -Original Message-
> From: Leandro Melo [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 07, 2004 5:48 PM
> To: struts jakarta
> Subject: ActionForm with all application attributes
>
>
> Hi,
> i sent this question yesterday, but as nowbody
> answered me, i trying it again with a
> -Original Message-
> From: Janne Mattila [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 3:49 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Proper place for validation
>
>
> Hmm, not a lot of comments on this. I guess there is a
> consensus on the
> matter (that, or no-o
> -Original Message-
> From: Leandro Melo [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 5:40 AM
> To: Struts Users Mailing List
> Subject: Re: ActionForm with all application attributes
>
>
> Bill, wait a minute, i just thought on something.
> I wouldn't matter if a ha
I should probably post this stuff on XDoclet's list ...
David Durham wrote:
That's good information; I read it with vigor... As you can tell, I'm
excited by the prospects of using XDoclet instead of .
And, I think I get the gist of Struts related support provided in
XDoclet, but I have a couple
> -Original Message-
> From: Hubert Rabago [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 6:39 AM
> To: Struts Users Mailing List
> Subject: Re: Proper place for validation
>
>
> Maybe there weren't a lot of comments because people agreed
> with Robert. :)
>
> For yo
BeanUtils.copyProperties() method does not work with date fields.
One needs to copy it manually using DateFormatter ot something. To avoid
garbage getting into date variable in domain object, one should name it
other way.
For example, if domain object has : Date paymentDate; you should rename the
You can register a different converter that BeanUtils uses to copy from
a string to a date. Write your own converter, using the date format you
need, then use ConvertUtils.register(...) to register it.
That's what I do anyhow.
-Original Message-
From: Leandro Melo [mailto:[EMAIL PROTECTE
Jim Barrows wrote:
-Original Message-
From: Janne Mattila [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 08, 2004 3:49 AM
To: [EMAIL PROTECTED]
Subject: RE: Proper place for validation
Hmm, not a lot of comments on this. I guess there is a
consensus on the
matter (that, or no-one
Jim, all the code i`m talking about is inside a Base
Action Form. It seems the you`re thinking that my code
is inside a action, aren`t you?? Maybe a
misundertanding, maybe mine, maybe yours.
So, i agree with some of your comments, but not on all
of thems. In fact, i`m gonna to take a look about th
Could you point us at some code that does this? Do you customize in the
action, the form or the DTO?
Bryce Fischer wrote:
You can register a different converter that BeanUtils uses to copy
from a string to a date. Write your own converter, using the date
format you need, then use ConvertUtils.
I also would like to see this "converter" code and how
to use it!!!
--- Jason King <[EMAIL PROTECTED]> escreveu:
> Could you point us at some code that does this? Do
> you customize in the
> action, the form or the DTO?
> Bryce Fischer wrote:
>
> > You can register a different converter that
Hi,
Is there an easy way to have the JSTL forEach tag sort the collection of
items before looping through them? Currently I have a scriptlet doing it
before the loop tag, but this is pretty ugly.
Thanks
-
To unsubscribe, e-mai
Kind of being picky here, but I wouldn't switch the property name like
that -- instead; since the form field would be a String I would use
String getPaymentDateString() {...} in the ActionForm and
Date getPaymentDate() {...} in the domain object.
Desai, Sunny wrote:
BeanUtils.copyProperties() met
> -Original Message-
> From: Leandro Melo [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 9:48 AM
> To: Struts Users Mailing List
> Subject: RE: ActionForm with all application attributes
>
>
> Jim, all the code i`m talking about is inside a Base
> Action Form. It seems
http://jakarta.apache.org/commons/beanutils/api/index.html
Leandro Melo wrote:
I also would like to see this "converter" code and how
to use it!!!
--- Jason King <[EMAIL PROTECTED]> escreveu:
Could you point us at some code that does this? Do
you customize in the
action, the form or the DTO?
B
> -Original Message-
> From: Craig Dickson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 9:51 AM
> To: Struts List
> Subject: [OT] How to sort with ?
>
>
> Hi,
>
> Is there an easy way to have the JSTL forEach tag sort the
> collection of
> items before looping throu
Since I have rewrited an important part of my application using struts
I've had this problem several times. It didn't happen in development
environment, with only one or two users using the application at the
same time. It happends in production with 20 or 30 users.
* Development environment: Debi
The custom converter is done independently of the action, form or DTO.
First step is to implement the interface
org.apache.commons.beanutils.Converter.
Keep in mind that the converter you are writing uses the appropriate
converter for the original class. So, if you were converting from a
String
> -Original Message-
> From: calandraca [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 10:04 AM
> To: Struts Users Mailing List
> Subject: strange random problem
>
>
> Since I have rewrited an important part of my application using struts
> I've had this problem several
How are you doing the database interactions with your MS SQL Server? JDBC
with some ODBC connectivity kit or some other way?
Regards,
David
-Original Message-
From: calandraca [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 08, 2004 1:04 PM
To: Struts Users Mailing List
Subject: stra
Do it in the business layer that fetches the collection -- or in the
database -- or store the data in a sorted collection (like SortedTreeMap
or some similar animal).
Craig Dickson wrote:
Hi,
Is there an easy way to have the JSTL forEach tag sort the collection of
items before looping through th
--- Jim Barrows <[EMAIL PROTECTED]> escreveu:
>
>
> > -Original Message-
> > From: Leandro Melo
> [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, September 08, 2004 9:48 AM
> > To: Struts Users Mailing List
> > Subject: RE: ActionForm with all application
> attributes
> >
> >
> > Jim,
Thanks for your reply and help.
if I have
Register
In my struts.config.xml file, I should have action
mapping like this:
What if I do a global forward:
Register
what kind of mapping should I specify in the
struts-config.xml file?
--- Caroline Jen <[EMAIL PROTECTED]> wrote:
> Thanks
> -Original Message-
> From: Leandro Melo [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 10:25 AM
> To: Struts Users Mailing List
> Subject: RE: ActionForm with all application attributes
>
>
> --- Jim Barrows <[EMAIL PROTECTED]> escreveu:
> >
> >
> > > -Origina
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 10:34 AM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (How to
> Do Global
> Forward)
>
>
> Thanks for your reply and help.
>
> if I have
Thanks a lot for being around and helping us.
-CJen
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Caroline Jen [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, September 08, 2004 10:34 AM
> > To: Struts Users Mailing List
> > Subject: RE: Action Mapping F
Thanks, i`ll take a look at that in the next days!!
--- Jim Barrows <[EMAIL PROTECTED]> escreveu:
>
>
> > -Original Message-
> > From: Leandro Melo
> [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, September 08, 2004 10:25 AM
> > To: Struts Users Mailing List
> > Subject: RE: ActionFor
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 10:56 AM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (How to
> Do Global
> Forward)
>
>
> Thanks a lot for being around and helping us.
Hi, I am in trouble again.
I am using tiles. I have three piece of tiles:
upperbar, sidelinks, and lowerbar. All three tiles
are displayed with contents shown in the center
(toward right hand side) of the web page.
Now, I click on one of the links provided in the
'sidelinks' tile and I got th
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 11:54 AM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> Hi, I am in trouble again.
>
> I am using tiles. I
I've got a page in my Struts web app that displays a date. It uses
to read a date from the form bean and format it for
display. I also want to put that date into a field so that
it can be reloaded when the page is submitted and redisplayed.
The getter returns a Date. The tag retrieves also retr
I have tried both
action="/ContentMgmt" and
action="/ContentMgmt.do">
They do not make any difference. Error message is the
same. And it is HTTP Status 400.
Nothing gets displayed in the browser but the error
message. I tried right-click "View Source". None of
my code appears in the "View
You wouldn't happen to have another setter method that accepts a different
type (e.g. Date) would you?
for example:
...
...
public void setExpirationDate(Date expirationDate){
...
...
--
James Mitchell
Software Engineer / Open Source Evangelist
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 12:45 PM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> I have tried both
>
> action="/ContentMgmt" and
>
> -Original Message-
> From: James Mitchell [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 12:46 PM
> To: Struts Users Mailing List
> Subject: Re: Date format woes
>
>
> You wouldn't happen to have another setter method that
> accepts a different
> type (e.g. Date) wou
I have a question about struts. I know Strut is good
framework for designing a large website. It has a lot
of classes that help to design well scaled websites.
What about performance? Does it slow the processing of
request. if speed is the main issue is it good idea to
use strut?if website needs t
> You wouldn't happen to have another setter method that
> accepts a different type (e.g. Date) would you?
>
> for example:
>
> ...
> ...
>
> public void setExpirationDate(Date expirationDate){
>
> ...
> ...
No, only what I posted.
--
Tim Slattery
[EMAIL PROTECTED]
--
> -Original Message-
> From: Vitalii [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 12:52 PM
> To: [EMAIL PROTECTED]
> Subject: is strut a good choice in my case.
>
>
> I have a question about struts. I know Strut is good
> framework for designing a large website. It
>From a pure JavaBean perspective, a class like:
package com.dotech;
import java.io.Serializable;
import java.util.Date;
public class ConfusedBean implements Serializable {
public void setDate(String s) {}
public Date getDate() { return null; }
}
is seen by Introspector as (Sun JDK 1.4.
I do not fully understand. Do you want me to actually
code instead of
Manage the
Content
in my links.jsp file?
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Caroline Jen [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, September 08, 2004 12:45 PM
> >
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 1:09 PM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> I do not fully understand. Do you want me to actually
The wrote:
>
>
> > -Original Message-
> > From: Caroline Jen [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, September 08, 2004 1:09 PM
> > To: Struts Users Mailing List
> > Subject: RE: Action Mapping From a JSP to Another
> JSP (In Trouble
> > Again!!!)
> >
> >
> > I do not fully und
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 1:18 PM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> The
> None of my tiles or content is displayed. I on
> From a pure JavaBean perspective, a class like:
>
> package com.dotech;
>
> import java.io.Serializable;
> import java.util.Date;
>
> public class ConfusedBean implements Serializable {
> public void setDate(String s) {}
> public Date getDate() { return null; }
> }
>
> is seen by Intr
OKay, I see what you mean now. I am a kind of dumb.
Before I clicked on the link, it shows:
Manage the
Content
in the browser.
DHSInfo is the name of my application in the
$TOMCAT/webapps directory.
--- Jim Barrows <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Caro
Well, make sure you use more than one Strut -- you will want to scale
the number of Struts to the number of users. For each request, you will
have one Strut. Does this make sense? ;)
Vitalii wrote:
I have a question about struts. I know Strut is good
framework for designing a large website. It
> -Original Message-
> From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 1:23 PM
> To: 'Struts Users Mailing List'
> Subject: RE: Date format woes
>
>
> > From a pure JavaBean perspective, a class like:
> >
> > package com.dotech;
> >
> > import
So THAT is how we REALLY setup STRUTS!
Duh! (slaps his own forehead).
-David
-Original Message-
From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow
Sent: Wednesday, September 08, 2004 4:28 PM
To: [EMAIL PROTECTED]
Subject: Re: is strut a good choice in my case.
Well, make su
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 1:28 PM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> OKay, I see what you mean now. I am a kind of dumb.
No
> -Original Message-
> From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow
> Sent: Wednesday, September 08, 2004 1:28 PM
> To: [EMAIL PROTECTED]
> Subject: Re: is strut a good choice in my case.
>
>
> Well, make sure you use more than one Strut -- you will want to scale
> the
Jim,
Sorry for bothering so much. My code, mapping,
path, ., etc. are correct. Problem is with the
Tomcat server.
CJen
--- Caroline Jen <[EMAIL PROTECTED]> wrote:
> OKay, I see what you mean now. I am a kind of dumb.
>
> Before I clicked on the link, it shows:
>
> Manage the
> Cont
Jim,
If you know what I am saying then we're both in trouble. Primarily, I
am just being weird. Comes from a combination too much overexposurer to
the wild life when I was younger and too much exposure to the family
life now that I am older -- in other words, stick a fork in me -- I'm
done :)
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 1:51 PM
> To: Struts Users Mailing List
> Subject: RE: Action Mapping From a JSP to Another JSP (In Trouble
> Again!!!)
>
>
> Jim,
>
> Sorry for bothering so much. My code, m
Bill Siggelkow wrote:
Brain spouts sludge
Mouth obeys brain
White coats come.
I was going to post something about stress testing ...
- Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECT
> -Original Message-
> From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow
> Sent: Wednesday, September 08, 2004 1:56 PM
> To: [EMAIL PROTECTED]
> Subject: Re: is strut a good choice in my case.
>
>
> Jim,
> If you know what I am saying then we're both in trouble.
I am never
> -Original Message-
> From: David Durham [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 08, 2004 2:00 PM
> To: Struts Users Mailing List
> Subject: Re: is strut a good choice in my case.
>
>
> Bill Siggelkow wrote:
>
> > Brain spouts sludge
> > Mouth obeys brain
> > White coat
On Tuesday 07 September 2004 09:39 am, Bill Siggelkow wrote:
> Darryl Pierce wrote:
> > On Monday 06 September 2004 07:49 am, James Holmes wrote:
> >>As far as I know, Easy Struts does not work with Eclipse 3. Struts
> >> Console does though. It provides similar functionality (Easy Struts is
> >>
Hi Bill
Indeed I do have scope set to "session" in struts-config.xml. When unit
testing in debug through IDEA I can see the object in the session being
populated step by step, however when I run the compiled web app under Struts
with JWebUnit, or a browser, I get the problem. I am up against my
Hi Bill
Indeed I do have scope set to "session" in struts-config.xml. When unit
testing in debug through IDEA I can see the object in the session being
populated step by step, however when I run the compiled web app under Struts
with JWebUnit, or a browser, I get the problem. I am up against my
Hi Bill
Indeed I do have scope set to "session" in struts-config.xml. When unit
testing in debug through IDEA I can see the object in the session being
populated step by step, however when I run the compiled web app under Struts
with JWebUnit, or a browser, I get the problem. I am up against my
Hi Bill
Indeed I do have scope set to "session" in struts-config.xml. When unit
testing in debug through IDEA I can see the object in the session being
populated step by step, however when I run the compiled web app under Struts
with JWebUnit, or a browser, I get the problem. I am up against my
Hi Bill
Indeed I do have scope set to "session" in struts-config.xml. When unit
testing in debug through IDEA I can see the object in the session being
populated step by step, however when I run the compiled web app under Struts
with JWebUnit, or a browser, I get the problem. I am up against my
1 - 100 of 126 matches
Mail list logo