struts-faces bug?

2004-03-10 Thread Oliver
Hi, After spending hours with error-searching and reading other forums and mailinglists, I am at a loss. I think there is an error in the struts-faces library. I am using Tomcat 5.0.19, JSF1.0 reference implementation from Sun and struts-faces.jar from 6.3.04. The JSF examples work trouble free

RE: struts-faces bug?

2004-03-10 Thread Oliver
: struts-faces bug? Hi, After spending hours with error-searching and reading other forums and mailinglists, I am at a loss. I think there is an error in the struts-faces library. I am using Tomcat 5.0.19, JSF1.0 reference implementation from Sun and struts-faces.jar from 6.3.04. The JSF

Re: Updated Struts-Faces Integration Library

2004-03-08 Thread amind
to support experimentation and trigger bug reports so that we can complete a release in the next couple of months. Pick up the files dated 20040308 (or later) from: http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/ Key new features (see the README.txt file for full

Updated Struts-Faces Integration Library

2004-03-08 Thread Craig R. McClanahan
experimentation and trigger bug reports so that we can complete a release in the next couple of months. Pick up the files dated 20040308 (or later) from: http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/ Key new features (see the README.txt file for full details): * Supports

struts-faces-integration-lib

2004-03-04 Thread Matthias Wessendorf
Hi, i noticed, that JSF became final. Now i asked myself, when the struts-faces-lib will be shipped? that one, that works with 1.0_final... ;-) Is main focus now working on struts_1.2? or is the integration-lib independent of struts-1.2 because it is in contrib-folder! Thanks for answer

Re: struts-faces-integration-lib

2004-03-04 Thread Craig R. McClanahan
Quoting Matthias Wessendorf [EMAIL PROTECTED]: Hi, i noticed, that JSF became final. Now i asked myself, when the struts-faces-lib will be shipped? that one, that works with 1.0_final... ;-) Well, it has to work first :-). I'm finishing up the debugging before I commit a version

struts-faces doesn't update pages correctly when using tiles

2004-02-27 Thread Diego Louzán Martínez
I'm refactoring a Struts+JSTL application to use JSF too, and I have a problem when using the struts-faces library. Everything works ok until I use a ForwardAction to navigate to an action like this: action path=/MainPage type=org.apache.struts.actions.ForwardAction parameter=.mainPage

Struts-Faces Xkins

2004-01-19 Thread Guillermo Meyer
I'm working in a set of renderers to be used with JSF using Xkins. In this release (0.2) it supports Struts-Faces integration. If anyone is interested in this, please take a look at http://sourceforge.net/projects/xkins It's very simple to try the example (works upon Struts-Faces demo). I'm

Can I use template library tags directly with struts-faces?

2004-01-15 Thread Diego Louzán Martínez
I'm porting a Struts application to JSF using struts-faces. Thisapplication uses the template tags from Struts and for now I don'twant to migrate them to Tiles. My question is: can I use template tagsdirectly with the implementation of the request processor ofstruts-faces (FacesRequestProcessor

Doubts about FacesRequestProcessor on struts-faces

2004-01-05 Thread Diego Louzán Martínez
Ok, I suppose this is a direct question to Craig as the maintainer ofstruts-faces:I'm studying JSF and I need to integrate a Struts application with it,so I am studying struts-faces too. My problem is that this applicationuses a custom RequestProcessor that implements the ProcessingFilterpattern

Re: Doubts about FacesRequestProcessor on struts-faces

2004-01-05 Thread Craig R. McClanahan
Quoting Diego Louzán Martínez [EMAIL PROTECTED]: Ok, I suppose this is a direct question to Craig as the maintainer ofstruts-faces:I'm studying JSF and I need to integrate a Struts application with it,so I am studying struts-faces too. My problem is that this applicationuses a custom

Nighty Builds of Struts-Faces Integration Library

2003-12-24 Thread Craig R. McClanahan
Nightly binary builds of the Struts-Faces Integration Library, updated to work with the new beta release of JavaServer Faces, are now available: http://cvs.apache.org/builds/jakarta-struts/nightly/struts-faces/ As always, the source code for this library is in the contrib/struts-faces

Re: struts-faces Roadmap

2003-11-25 Thread Craig R. McClanahan
-integrate) with partial success, but I would prefer that it was supported directly in struts-faces. thanks in advance, nadeem The plan is definitely to keep struts-faces up to date with the upcoming beta and final releases of JavaServer Faces. Ensuring that Tiles support works is very high

struts-faces Roadmap

2003-11-23 Thread Nadeem Bitar
prefer that it was supported directly in struts-faces. thanks in advance, nadeem - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Problem with Struts-faces example app

2003-09-25 Thread Daniel Smeltzer
I'm attempting to write some things with the struts-faces library. I have had some difficulty and decided to step back and look over the example again. Now, I'm having issues getting the example app to work! I have a fresh install of Tomcat 5.0.12b that I'm using. I have deployed the example

Re: struts-faces

2003-09-18 Thread Ted Husted
Likewise, if anyone really wanted throwaway, non-threadsafe Actions, there's a nice technique that Maverick uses. A regular singleton Action is used as a wrapper. When execute is called, the wrapper instantiates a new instance of the desired type and returns the outcome of its execute. But

Re: struts-faces

2003-09-18 Thread Ted Husted
Craig R. McClanahan wrote: // Return an Action for processing a logon public Action getLogon() { return new Action() { public String invoke() { return logon(); } } } Very cool technique =:) But this has to be the coolest trick yet:

RE: struts-faces

2003-09-18 Thread Andrew Hill
2003 18:57 To: Struts Users Mailing List Subject: Re: struts-faces Likewise, if anyone really wanted throwaway, non-threadsafe Actions, there's a nice technique that Maverick uses. A regular singleton Action is used as a wrapper. When execute is called, the wrapper instantiates a new instance

