Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-25 Thread Pat Lightbody
We're working on finishing up the code as I type... very soon! - Original Message - From: Francisco Hernandez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 19, 2003 12:18 AM Subject: Re: [OS-webwork] hibernate/webwork2 best practices any update on when this code

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-25 Thread Fred Lamuette
-webwork] hibernate/webwork2 best practices We're working on finishing up the code as I type... very soon! - Original Message - From: Francisco Hernandez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 19, 2003 12:18 AM Subject: Re: [OS-webwork] hibernate/webwork2 best

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-19 Thread Francisco Hernandez
any update on when this code will be shared with us? (can you tell im anxious? :) Pat Lightbody wrote: Glad you like it! Spread the word :) I've used Hibernate + WebWork2 in a couple projects, and I always used the design that spawned from our (Mike/Joe/Ara/Mine) upcoming book that involves

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Francisco Hernandez
uh oh i dont want extreme scalability problems with my app either, i better look into a better way of dealing with sessions and to elaborate on the part about starting sessions in xwork interceptors or servlet filters, if I were to start a session in an interceptor or filter and stuff it into

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread James Cook
I was replying to his statement that he: currently in my daos i create a session object for every dao operation like dao.save dao.load, etc I was assuming that he was also doing a flush after each of these operations. -Original Message- From: Jason Carreira This is not how

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
, 2003 8:42 AM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] hibernate/webwork2 best practices I was replying to his statement that he: currently in my daos i create a session object for every dao operation like dao.save dao.load, etc I was assuming that he was also doing a flush after

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
:-) A little. I'll look again. Did you send to Mike, too? He's got some code to do the same things... Jason -Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 10:04 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Matthew E . Porter
Patrick: According to Wiley's website, the books is due in November. When will this code be available? The code I sent Jason has some similar interfaces but I would prefer to standardize on one as it would seem weird that Conductor is not based upon the same code (and practices) as the

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
-webwork] hibernate/webwork2 best practices Patrick: According to Wiley's website, the books is due in November. When will this code be available? The code I sent Jason has some similar interfaces but I would prefer to standardize on one as it would seem weird that Conductor

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Matthew E . Porter
Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11:29 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate/webwork2 best practices Patrick: According to Wiley's website, the books is due in November. When will this code be available

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
[mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 12:56 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] hibernate/webwork2 best practices Does the book document the Yet Another Petstore as a web-tier only, or as a web-tier with an EJB (SLSB) backend? Does the framework also

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
the infrastructure bits)? -Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11:29 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate/webwork2 best practices Patrick: According to Wiley's website, the books

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Rob Rudin
... You guys interested in contributing it (or at least the infrastructure bits)? -Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11:29 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate/webwork2 best practices

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread James Cook
Multiple requests does not necessarily mean a long-lived transaction. I was thinking of a general case when one may want to use a redirect thus creating a second request. Basically, I was asking Pat if the book's framework used Hibernate in a way that supports transactions especially in a

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Matthew E . Porter
the book looked good... You guys interested in contributing it (or at least the infrastructure bits)? -Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11:29 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate/webwork2 best practices

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Matthew E . Porter
Carreira [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 8:31 AM Subject: RE: [OS-webwork] hibernate/webwork2 best practices +1 to that... The code from the book looked good... You guys interested in contributing it (or at least the infrastructure bits)? -Original

RE: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Jason Carreira
-Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 2:10 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] hibernate/webwork2 best practices I have looked at Spring and even had a chance to write some code using

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-17 Thread Francisco Hernandez
: RE: [OS-webwork] hibernate/webwork2 best practices +1 to that... The code from the book looked good... You guys interested in contributing it (or at least the infrastructure bits)? -Original Message- From: Matthew E. Porter [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11

Re: [OS-webwork] hibernate/webwork2 best practices

2003-09-16 Thread Francisco Hernandez
this is exactly how im doing things with hibernate aswell, a few things I can think of is putting the hibernate session creation code in a servlet filter or xwork interceptor but thats going to cause some problems anyways if the session were to be put in a un-usable state somewhere in your