[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Kris Nuttycombe
I'm happy to test on Glassfish this weekend. Just let me know what branch to pull from. Kris On Fri, Oct 10, 2008 at 3:14 PM, Derek Chen-Becker <[EMAIL PROTECTED]> wrote: > Well, I have it all working under Jetty using Atomikos as the underlying JTA > provider. I'd like to test it out under JBos

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Derek Chen-Becker
OK, I think I know how to create a new branch, but being a Git newb I really don't want to nuke anything. Do I just do a "git branch " in my local repo? Thanks, Derek On Fri, Oct 10, 2008 at 3:21 PM, Kris Nuttycombe <[EMAIL PROTECTED]>wrote: > > I'm happy to test on Glassfish this weekend. Just

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Kris Nuttycombe
You can do either that, or git checkout -b which will both create and switch to the new branch; you'll then need to do git push origin to get it up on central. For when you want to subsequently pull from that branch, you should probably add something like this to your .git/config: [branch

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Martin Ellis
On Fri, Oct 10, 2008 at 10:37 PM, Derek Chen-Becker <[EMAIL PROTECTED]> wrote: > OK, I think I know how to create a new branch, but being a Git newb I really > don't want to nuke anything. Do I just do a "git branch name>" in my local repo? I think you want: git checkout -b branchName git branc

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Derek Chen-Becker
OK, done: http://github.com/dpp/liftweb/tree/wip-dcb-jpa-jta I'll have to figure out the merge settings. Thanks! Derek On Fri, Oct 10, 2008 at 3:58 PM, Derek Chen-Becker <[EMAIL PROTECTED]>wrote: > OK, if I do git checkout do I need to backup my changed files somewhere > else? I've already mad

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Derek Chen-Becker
OK, if I do git checkout do I need to backup my changed files somewhere else? I've already made a lot of changes and I don't want to lose them. Thanks for the advice! Derek On Fri, Oct 10, 2008 at 3:43 PM, Martin Ellis <[EMAIL PROTECTED]> wrote: > > On Fri, Oct 10, 2008 at 10:37 PM, Derek Chen-

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Derek Chen-Becker
OK, if I've done this correctly, there are only a few things that you need to do to get this working in a JEE container: 1. Edit persistence.xml to: 1. Set the proper dialect 2. Remove or set the proper hibernate.transaction.manager_lookup_class property. I think that Hiberna

[Lift] Re: Progress on JPADemo and JTA

2008-10-10 Thread Kris Nuttycombe
I should be able to sort out any glassfish/hibernate issues with the demo, as my Lift/JPA/JTA/Hibernate/Glassfish app is running happily and going into production on Tuesday. In general, I haven't run into any issues whatsoever; all you need is the org.hibernate.ejb.HibernatePersistence entry in t