[OS-webwork] FW: Webwork IRC meetup

2003-08-21 Thread Jason Carreira
Oops... Just realized I only sent this to opensymphony-developers -Original Message- From: Jason Carreira Sent: Tuesday, August 19, 2003 1:51 PM To: '[EMAIL PROTECTED]' Subject: Webwork IRC meetup Well, better late than never, I talked to Pat and figured out an ok time: 10 AM Eastern

[OS-webwork] problems compiling webwork2

2003-08-21 Thread Francisco Hernandez
im getting errors compiling webwork2 with ant dist I had similar errors before and I was told to put the clover libs in ANT_HOME and that worked fine, now im getting these errors: example-war: [mkdir] Created dir: C:\Documents and Settings\Administrator\Desktop\java\webwork\build\example

[OS-webwork] WebTable for WW2

2003-08-21 Thread Robert Carlens
Hi, I've been following this list for ages but I've never really contributed with anything. After diving in to Velocity and OGNL I've now finally managed to convert the webtable to WW2 (a small step for WW2 but I gigant leap for me :)). I thought I'd contibute the code if ayone is intrested,

[OS-webwork] ModelDriven and ParametersInterceptor

2003-08-21 Thread Marko Lahma
First of all, thanks to everybody involved in WW/XWork for great work! When I looked into ParametersInterceptor I found this: // populate model bean's fields if action is ModelDriven, otherwise populate action's fields if (action instanceof ModelDriven) {

Re: [OS-webwork] JUnit testing actions

2003-08-21 Thread John Patterson
I created a Jira issue for this and attached a simple interceptor to do what you want: http://jira.opensymphony.com/secure/ViewIssue.jspa?key=XW-64 - Original Message - From: Samuel Mota [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 3:51 PM Subject:

RE: [OS-webwork] Simplicity of WW2

2003-08-21 Thread Drew McAuliffe
I have a logic layer in my app, between the model objects and the webwork actions (or any other calling code). It provides a service-type interface for working with the model objects. Behind that interface, all of the interesting things that have to happen to fully perform each action take place,

[OS-webwork] How to use the ComponentManager...

