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

2003-08-11 Thread Drew McAuliffe
I've moved from Tomcat to oc4j and the numbers have improved considerably. So at this point, it's not a complete hassle like it was before. Though now I'm interested to see how fast the old version would have worked on oc4j. The results I was getting were consistent across both Tomcat 4.1.x and 5.

[OS-webwork] Beta on Webwork 2 When?

2003-08-11 Thread Smith, Scott
Is there a beta yet for Webwork 2?  If not, when?   Very curious developers want to know. Scott Smith Technical Specialist II TSG HLIS E-Commerce Solution Delivery Washington Mutual Bank 17901 Von Karman, 5th floor 7124MICA Irvine, CA 92614 Phone: 949-838-1418  

RE: [OS-webwork] ww1.3 - Session Scope Property

2003-08-11 Thread Jason Carreira
This is WW1? Why all of the different ww:property tags? > -Original Message- > From: Porter, Mike [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 07, 2003 1:51 PM > To: [EMAIL PROTECTED] > Subject: [OS-webwork] ww1.3 - Session Scope Property > > > Hi, > > I am having troubles gettin

RE: [OS-webwork] Jira alerts

2003-08-11 Thread Jason Carreira
Well, my thought was that comments on Jira issues are really messages about the project, which would be good for the developer list at large... Maybe all of the admin stuff about closing, etc. is not worth sending, but I think this is... I think a separate mailing list is not worth it. > -Orig

RE: [OS-webwork] Patch for checkbox (velocity)

2003-08-11 Thread BOGAERT Mathias
I found the issue. Try renaming the getter to 'isBlah'. Then it will work IIRC. Mathias -Original Message- From: Armond Avanes [mailto:[EMAIL PROTECTED] Sent: maandag 11 augustus 2003 8:14 To: [EMAIL PROTECTED] Subject: [OS-webwork] Patch for checkbox (velocity) Hi Guys, Just submitte

[OS-webwork] ParametersInterceptor behaviour on a ModelDriver action

2003-08-11 Thread Marco Papini
Another thought on ModelDriven action. Consider this use case: public class Model { String field = null; public String getField() { return this.field; } public void setField(String field) { this.field = field; } } public class ModelDrivenAction extends ActionSupport impl

[OS-webwork] IoC and Components.xml

2003-08-11 Thread Ben Hall
Hi, I've just started using WebWork 2 (I skipped WebWork 1) and I'm having some problems getting IoC to work. I have followed an example provided by Mike Cannon-Brookes in a set of slides he presented (http://blogs.atlassian.com/rebelutionary/archives/000200.html) and I'm a bit stumped. The impl

RE: [OS-webwork] Defining views for actions in views.properties

2003-08-11 Thread Jason Carreira
> That's pretty much it... implement javax.servlet.Filter and > put it in the web.xml... what i mean was, since "Action" in > WW is working really great, is there something similar for me > to omit implementing the Filter, and use something WW-specific?? > > Thanks again, > > James > This is

Re: [OS-webwork] Defining views for actions in views.properties

2003-08-11 Thread Konstantin Priblouda
--- James Pan <[EMAIL PROTECTED]> wrote: > Hello, > > Got two questions: > > (1) > I have an action that may be invoked from a number > of pages, and SUCCESS should cause the view to > return to the calling page. > Basically, Page A, B, C can call action MyAction, > and the successful execution

[OS-webwork] ValidationInterceptor fails on ModelDriven Actions

2003-08-11 Thread Marco Papini
I've noticed that when using field validation on a ModelDriven action, the interceptor tries to validate the action fields instead of model fields. I've tracked down the problem to ValidationInterceptor: // populate model bean's fields if action is ModelDriven, otherwise populate action'