RE: Border question

2006-06-01 Thread Mark Stang
the green note and the buttons is the component. Each of these components are just standard Tapestry components. The headcrumbs and breadcrumbs are each tapestry components that redraw themselves every time we change screens. Cheers, Mark -Original Message- From: Andreas Bulling on behalf

RE: Border question

2006-06-01 Thread Mark Stang
Sorry, forgot about the list filtering attachments: http://www.markjstang.com/tapestry/ regards, Mark -Original Message- From: Mark Stang Sent: Thu 6/1/2006 3:57 PM To: Tapestry users Subject: RE: Border question Andreas, Here is an excerpt from Frame.html: !--This is our

Re: List loaded twice from DB

2006-05-31 Thread Mark
tance of the page back to the pool" so that no data of one user gets carried over to another user, but if the list is loaded when it is returned to the pool it may be outdated by the time the page is used the next time. Thanks, MARK Schulte Marcus wrote: do you have caching disabled?

Re: List loaded twice from DB

2006-05-31 Thread Mark
against it?! Thanks, MARK Nick Westgate wrote: Hi Mark. The initial-value attribute is poorly named. What it does is initialize your page property when the page is being *returned* to the pool, so that a page pulled from the pool has this initial property value. Of course, to facilitate

RE: TCP-IP Communication help

2006-05-30 Thread Mark Stang
a component in the page and have it start up the process. regards, Mark -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Tue 5/30/2006 5:07 PM To: Tapestry users Subject: Re: TCP-IP Communication help both hivemind and ServletContextListener look good. need to do a bit

Re: List loaded twice from DB

2006-05-30 Thread Mark
Hi Ron, it sounds like this would work, but isn't this just a workaround for something that really should not happen this way in the first place? Thanks, MARK Ron Piterman wrote: just an idea: try to implement the 'roomlist' property yourself, as I described in my previous postings

Re: contrib:Table very slow - sorry for insisting

2006-05-29 Thread Mark
is really slow... I have not started debugging yet, but it seems like most of the time is lost before and after the query - the entire list only contains 5 elements... Thanks, MARK Rui Pacheco wrote: I am sorry for insisting on this, but its really confusing me. I am using a normal table, fed

Re: Hibernate persisted data never makes it to DB

2006-05-28 Thread Mark
and everything works now, and keeps working after turning autocommit off again. Some more things below... Mark, I added hibernate.connection.autocommit=true to my hibernate.properties and that fixed it... hm. I don't know if that's a good idea. I'm not comfortable with hibernate.properties

Tapernate and Spring

2006-05-28 Thread Mark
, Honeycomb, [Spring]; are there more?) for Tapestry? Like a quick features and pros/cons comparison? Thanks, MARK P.S. James, did you forget to list the transaction-strategies on the feature list, or did you leave it out intentionally

List loaded twice from DB

2006-05-28 Thread Mark
the first call comes out of the finishLoad(), while the second call is caused by pageDetached() of my ListPage. Does anybody know why it would access the getAllRooms() twice? Thanks, MARK - To unsubscribe, e-mail: [EMAIL

Re: Hibernate persisted data never makes it to DB

2006-05-26 Thread Mark
I will, thanks. MARK James Carman wrote: Why don’t you just give Tapernate a try? There are a few folks using it already and it is working for them just fine. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Honeycomb (Tapestry + Hivemind + Hibernate) Demo Video

2006-05-26 Thread Mark W. Shead
, so if you have any suggestions or comments please send them to me. (I already know I need to replace ActionLink.) --Mark mwshead at fas.harvard.edu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Hibernate persisted data never makes it to DB

2006-05-25 Thread Mark
of those Spring books - I should have probably done that earlier. MARK Henri Dupre wrote: On 5/24/06, Mark [EMAIL PROTECTED] wrote: Is there a way to set this in the hibernate.properties? Right now I do not use OpenSessionInViewFilter... Oops I should have read the whole thread before

Re: Hibernate persisted data never makes it to DB

2006-05-25 Thread Mark
o Tapestry - is Spring's OpenSessionInViewFilter going to work with Tapestry without limitations? I see all these posts about Tapernate and others, but I'm not sure whether OpenSessionInViewFilter will work... Thanks, MARK Mark wrote: Lutz Hhnken wrote: I asked for applicationContext.xml, and I g

Re: Hibernate persisted data never makes it to DB

2006-05-25 Thread Mark
No, I know that... I'm just playing around with the simple baby steps for now and will add Transactions later on... But thank you for the warning. MARK Konstantin Iignatyev wrote: autocommit is not the best approach. I suggest you to have a glance at the article for inspiration http

Re: Hibernate persisted data never makes it to DB

2006-05-24 Thread Mark
until I actually run into the lazy-load problem. I want so first see what problems come up and why. Once I have figured that out, and I switch to Tapernate and the lazy-load problem goes away, I know that I am using Tapernate the right way. MARK James Carman wrote: Unless you really want

Re: Hibernate persisted data never makes it to DB

2006-05-24 Thread Mark
w thing work without them... ;-) Guess I was so focused on Spring and Hibernate that I left that step out :-) MARK - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Hibernate persisted data never makes it to DB