2003-08-21 Thread Christian Meunier
Hi all, i am trying to use the ComponentManager class to initialize a component in a servlet filter as follow : public class HibernateFilter implements Filter { private Log log = LogFactory.getLog(this.getClass()); private ComponentManager componentManager; private PersistenceManager

[OS-webwork] issues with example webwork2 app

2003-08-21 Thread Amir Brown
Title: Message Hi all: I was taking the webwork2 example application for a spin and I ran into a few problems that are probably due to a mix of my inexperience and its newness. I use the Novell extend application server 5.0 on Windows XP as my dev environment. The first issue was that

Re: [OS-webwork] WebTable for WW2

2003-08-21 Thread Scott Farquhar
Yep - good idea. Scott Robert Carlens wrote: Hi, I've been following this list for ages but I've never really contributed with anything. After diving in to Velocity and OGNL I've now finally managed to convert the webtable to WW2 (a small step for WW2 but I gigant leap for me :)). I thought

[OS-webwork] When will XSLT support be in WebWork2?

2003-08-21 Thread Peter White
Title: When will XSLT support be in WebWork2? Hi guys, I've decided to hold off on starting my project with WebWork and then porting to WebWork2 once it's released. So, this leaves me with the decision of whether to forge ahead with Maverick, use JSP with WebWork2 and then rewrite the

[OS-webwork] [JIRA-Opensymphony] Created: (WW-261) fieldErrors dont display multiple errors in view tags

2003-08-21 Thread legendaryservice
Message: A new issue has been created in JIRA. - View the issue: http://jira.opensymphony.com/secure/ViewIssue.jspa?key=WW-261 Here is an overview of the issue:

Re: [OS-webwork] Internacionalization logic

2003-08-21 Thread Hani Suleiman
What I do is have all my actions extend my own ActionSupport subclass. There you can override getTexts() with whatever mechanism you want (eg, use a different search mechanism, or get resources from a db, or whatever) Quoting Samuel Mota [EMAIL PROTECTED]: Hi guys, I'm pretty new to Webwork

[OS-webwork] mailing list speed

2003-08-21 Thread Francisco Hernandez
is it me or does the mailing list take forever to send out emails? I send out emails to the list and they take 12+ hours to the time I receive the email. --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple

Re: [OS-webwork] java.net cvs

2003-08-21 Thread Francisco Hernandez
i've been using this and have had no problems: cvs -d :pserver:[EMAIL PROTECTED]:/cvs login cvs -d :pserver:[EMAIL PROTECTED]:/cvs checkout webwork note: I just hit enter when it asks me for the password. Rafael Muñoz Vega wrote: Hi, all. First, i want to congratulate the

Re: [OS-webwork] webwork2 OutOfMemoryException

2003-08-21 Thread boxed
Francisco Hernandez wrote: I've been getting this exception lately, I'm not sure if its tomcat-4.1.24 thats messed up, webwork or something else, anyone else having problems like these? [snip] root cause java.lang.OutOfMemoryError Apache Tomcat/4.1.24-LE-jdk14 You've run out of memory. You

RE: [OS-webwork] ModelDriven and ParametersInterceptor

2003-08-21 Thread Jason Carreira
There has been disussion of having the interceptor use the ValueStack for setting properties. Anyone have any thoughts on this, pro or con? -Original Message- From: Marko Lahma [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 6:28 AM To: [EMAIL PROTECTED] Subject:

Re: [OS-webwork] Internacionalization logic

2003-08-21 Thread Dick Zetterberg
Another possible option for you is to use the i18n tag in your JSP pages to put a specific bundle on the stack. Cheers, Dick Zetterberg [EMAIL PROTECTED] - Original Message - From: Jason Carreira [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 10:23 PM Subject:

RE: [OS-webwork] problems compiling webwork2

2003-08-21 Thread Jason Carreira
I'm sure I fixed this, but looking at the code, the bug is still there... Ok, I think I deleted this file locally, but didn't remove it from CVS. I've deleted it in CVS now. Anyone have any idea how to remove it from the tag for beta1? Jason -Original Message- From: Francisco

Re: [OS-webwork] ModelDriven and ParametersInterceptor

2003-08-21 Thread roughley
Marko, I use this same situation for a registration page - where you want a User object as the model, and an additional field on only the action for the confirmed password. In this case, I do not implement the ModelDriven interface but have getUser() and setUser() methods on the Action. The

Re: [OS-webwork] Re:JUnit testing actions

2003-08-21 Thread roughley
1. using the ActionContext.setContext(): I have not personally used the ActionContext in testing actions, but I would imagine that if it works for one Action it should work all the time. What you need to ask yourself is if the value in the ActionContext are correctly set for all the actions, and

RE: [OS-webwork] Re: Performance diff bw ww1 and ww2?

2003-08-21 Thread Jason Carreira
I've spent some time profiling these in Tomcat with OptimizeIt and it definitely looks like it's something in VelocityResult and how it uses Velocity. In Tomcat, the ww2 version is talking 600+ ms, the ww1 version is 30-40ms. Under Resin, it's about 10ms for the ww1 version and 100ms for the ww2

Re: [OS-webwork] Re: Performance diff bw ww1 and ww2?

2003-08-21 Thread Scott Farquhar
Just quickly - are we caching the velocity templates? AFAIK (and that ain't much regarding velocity), the speed increase in velocity is achieved by caching the parsed templates. Cheers, Scott Jason Carreira wrote: I've spent some time profiling these in Tomcat with OptimizeIt and it

Re: [OS-webwork] mailing list speed

2003-08-21 Thread Hani Suleiman
It's sourceforge, some marketing study probably determined that decent performance is undercutting their commercial offerings. On Thursday, August 21, 2003, at 11:51 PM, Francisco Hernandez wrote: is it me or does the mailing list take forever to send out emails? I send out emails to the list