RE: [appfuse-user] Help please

2007-08-17 Thread Ding, Qin
Abe: I will take a look. Thank you. From: Developer Abe [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 6:44 PM To: users@appfuse.dev.java.net Subject: Re: [appfuse-user] Help please The following tutorial should help you. http://downside.ch/

Re: [appfuse-user] Fwd: Login page in Appfuse

2007-08-17 Thread Matt Raible
You should be able to use some type of SSO solution to make this work. Acegi supports Yale's CAS - have you thought about using that to do your authentication with LDAP and then propogate it to your applications? http://www.ja-sig.org/products/cas/ http://www.acegisecurity.org/docbook/acegi.html#

[appfuse-user] Fwd: Login page in Appfuse

2007-08-17 Thread tiya tiya
-- Forwarded message -- From: tiya tiya <[EMAIL PROTECTED]> Date: Aug 17, 2007 9:36 AM Subject: Login page in Appfuse To: [EMAIL PROTECTED] Hi, I developed Common Login page using LDAP authenthication in Appfuse Framework 1.9.4 and tomcat 5.0.From the Common Login Page i

[appfuse-user] Exposing service layer as web services with larger domain model

2007-08-17 Thread Troy Kelley
Matt's howto on exposing Manager services was great ( http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseXFire). I have some questions about how this would work with a larger domain model. The Manager classes in the service layer will often return domain objects, which are part of the larger doma

Re: [appfuse-user] Asynchronous task

2007-08-17 Thread Ron Anderson
Its not recommended but you can do it and I've successfully deployed apps that do. Several things to take care of though. Here is a discussion on some of the stuff to consider. http://www.nabble.com/Can-servlets-safely-spawn-threads--t3135145.html - Original Message From: benoit morai

RE: [appfuse-user] Asynchronous task

2007-08-17 Thread benoit moraillon
No it's impossible on a J2EE container to start a thread and if it is a big cpu consuming task you 'll slow down your container throughput. _ De : Ron Anderson [mailto:[EMAIL PROTECTED] Envoyé : vendredi 17 août 2007 15:38 À : users@appfuse.dev.java.net Objet : Re: [appfuse-user] Asynchr

Re: [appfuse-user] Asynchronous task

2007-08-17 Thread Ron Anderson
You can do it by starting your own Thread then. Ron - Original Message From: benoit moraillon <[EMAIL PROTECTED]> To: users@appfuse.dev.java.net Sent: Friday, August 17, 2007 6:29:54 AM Subject: RE: [appfuse-user] Asynchronous task Thanks, but when it's not a scheduled task ? By launchi

RE: [appfuse-user] Asynchronous task

2007-08-17 Thread benoit moraillon
Thanks, but when it's not a scheduled task ? By launching an external java program and check for changes in the database ? Best regards, Benoît Moraillon -Message d'origine- De : Peter Schneider-Manzell [mailto:[EMAIL PROTECTED] Envoyé : vendredi 17 août 2007 08:36 À : users@appfuse.dev

Re: [appfuse-user] jQuery + scriptaculous + datePicker = frustration

2007-08-17 Thread Matt Raible
On 8/17/07, syg6 <[EMAIL PROTECTED]> wrote: > > > mraible wrote: > > > > > > It seems like it may be appropriate in both places, with the FAQ > > linking to the Ajax Reference Guide. As we delve more into Ajax > > functionality in a future release, we may have a tutorial that > > incorporates this

Re: [appfuse-user] jQuery + scriptaculous + datePicker = frustration

2007-08-17 Thread syg6
mraible wrote: > > > It seems like it may be appropriate in both places, with the FAQ > linking to the Ajax Reference Guide. As we delve more into Ajax > functionality in a future release, we may have a tutorial that > incorporates this stuff. > > As for style, I'd look at the existing tutoria

Re: [appfuse-user] jQuery + scriptaculous + datePicker = frustration

2007-08-17 Thread Matt Raible
On 8/17/07, syg6 <[EMAIL PROTECTED]> wrote: > > Howdy, > > > mraible wrote: > > > > > >> This is good stuff to know. This might be good information to add to > >>the FAQ or Ajax Reference Guide on the wiki. > > > > > > I would be more than happy to post my limited knowledge of jQuery. I made an > a

Re: [appfuse-user] jQuery + scriptaculous + datePicker = frustration

2007-08-17 Thread syg6
Howdy, mraible wrote: > > >> This is good stuff to know. This might be good information to add to >>the FAQ or Ajax Reference Guide on the wiki. > > I would be more than happy to post my limited knowledge of jQuery. I made an account on the Wiki ... which section do you think is best, Wiki

Re: [appfuse-user] testSave fails using custom property editor

2007-08-17 Thread syg6
I thought I had the answer when I discovered that another programmer on the project had created an ApplicationPlace class! And while its ManyToMany annotations were commented out, its Entity annotation was not, so I figured Hibernate was getting confused and creating and/or populating the applicat

Re: [appfuse-user] Signup

2007-08-17 Thread mikebgx
Cracked it! I had left some not-null fields as null, and Acegi/Hibernate had confusingly reported this error as a duplicate instead. Underlying cause of this was that I had changed the fields to nullable in my POJO, but hbmto22l.auto didn't update this change into the schema. Mike. DNewfield wr