2006-05-24 Thread Mark
By the way - I am right to assume that what I experience here is not normal Hibernate behaviour? MARK Lutz Hühnken wrote: my two cents, in three parts... - about the problem: well, usually, it kind of works. This may sound silly, but do you maybe have hbm2ddl.auto set to create-drop

Re: Hibernate persisted data never makes it to DB

2006-05-24 Thread Mark
Is there a way to set this in the hibernate.properties? Right now I do not use OpenSessionInViewFilter... MARK Daniel Lydiard wrote: Are you using OpenSessionInViewFilter (spring/hibernate)? The default flushmode is set to NEVER, so you need to override org.springframework.orm.hibernate3

Re: Hibernate persisted data never makes it to DB

2006-05-24 Thread Mark
Does anybody have a standard plain-vanilla hibernate.conf file for me so I can compare it to mine? Also, I am not using any hibernate.cfg.xml, but I assume I don't have to... MARK Lutz Hühnken wrote: Hm... given that you don't use OpenSessionInViewFilter, I think it is really pretty

RE: best development server for Tapestry

2006-05-23 Thread Mark Stang
. Or at the very top there should be a bug icon that you can select to have it connect. Once that has happened, when you are walking through your app and hit a break point it should just stop. HTH, Mark -Original Message- From: Carl Pelletier [mailto:[EMAIL PROTECTED] Sent: Tue 5/23/2006 11:59 AM

RE: Simple tag enclosing

2006-05-23 Thread Mark Stang
name=href expression=helpLink / /component public String getHelpLink() { return ((Visit)getPage().getVisit()).getCurrentState().getHelpName(); } Bottom-line, I build the whole string in java. HTH, Mark -Original Message- From: Mário Lopes [mailto:[EMAIL

Passing a byte array into a component???

2006-05-16 Thread Mark Stang
All, I am trying to pass in a byte[] into a component. However, I only seem to have in available. And it seems to be null when I go looking later. thoughts? thanks, Mark

RE: Passing a byte array into a component???

2006-05-16 Thread Mark Stang
Geoff, T3, but custom wants an object right? thanks, Mark -Original Message- From: Geoff Longman [mailto:[EMAIL PROTECTED] Sent: Tue 5/16/2006 1:19 PM To: Tapestry users Subject: Re: Passing a byte array into a component??? T3? You can always use 'custom' Geoff On 5/16/06, Mark

RE: Passing a byte array into a component???

2006-05-16 Thread Mark Stang
Geoff, THANKS that worked great! regards, Mark -Original Message- From: Geoff Longman [mailto:[EMAIL PROTECTED] Sent: Tue 5/16/2006 1:54 PM To: Tapestry users Subject: Re: Passing a byte array into a component??? parameter name=byteArray direction=custom/ public abstract IBinding

RE: Tapernate-Example HiveMindAutowireWorker Problem

2006-05-12 Thread Mark Lehmacher
the trick! -Original Message- From: Mark Lehmacher [mailto:[EMAIL PROTECTED] Sent: Monday, May 08, 2006 6:04 PM To: Tapestry users Subject: RE: Tapernate-Example HiveMindAutowireWorker Problem Importance: High The way I see it, it definitely IS the ordering: When you

RE: Does my dynamic component violate Tapestry's static structure?

2006-05-12 Thread Mark Stang
for each user, it takes about 10 seconds to create all the components. regards, Mark -Original Message- From: Marcus Matèrn [mailto:[EMAIL PROTECTED] Sent: Fri 5/12/2006 9:37 AM To: Tapestry users Subject: Does my dynamic component violate Tapestry's static structure? I've created

Section 508 Compliance

2006-05-12 Thread Mark Stang
All, Has anyone had any experience with using Tapestry in a Section 508 complicant application? thanks, Mark

RE: Tapernate-Example HiveMindAutowireWorker Problem

2006-05-08 Thread Mark Lehmacher
A little correction, the Shell delegate parameter is of type IRender, not IValidationDelegate. --- Ursprüngliche Nachricht --- Von: Mark Lehmacher [EMAIL PROTECTED] An: Tapestry users users@tapestry.apache.org Betreff: RE: Tapernate-Example HiveMindAutowireWorker Problem Datum: Mon, 8 May

Re: InjectSpring initialisation error

2006-05-08 Thread Mark
and reuses the objects after it gets them for the first time? Then I agree, that sounds dangerous... That should probably be changed, unless doing so would break something else on the Hivemind/Tapestry side of things... MARK -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent

<    1   2   3   4   5