According to the Struts-Faces Apache Web page:
"The Struts-Faces Integration Library should work with any implementation of
JavaServer Faces, version 1.0 or later. It has primarily been tested against
version 1.1 of the JavaServer Faces reference implementation, available at:
http://java.sun.c
Just FYI since JSF and Struts can work together (which I am trying to get
working right now).
The Core JSF book has a second edition being released this June:
http://www.amazon.com/gp/product/0131738860/sr=8-3/qid=1145628942/ref=sr_1_3/102-1035027-3267300?%5Fencoding=UTF8
--Brad Simonin
-O
Buy both. The Core JSF book covers the HTMLDataTable and the DataTable Model
much better than the JSF in Action book. But the Core JSF book is missing a
great section on combining Struts with JSF. If you are looking for a book
where you can quickly find a paragraph on how to do something qui
Hi.
We are trying to integrate Struts and JSF. Is it possible to populate a JSF
Managed Java Bean from a Struts Action class?
If so, is there an example somewhere?
Thanks in advance,
--Brad Simonin.
-
To unsubscribe, e-mail:
I think Struts is pretty cool. But JSF seems to be the future so I am now
learning it. But I am getting really confused about Shale versus pure JSF
versus Struts. Maybe Craig McClanahan can give me some more insite into what I
should be learning for my next Java based web project. Is JSF the
If I were going to send arguments to a normal servlet from a hyperlink I would
have the following:
http://servlet_name?employeeId=xx&account=xx
I want to do the same thing for a struts application and then populate the form
bean with those arguments but I can't think of how to do it.
T
Yeah, I do it this way:
In the ApplicationResources.properties:
errors.email=invalid e-mail address.
And in the jsp:
:
On 11/18/05, Aladin Alaily <[EMAIL PROTECTED]> wrote:
> Problem solved... must be Friday.
>
> Aladin
>
>
> > Hello,
> >
> > I am using struts 1.2.7 and am having trouble o
Actually I got it to work elegantly with the following code:
But thanks for the link anywaysI will use it in the future.
Have you stumbled on this link: http://husted.com/struts/tips/007.html
I think it's almost verbatim out of t
Yes now it makes sense and the Wizard is working as it should or at least as it
should if you are using LookupDispatchAction (which to me is an elegant wizard
solution).
I agree with Michael Jouravlev the wizard is working as designed. I guess you
*could* put the first name on the second page
I hope I understand what you are asking. A couple of things come to mind about
threads and Servlets. If one uses Instance variables in Servlets then each
instance of that Servlet has a unique variable and there is no data corruption.
However if one uses Class variables then each instance of
Lets say I have the following multibox:
I have a List of POJOs with a name and a boolean value for each POJO. I want
to change the boolean value to true if a user check marks a specific item in
the List.
If I wasn't in struts I could easily do this if I were using a Servlet. B
Never mind -- I fixed it with the following:
-Original Message-
From: Simonin, Bradley K. (Brad)
Sent: Fri 11/11/2005 10:38 AM
To: Struts Users Mailing List
Subject: RE: I want to create a List of items and then allow the use
Okay. Let me show you what I have real quick. In my ValidatorForm I have a
instance variables and a method:
private List groups = null;
private GroupBean groupBean = null;
public void setGroups() {
this.groups = new LinkedList();
this.groupBean = new GroupBean("Cats", false);
g
It seems so simple by I am brain dead today.
Would I create a bean that is just a collection and then populate that
collection with the List I want the user to choose from? How would I put the
list in the jsp?
Thanks in advance,
--Brad.
---
WellI am not a Struts expert yetbut according the book "Struts The
Complete Reference" Chapter 6 on page 91 a guy named David Winterfeldt created
the Validator framework as a third party add-on to Struts. Validator was later
integrated into the core Struts code base and has since been d
Here is one way I did it using LookDispatchAction I am sure there are other
ways to do this also:
in my "next" section of the LookupDispatchAction I put:
public class AddPSLUserWizardAction extends LookupDispatchAction {
public ActionForward next(ActionMapping mapping, ActionForm form,
Hi. arnaud. I hope I understand your question.
Each jsp pages for the lookupdispatchaction should have a page element added:
Then in your validation.xml file have:
name="wizardForm">
the action mappings should look something like this:
Thanks for the heads up. I am learning both libraries right now.
--Brad
-Original Message-
From: Michael Jouravlev [mailto:[EMAIL PROTECTED]
Sent: Tue 11/1/2005 2:32 PM
To: Struts Users Mailing List
Subject: Re: Question on http://displaytag.sourceforge.net/
On 11/1/05, [EMAIL PROTECT
Has anyone used the display tag library at http://displaytag.sourceforge.net/
in a Struts application?
If so what did you think of it?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECT
Are these tag libs seperate from what comes with Struts 1.2.7? For example I
am interested in using Struts to build a data grid application but I found a
datagrid library at:
http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/intro.html
Are datagrid capabilities not included in Struts
Hi Ross. I created a User Wizard to add Users to Microsoft Active Directory
from Linux. I did look at the Workflow Extensions as a possibility but I found
it cumbersome to use and chose to create a Wizard using pure Struts and not the
extensions. I have to tell you the Struts knowledge I gain
Thank you so much for passing on the URL. I really appreciate it. It helped
create my own validation rule using Struts 1.2.7.
--Brad Simonin
-Original Message-
From: Niall Pemberton [mailto:[EMAIL PROTECTED]
Sent: Tue 10/25/2005 5:44 PM
To: Struts Users Mailing List
Subject: Re: Quest
Okay let me rephrase this. Here is the "required" validator rules for Struts
1.2 from the validator-rules.xml file:
Does some know how to create a new rules using these methodParams? Is there an
example out there somewhere?
--Brad Simonin
-Original Message-
From: [EMAIL PROTECTED
Hello there.
Are there examples for creating a new Validation Rule using a new class for
validating and then updating the validator-rules.xml file? I found a few
examples but they are for Struts 1.1. Below is a test class I am creating and
then a copied version of a rule added to the validato
The book "Jakarta Struts Cookbook" has a small recipe on pages 302 to 305 on
connecting Struts to Hibernate and the book "Struts Recipes" has a recipe on
pages 377 to 392 on connecting Hibernate to Struts.
-Original Message-
From: Fulgencio Comendeiro, Eduardo [mailto:[EMAIL PROTECTED]
Hey everyone.
Thanks for the input on my problems with my LookupDispatchAction.
I was able to get the wizard steps working using the example on page 201 of the
book:
Jakarta Struts Cookbook.
Now I am off to do the business logic. Again, thanks for all the help.
--Brad
-Original Message
Hi. I am using struts 1.2.7. My struts-config-xml file has the following:
my jsp has the following:
But I get the following error in tomcat:
javax.servlet.ServletException: Request[/mywizard1] does not contain handler
parameter named 'method'.
Can someone save me
27 matches
Mail list logo