Re: [appfuse-user] Struts2 and jsCalendar

2008-02-13 Thread Ron Anderson
I changed to the setup in the equinox user form and it works so it isn't related to jsCalendar or the import statements. Has to be something with the title="date" and its relationship to the button id. I'll use this set up for now. Ron - Original Message From: Matt Raible <[EMAIL PROT

[appfuse-user] Re: J2EE Spider (eclipse tool) - increasing productivity in JEE projects

2008-02-13 Thread Bruno Braga
Ops Sorry for this email... I would submit to another mail list. Anyway, I am open to collaboration between the projects. regards, Bruno Braga 2008/2/14, Bruno Braga <[EMAIL PROTECTED]>: > > At the end of January we released the J2EE Spider 1.0.0-M1. > > This version has several importan

[appfuse-user] J2EE Spider (eclipse tool) - increasing productivity in JEE projects

2008-02-13 Thread Bruno Braga
At the end of January we released the J2EE Spider 1.0.0-M1. This version has several important features and even a new look. Watch the video (link below)! An important feature of the tool - the generation of CRUDs is now also available. For these reasons are changing from version 0.3.0 to 1.0.0-M

Re: [appfuse-user] How to configure TEST Injections

2008-02-13 Thread Leo Barrientos C.
Yes "bloqueDao" is defined in src/main/webapp/WEB-INF/applicationContext.xml Also, if i delete the test, the appz run normally. I'm trying to find the test configuration... no results. Thanks in advance. El mié, 13-02-2008 a las 09:12 -0700, Matt Raible escribió: > Do you have this DAO defined

Re: [appfuse-user] User Password strength

2008-02-13 Thread Dale Newfield
watcher wrote: ^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])[0-9a-zA-Z]{6,20}$ This Reg Expression I'm told requires a password to have a least 1 uppercase letter, 1 digit and a minimum length of 5 characters. Minimum length of 6. Maximum length of 20. The solution works for adding new users, but i

Re: [appfuse-user] How to configure TEST Injections

2008-02-13 Thread Matt Raible
Do you have this DAO defined as a bean somewhere? If so, where? Only certain context files are loaded for testing, so naming is important. Matt On 2/13/08, Leo Barrientos C. <[EMAIL PROTECTED]> wrote: > Hello, i changed to another PC and i got this error: > > org.springframework.beans.factory.Uns

Re: [appfuse-user] Struts2 and jsCalendar

2008-02-13 Thread Ron Anderson
No errors, just some warnings about not being able to parse value of property 'display' in the css's. When you load the page, jsCalendar will display a warning if you don't have the id's that are in the setup somewhere in your page and I'm not getting that error either. Page seems to display f

Re: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-13 Thread Rob Hills
Hi Ernas, [EMAIL PROTECTED] wrote: On Feb 11, 2008 10:03 PM, Rob Hills <[EMAIL PROTECTED]> wrote: When I trace through the UserManagerImpl.save(User) method, I find that at line 87, the code uses the dao to pull the user's old password from the DB to compare it with the one that's just been

[appfuse-user] User Password strength

2008-02-13 Thread watcher
I'm attempting to add password strength validation to the user object. Here's what I've added to the validation.xml password ^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])[0-9a-zA-Z]{6,20}$ This Reg Expression I'm told requires a password to have a least 1 uppercase letter, 1 digit a

Re: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-13 Thread ernasm
On Feb 11, 2008 10:03 PM, Rob Hills <[EMAIL PROTECTED]> wrote: > When I trace through the UserManagerImpl.save(User) method, I find that at > line 87, the code uses the dao to pull the user's old password from the DB to > compare it with the one that's just been posted to see if it's changed. The

Re: [appfuse-user] AppFuse(JSF)

2008-02-13 Thread Rob Hills
Hi Irshad, Irshad Buchh wrote: Hi Scott, I am exactly looking for this option. Can u provide us the url of the project swoop. I tried to find it on SourceForge.net, but I could not locate it. We would like to have the code samples. A search for "swoop" on sourceforge.net turned up the follow

Re: Re: [appfuse-user] AppFuse(JSF)

2008-02-13 Thread Irshad Buchh
Hi Scott, I am exactly looking for this option. Can u provide us the url of the project swoop. I tried to find it on SourceForge.net, but I could not locate it. We would like to have the code samples. --Irshad A. Buchh Senior Principal Consultant. Scott Ryan wrote: > > I have completed the co

[appfuse-user] How to configure TEST Injections

2008-02-13 Thread Leo Barrientos C.
Hello, i changed to another PC and i got this error: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.opensistemas.discusion_documentos.webapp.dao.RolDeUsuarioEnExpedienteDaoTest': Unsatisfied dependency expressed through bean property 'rolDeUs

RE: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-13 Thread Rob Hills
Hi again Christophe, David, On 13 Feb 2008 at 21:02, Rob Hills wrote: > I'm trying out a variation of the workaround you mentioned and I'll report > back how I get on. Actually, it was the workaround that David mentioned and my variation of it seems to be working. David described his workarou

Re: [appfuse-user] Strange TagAttributeException

2008-02-13 Thread Casanova
Hello Sir, I finally solved this problem. The problem is, the managed beans are not created for the form and list in faces-config.xml. After, I created the managed beans of form and list, I could able to see the pages and there is no problem. Even though, you gave me the hint, to see the form in

RE: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-13 Thread Rob Hills
Hi Christophe, On 13 Feb 2008 at 10:02, Christophe Thiebaud wrote: > We have the same issue on two applications based on appfuse. > > In one we did overwrite AppFuse's User class, but in the other, we did > nothing. > > The issue is not present in an artifact-generated app. Hmmm, that's intere

[appfuse-user] appfuse + enunciate

2008-02-13 Thread bmoraillon
Hi, Do you plan to build an appfuse-ws archetype with enunciate maven plugin embedded ? -- View this message in context: http://www.nabble.com/appfuse-%2B-enunciate-tp15455618s2369p15455618.html Sent from the AppFuse - User mailing list archive at Nabble.com. -

RE: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-13 Thread Christophe Thiebaud
We have the same issue on two applications based on appfuse. In one we did overwrite AppFuse's User class, but in the other, we did nothing. The issue is not present in an artifact-generated app. A point to be noted is that we manually upgraded our two apps from AF 2.0 to 2.0.1 Christophe -