Re: struts-faces

2003-09-18 Thread Craig R. McClanahan
On Thu, 18 Sep 2003, Ted Husted wrote: Date: Thu, 18 Sep 2003 07:05:44 -0400 From: Ted Husted [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: struts-faces Craig R. McClanahan wrote: // Return

Re: struts-faces

2003-09-17 Thread Adam Hardy
going to design struts again, you would probably address this. Does JSFaces bring these two closer together? Or is this an area where Faces is not involved? I see you say that in a combination of struts Faces, you would still use actions and forms. The reason I ask is that I just had a hard time

Re: struts-faces

2003-09-17 Thread Gregory Seidman
On Wed, Sep 17, 2003 at 01:14:27PM +0200, Adam Hardy wrote: } I remember a while ago in one of these architecture- theme emails you } discussed the OO nature of struts it had been said that the } action-form class and the action class broke the OO encapsulation } principle, by having data in

Re: struts-faces

2003-09-17 Thread Craig R. McClanahan
On Wed, 17 Sep 2003, Adam Hardy wrote: Date: Wed, 17 Sep 2003 13:14:27 +0200 From: Adam Hardy [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: struts-faces Hi Craig, I remember a while ago in one

struts-faces

2003-09-16 Thread Sasha Borodin
Can someone tell me why I'd need a struts integration version of the JSF implementation? Why can't one just add the RI JAR files, TLD documents, config files and just starting using the tags? Thanks, -Sasha - To unsubscribe,

Re: struts-faces

2003-09-16 Thread Craig R. McClanahan
On Tue, 16 Sep 2003, Sasha Borodin wrote: Date: Tue, 16 Sep 2003 11:30:40 -0500 From: Sasha Borodin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: struts-faces Can someone tell me why I'd need a struts

Re: struts-faces

2003-09-16 Thread Sasha Borodin
: Craig R. McClanahan [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] Date: Tue, 16 Sep 2003 10:16:22 -0700 (PDT) To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: struts-faces On Tue, 16 Sep 2003, Sasha Borodin wrote: Date: Tue, 16 Sep 2003 11:30:40 -0500

RE: struts-faces

2003-09-16 Thread James Holmes
:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 12:35 PM To: Struts Users Mailing List Subject: Re: struts-faces Thanks Craig. You can, but the integration library lets you use Struts Actions on the back end, creates form beans automatically, and so on. Reading through Sun's Web Services

Re: struts-faces

2003-09-16 Thread Sasha Borodin
Great website, thanks James! -Sasha From: James Holmes [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] Date: Tue, 16 Sep 2003 15:10:36 -0400 To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: struts-faces Hi Sasha, I don't have a specific resource

Re: struts-faces

2003-09-16 Thread Craig R. McClanahan
On Tue, 16 Sep 2003, Sasha Borodin wrote: Date: Tue, 16 Sep 2003 12:35:22 -0500 From: Sasha Borodin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: struts-faces Thanks Craig. You can

Error using Struts-Faces in WSAD 5

2003-03-21 Thread Michael Sullivan
Trying to build my own example app in WSAD 5.0 (using the README.txt found in the jakarta-struts-faces-0.3), I am getting the following error trying to go to my first faces jsp. [3/21/03 14:10:02:073 CST] 329f2016 WebGroup E SRVE0026E: [Servlet Error]-[JSP 1.2 Processor

RE: Struts Faces ea validation XML error

2003-03-11 Thread PILGRIM, Peter, FM
Mailing List (E-mail) [EMAIL PROTECTED] Subject: Struts Faces ea validation XML error After copying all three JSF JAR to struts-faces/WEB-INF, and copying commons-logging-1.0.2.jar over WEB-INF/lib I got a validation error in the Struts Faces download. Is the validation XML correct

RE: Struts Faces ea validation XML error [SOLVED]

2003-03-11 Thread PILGRIM, Peter, FM
-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Subject: Struts Faces ea validation XML error After copying all three JSF JAR to struts-faces/WEB-INF, and copying commons-logging-1.0.2.jar over WEB-INF/lib I got a validation

Struts Faces ea validation XML error

2003-03-10 Thread PILGRIM, Peter, FM
After copying all three JSF JAR to struts-faces/WEB-INF, and copying commons-logging-1.0.2.jar over WEB-INF/lib I got a validation error in the Struts Faces download. Is the validation XML correct? org.apache.jasper.JasperException: Depends string email was not found in validator-rules.xml

Re: Struts Faces ea validation XML error

2003-03-10 Thread Craig R. McClanahan
On Mon, 10 Mar 2003, PILGRIM, Peter, FM wrote: Date: Mon, 10 Mar 2003 17:18:25 - From: PILGRIM, Peter, FM [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Subject: Struts Faces ea validation XML error

Struts-Faces

2003-03-09 Thread Dom
Hi Win2K, jdk1.4.1_01, Tomcat-4.1.21, jsf-ea3, jakarta-struts-faces-0.3, jakarta-struts-20030309 The jsf-ea3 examples run fine. Trying to run the jakarta-struts-faces-0.3 example, after having followed the readme.txt, I get : 2003-03-09 16:45:55 StandardContext[/struts-faces]: Erreur lors de la

Re: Struts-Faces

2003-03-09 Thread Dom
Found : I replaced commons-logging.jar with the commons-logging-1.0.2 one in WEB-INF/lib Now, I try to run one of my struts app using jakarta-struts-faces-0.3. A very simple jsp. I've added all the required jars, updated web.xml by including the JavaServer Faces Servlet Configuration