[appfuse-user] external web services question - need help and advice

2007-11-10 Thread p7k
Dear AppFusers, I apologize in advance, if you find this to be off-topic for this mailing list, and thus perhaps in poor taste. I'm currently developing an vehicle routing optimization web-app using AppFuse (Spring, Hibernate, JSF, Facelets). So far I was able to get away using gMaps for my geo

Re: [appfuse-user] I want to contribute Facelets stuff to appfuse

2007-10-11 Thread p7k
gt; Denver, Co. 80129 > www.soaringeagleco.com > www.theryansplace.com > (303) 263-3044 > [EMAIL PROTECTED] > > > On Oct 9, 2007, at 9:41 PM, p7k wrote: > >> >> I was wondering if anyone has already contributed the necessary >> facelets >> dec

Re: [appfuse-user] I want to contribute Facelets stuff to appfuse

2007-10-09 Thread p7k
I was wondering if anyone has already contributed the necessary facelets decorators to replace the functionality of sitemesh and common jsp's (header, footer, ... ). I am seriously considering switching to facelets layout management and decoration, since sitemesh doesn't play well with jsf and fa

Re: [appfuse-user] velocity menu forward

2007-10-08 Thread p7k
rusive and most elegant solution to local navigation within the subright column of appfuses css framework. thank you! mraible wrote: > > Struts Menu only supports "action" and "forward" for Struts 1.x. > > Matt > > On 10/7/07, p7k <[EMAIL PROTECTED]> w

[appfuse-user] velocity menu forward

2007-10-07 Thread p7k
Dear AppFusers, I need to figure out how to properly set-up a forward from a menu item, rather than a redirect to a page. menu-config.xml: faces-config: fee /forms/truckCompanyFormFee.xhtml But this does not wo

[appfuse-user] wufoo style hints - ways to implement?

2007-10-04 Thread p7k
Dear AppFusers, Please, share any ideas on how to go about implementing form hints (similar to those used by wufoo), given latest AppFuse facilities and myfaces JSF. I know that the default form css in AppFuse comes from wufoo, but I didn't find anything relevant to hints in it. I admit that I

Re: [appfuse-user] Database immediate commit with DWR ?

2007-10-02 Thread p7k
my hunch would be with the correct use of dwr callback functions Nathaniel Rahav wrote: > > Greetings, > > I'm working on an Appfuse 1.8.2 SpringMVC app and having a very strange > problem. I dont use a lot of DWR in my app, just a little bit on this one > page where I dont want the user to l

[appfuse-user] hbm2ddl and dbunit on mvn run:jetty

2007-09-26 Thread p7k
it was difficult to find a definitive answer through other posts... how can i avoid having my database reset (cleaned and sample-data inserted) when i run jetty:run ? i am on 2.0-Final with hibernate / jsf / full-source thanks in advance ! -- View this message in context: http://www.nabble.co

Re: [appfuse-user] full-source package renaming

2007-09-18 Thread p7k
Thank you very much, Matt. small correction: "mvn appfuse:full-source -DrenamePackages=false" (plural packages) mraible wrote: > > You can run "mvn appfuse:full-source -DrenamePackage=false". > > Matt > > On 9/18/07, p7k <[EMAIL PROTECTED]>

[appfuse-user] full-source package renaming

2007-09-18 Thread p7k
Dear appfUsers, I would like to run with appfuse's full-source. One of the things that the plugin does is: Renames packages to match your project's groupId. - I think, I would like to keep my packages separate. So I want appfuses files in a separate org.appfuse package. Is there a command to

[appfuse-user] Best practices for populating JSF SelectItems

2007-09-18 Thread p7k
Dear appfusers, I got to wondering what would be considered a best practice for populating JSF SelectItems, say for drop-down menus. I use it with a globalSession scope. Currently, I have a separate bean class that contains Maps of Label/Value pairs. I prefer maps to Lists of SelectItem - seem

Re: [appfuse-user] Non-serializable attribute blues. [JSF+Tomcat]

2007-09-18 Thread p7k
te: >> On 9/18/07, p7k <[EMAIL PROTECTED]> wrote: >> > >> > In terms of jetty, I was referring to >> > http://issues.appfuse.org/browse/APF-856 >> > http://issues.appfuse.org/browse/APF-856 >> > I experience most 'null object' pro

Re: [appfuse-user] Non-serializable attribute blues. [JSF+Tomcat]

2007-09-17 Thread p7k
uding your 404 (errors) page. Boy, I get no love from this non-serializable business, though. Could you take a look at my applicationContext file (real short) http://pastebin.com/m6be47161 http://pastebin.com/m6be47161 Much obliged !!! mraible wrote: > > On 9/17/07, p7k <[EMAI

Re: [appfuse-user] Non-serializable attribute blues. [JSF+Tomcat]

2007-09-17 Thread p7k
(to me anyway) as to what is going to happen with that and when. if possible, please clarify. mraible wrote: > > Does your LocationManager have a reference to the Spring class mentioned? > > On 9/17/07, p7k <[EMAIL PROTECTED]> wrote: >> >> Dear appfusers,

[appfuse-user] Non-serializable attribute blues. [JSF+Tomcat]

2007-09-17 Thread p7k
Dear appfusers, I've been trying to debug "setAttribute: Non-serializable attribute" issue that occurs when I navigate to my forms which are modeled very closely after appfuse tutorials. I understand that it is the tag at work here, posing a strict serialization requirement on anything that ent

Re: [appfuse-user] hibernate hierarchy mapping question

2007-08-29 Thread p7k
forgot to add, i also have to take the non-nullable constraint off my @ManyToOne(s). which is probably redundant anyway, i guess all that mappedBy attribute does is enforce non-nullability on the specified field. ??? p7k wrote: > > pardon the n00biness, > > i think i have a

[appfuse-user] hibernate hierarchy mapping question

2007-08-29 Thread p7k
pardon the n00biness, i think i have a need to map this object model with hibernate. i tried to make both relationships {Project-Solution} and {Solution-Route} bidirectional by using the following annotations, however it fails: class Project { @OneToMany(targetEntity = Solution.class, mapped

[appfuse-user] hibernate hierarchy mapping question

2007-08-29 Thread p7k
pardon the n00biness, i think i have a need to map this object model with hibernate. i tried to make both relationships {Project-Solution} and {Solution-Route} bidirectional by using the following annotations, however it fails: class Project { @OneToMany(targetEntity = Solution.class, mapped

Re: [appfuse-user] hibernate InheritanceType.TABLE_PER_CLASS issue

2007-08-23 Thread p7k
ink of is to crank up your logging for > org.hibernate.SQL in your log4j.xml. Or use some sort of SQL > monitoring tool to see if the index is being reset by SQL. Maybe a > unit test is resetting it to a higher number? > > Matt > > On 8/23/07, p7k <[EMAIL PROTECTED]>

Re: [appfuse-user] hibernate: Lazy Loading 101

2007-08-23 Thread p7k
no success in using merge(), no exceptions of any sort but nothing gets updated or removed. still looking for help. thank you! p7k wrote: > > Mike, > > Thank you for your reply. Any help is much appreciated. But I'm having > hard time translating your reply to m

Re: [appfuse-user] hibernate: Lazy Loading 101

2007-08-23 Thread p7k
But, i do use customer = customerDao.saveCustomer(customer); , following the appfuse's CRUD tutorials. Sorry, i'm a noob, i know ... Mike Horwitz wrote: > > On 8/23/07, p7k <[EMAIL PROTECTED]> wrote: >> >> >> Please, help me learn !!! >> >> I have the

Re: [appfuse-user] Retrieving Current User Object in MyAction Class

2007-08-23 Thread p7k
http://www.nabble.com/Getting-current-user%27s-id-during-tests-tf4190706s2369.html#a11917492 http://www.nabble.com/Getting-current-user%27s-id-during-tests-tf4190706s2369.html#a11917492 but, yeah ... getRequest().getRemoteUser() will get the user's name as a String, from there you could pull

Re: [appfuse-user] hibernate InheritanceType.TABLE_PER_CLASS issue

2007-08-23 Thread p7k
r), does it still do the same thing? Does the same > behavior happen in your Manager and JSF tests? > > Matt > > On 8/22/07, p7k <[EMAIL PROTECTED]> wrote: >> >> I have a polymorphic BaseLocation class, which is extended by Customer >> and >> Depot cl

[appfuse-user] hibernate: Lazy Loading 101

2007-08-23 Thread p7k
Please, help me learn !!! I have the following situation: a Customer class with a collection of enums which represent weekdays { Sun, Mon , Tue , ... } ( in JSF, I bind these to a UISelectMany component - checkboxes ) @Entity public class Customer extends BaseLocation implements Serializa

[appfuse-user] hibernate InheritanceType.TABLE_PER_CLASS issue

2007-08-22 Thread p7k
I have a polymorphic BaseLocation class, which is extended by Customer and Depot classes. with hibernate and annotations my setup is something like this: @Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public abstract class BaseLocation extends BaseObject implements Serializable

[appfuse-user] Time picker JSF component

2007-08-09 Thread p7k
Hello, Does anyone know of a simple (or not so simple) time picker component available free out there? Time picker - a way to select hours and minutes and store the value as an integer of minutes or seconds. I'm reluctant to write my own components, although this would be a good opportunity to s

Re: [appfuse-user] Hibernate polymorphism issues

2007-08-09 Thread p7k
Since, this post the problem has dissolved. I have not been able to replicate the problem again. I suspect that the issue was with inherited implementation of Serializable interface. p7k wrote: > > Dear users, > > I have a polymorphic situation: a Location (abstract) supercl