Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread P . Stavrinides
Thanks so much Geoff! I see you have also added JDK 1.6 support... excellent! Peter - Original Message - From: "Howard Lewis Ship" To: "Tapestry users" Sent: Thursday, 16 July, 2009 09:14:26 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: Re: [ANN] JumpStart 4.3 released - for

Re: T5 Page field persistance and multithread problems

2009-07-16 Thread Otho
Wizard SSOs are a typical example of the temporary state I mentioned. No one else should be able to write to it and thus you don't need guards against concurrent writes. Especially not, since you validate the business objects before comitting them. But still it could be a neat idea in some circumst

Re: setting up maven in eclipse

2009-07-16 Thread Juan E. Maya
John, there are 2 ways that i know to do this: 1. If you have a maven project in the filesystem you can run mvn eclipse:eclipse in the directory with the pom.xml. This creates the necessary files for eclipse to recognise the project as a maven project. After this u only have to import the project

Multiple IoC registries

2009-07-16 Thread P . Stavrinides
Hi, We are in the process of breaking up a large code base into IoC modules and are looking to use a standalone implementation of Tapestry IoC for collective modules as a library. This code will be used a desktop application, but we are also hoping to reuse it in Tapestry web applications (each

T5.1 warning about cookie name in jetty log - blackbird related?

2009-07-16 Thread Andy Pahne
Today I have seen this warnings for the first time, right after starting an application with mvn jetty:run. Has anybody else seen this? It's clearly blackbird related, as the cookie's name suggests, but I haven't ever seen this before. Andy 2009-07-16 10:42:03.629::INFO: Started selectc

Re: T5.1 warning about cookie name in jetty log - blackbird related?

2009-07-16 Thread Peter Stavrinides
Yes since this morning getting a ton of those. Peter - Original Message - From: "Andy Pahne" To: "Tapestry users" Sent: Thursday, 16 July, 2009 11:51:45 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: T5.1 warning about cookie name in jetty log - blackbird related? Today I ha

Re: How should missing page context be handled?

2009-07-16 Thread Felix Gonschorek
hi, you instead of two onActivate methods with different parameter count, you can use a single method with a EventContext parameter. With this object, you can get the number of activation context parameters and it has handy methods to obtain the parameters (coerced to the desired type - in you

Re: Log remote IP address with MDC class?

2009-07-16 Thread nille hammer
Hi learning, use Tapestry's RequestGlobals service (http://tapestry.apache.org/tapestry5.1/apidocs/org/apache/tapestry5/services/RequestGlobals.html). It gives you access to the HttpServletRequest which inherits a method getRemoteAddr() from ServletRequest. You can inject RequestGlobals into y

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Newham, Cameron
Thanks Kristian. I had to manually add it to my POM - that did the trick. However, sorry to be a pest everyone, but I cannot now find: org.apache.tapestry5.hibernate.annotations.CommitAfter This is in the 5.0.18 version of the tapestry-hibernate jar but not in the 5.1.0.5 version. Is there anyw

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Kristian Marinkovic
you have to include tapestry-hibernate-5.1.0.5 this will in turn include tapestry-hibernate-core that contains the annotation g kris "Newham, Cameron" 16.07.2009 14:09 Bitte antworten an "Tapestry users" An "Tapestry users" Kopie Thema RE: t5: moving to 5.1.0.5 and can't find @Inject

Re: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Sven Homburg
try a better mvn plugin, or even better try a better IDE. i just kidding, so dont flame me ;-) with regards Sven Homburg Founder of the Chenille Kit Project http://www.chenillekit.org 2009/7/16 Newham, Cameron : > Thanks Kristian. I had to manually add it to my POM - that did the > trick. >

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Newham, Cameron
Thanks Kris, it would be nice if it did! I already have tapestry-hibernate-5.1.0.5. No tapestry-hibernate-core though. Maven is such a heap of *** Again, it would be nice if the classes and their whereabouts were actually documented. It seems to be such a lapse not to do so - not to mention a

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Joakim Olsson
Hi, I would recommend you (and anyone else looking for classes) to take a look at http://www.jarvana.com http://www.jarvana.com/jarvana/search?search_type=class&java_class=CommitAfter Regards, Joakim On Thu, 2009-07-16 at 13:09 +0100, Newham, Cameron wrote: > Thanks Kristian. I had to manuall

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Kristian Marinkovic
if you add the tapestry-hibernate dependency to you pom.xml maven will resolve the transitive dependencies automatically. could it be, that you are working in offline mode? thats the only thing i could imagine why you don't get the dependencies. or maybe a proxy?... as mentioned before, open y

RE: Dynamic service binding based on symbol source

2009-07-16 Thread Alfie Kirkpatrick
I managed to implement exactly what I wanted with a single additional bind method overload on ServiceBinderImpl. As usual with Tapestry a fair bit of head scratching but very little resulting work! Have submitted with patch as an enhancement request. If anyone is interested in the detail (or wants

RE: t5: moving to 5.1.0.5 and can't find @Inject

2009-07-16 Thread Newham, Cameron
Brilliant. Thanks Joakim! -Original Message- From: Joakim Olsson [mailto:argo...@lingonpaj.com] Sent: 16 July 2009 13:45 To: Tapestry users Subject: RE: t5: moving to 5.1.0.5 and can't find @Inject Hi, I would recommend you (and anyone else looking for classes) to take a look at http:

Re: Tapestry-Spring Security & Page Testing

2009-07-16 Thread Juan E. Maya
I came to the conclusion (maybe i am wrong) that this is not possible (at least now) using Spring-security. Sadly this is a deal breaker for me :S The nice thing is that thanks to tapestry modularity it was extremely easy to replace the security to use Chennilleit Access! I am really looking forwa

Re: Tapestry-Spring Security & Page Testing

2009-07-16 Thread P . Stavrinides
Look at the project Tapestry testify: https://tapestry.formos.com/nightly/tapestry-testify/ This should give you the tools you need to test your pages precisely, you also will need to include a mocking framework (EasyMock or Mockito) with testify. good luck, Peter - Original Message -

RE: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Blower, Andy
Thanks for the update Geoff, I love jumpstart. Just tried the ajaxformlooptailored page and clicked add a row and got the blackbird error console showing: # Communication with the server failed: The rendered content did not include any elements that allow for the positioning of the hidden form

Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Geoff Callender
Hi Andy, That's the second report I've received of that but I can't replicate the problem. Are you going through a proxy? Regards, Geoff On 17/07/2009, at 12:29 AM, Blower, Andy wrote: Thanks for the update Geoff, I love jumpstart. Just tried the ajaxformlooptailored page and clicked ad

RE: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Blower, Andy
Not sure TBH as I'm at work. > -Original Message- > From: Geoff Callender [mailto:geoff.callender.jumpst...@gmail.com] > Sent: 16 July 2009 15:38 > To: Tapestry users > Subject: Re: [ANN] JumpStart 4.3 released - for T5.1.0.5 > > Hi Andy, > > That's the second report I've received of tha

RE: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Blower, Andy
I just checked, and yes we're using an internal proxy server for external requests. > -Original Message- > From: Blower, Andy [mailto:andy.blo...@proquest.co.uk] > Sent: 16 July 2009 15:48 > To: 'Tapestry users' > Subject: RE: [ANN] JumpStart 4.3 released - for T5.1.0.5 > > Not sure TBH

Re: Tapestry-Spring Security & Page Testing

2009-07-16 Thread Juan E. Maya
I had already look at it, but due to restrictions in the test server we can't launch an instance of a browser to execute the test. Thanks anyway Peter On Thu, Jul 16, 2009 at 4:26 PM, wrote: > Look at the project Tapestry testify: > https://tapestry.formos.com/nightly/tapestry-testify/ > > This

Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Peter Stavrinides
I can also confirm the error (with no proxy). cheers, Peter - Original Message - From: "Andy Blower" To: "Tapestry users" Sent: Thursday, 16 July, 2009 17:47:38 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: RE: [ANN] JumpStart 4.3 released - for T5.1.0.5 Not sure TBH as I'm

Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Geoff Callender
Very odd. I've just tried it with Safari, Chrome, Firefox, and IE 7 on XP, and Safari and Firefox on OS X, and I don't get the error. What if you refresh the page before clicking "Add a row"? I'm wondering whether the Tapestry javascript has changed but the browser is caching it. On 17/07

[ANN] New tapestry-spring-security release

2009-07-16 Thread Robin Helgelin
Hi all. I've just deployed release 2.1.0 of tapestry-spring-security. News are working support for Tapestry 5.1 and ability to configure more than one role for each RequestInvocationDefinition. -- regards, Robin --

[Tapestry Central] Infrequent commands

2009-07-16 Thread Howard
Ann odd usability thought just hit me as I'm making some simple updates to my slide decks in Keynote. Adding and positioning the page number is not something you can do without using the mouse (to click the button in the inspector and drag it into place). There's no menu item for this. That's norma

Re: [ANN] New tapestry-spring-security release

2009-07-16 Thread Norman Franke
Cool, thanks! Upgrading now. (I was using the SNAPSHOT.) Seems to work pretty well so far. Norman Franke Answering Service for Directors, Inc. www.myasd.com On Jul 16, 2009, at 12:48 PM, Robin Helgelin wrote: Hi all. I've just deployed release 2.1.0 of tapestry-spring-security. News are

Re: T5 Asset URLs

2009-07-16 Thread Sergey Didenko
Did you try "Simplified Paths" on http://tapestry.apache.org/tapestry5.1/guide/assets.html ? - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Looking Authentication and Security recommendations

2009-07-16 Thread Pete Poulos
Hi, I'm very new to web development in general and tapestry in particular, but I really like what I've seen/used so far. I have a java swing development and haven't had to use/deal with many issues web pages deal with. Having said that, I am looking for recommendations on APIs or approaches for

Re: Looking Authentication and Security recommendations

2009-07-16 Thread Thiago H. de Paula Figueiredo
Em Thu, 16 Jul 2009 15:28:16 -0300, Pete Poulos escreveu: Hi, Hi! A partial answer . . . I'm very new to web development in general and tapestry in particular, Welcome to the Tapestry mailing list! :) Database Connectivity (preferably with Hibernate, as I've already invested some tim

Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Sergey Didenko
Thanks, Geoff! Jumpstart was very useful for me. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: [ANN] JumpStart 4.3 released - for T5.1.0.5

2009-07-16 Thread Sergey Didenko
http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformlooptailored1 works good for me. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.a

Re: T5 Asset URLs

2009-07-16 Thread Howard Lewis Ship
Why is this an issue? The longer URLs will be cached; shorter (direct) URLs will not be. For some data (CSS, JavaScript) the data sent to the browser will be GZIP compressed. What's not to like? On Wed, Jul 15, 2009 at 3:33 PM, John Frege wrote: > Hi, > For a while now, I've been happily includi

Is AjaxFormLoop example working for you?

2009-07-16 Thread Geoff Callender
Everyone, Please try this quick experiment. I am trying to figure out why it works for some people and not for others. The experiment is: go to the following two pages and click on "Add a row"... http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformloop1

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Hilco Wijbenga
2009/7/16 Geoff Callender : >  http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformloop1 Does not work. >  http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformlooptailored1 Works. I'm at work behind a proxy (although not everything is proxied

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Sven Homburg
It doesnt works, if you turn off the cookies with regards Sven Homburg Founder of the Chenille Kit Project http://www.chenillekit.org 2009/7/17 Geoff Callender : > Everyone, > > Please try this quick experiment. I am trying to figure out why it works for > some people and not for others. > >

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Sven Homburg
Ok, more detailed: if youre Browser points the the page, and you clear all cookies hosted by your browser, the AjaxFormLoop failes after add a row to the form.. with regards Sven Homburg Founder of the Chenille Kit Project http://www.chenillekit.org 2009/7/17 Sven Homburg : > It doesnt work

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Pete Poulos
Both versions work for me. I am on Win XP. No proxy. Cookies are enabled. On Thu, Jul 16, 2009 at 6:08 PM, Geoff Callender wrote: > Everyone, > > Please try this quick experiment. I am trying to figure out why it works for > some people and not for others. > > The experiment is: go to the followin

Is webflow ready?

2009-07-16 Thread Donyee
I found there is a t5-webflow,is there any example or docs? -- Yet Another Java EE Developer!

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Hilco Wijbenga
2009/7/16 Geoff Callender : >  http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformloop1 >  http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/tables/ajaxformlooptailored1 Both work, with or without cookies. First time or otherwise. I'm using Firefox. I'm run

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Robert Zeigler
Both work: FF, OS X, USA, no proxy. Tried with cookies, and with explicitly blocking cookies (and all cookies cleared) from jumpstart.doublenegative.com.au Cheers, Robert PS: this sounds like: https://issues.apache.org/jira/browse/TAP5-733 On Jul 16, 2009, at 7/167:08 PM , Geoff Callender

Re: Tapestry-Spring Security & Page Testing

2009-07-16 Thread Peter Stavrinides
Testify is not selenium, its basic unit and integration testing, built on top of Tapestry and page tester you do you need a browser. - Original Message - From: "Juan E. Maya" To: "Tapestry users" Sent: Thursday, 16 July, 2009 17:54:23 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subj

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Peter Stavrinides
First one works, second not, no proxy FF3 in Cyprus. Peter - Original Message - From: "Robert Zeigler" To: "Tapestry users" Sent: Friday, 17 July, 2009 08:09:59 GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: Re: Is AjaxFormLoop example working for you? Both work: FF, OS X, US

Re: Is AjaxFormLoop example working for you?

2009-07-16 Thread Koka Kiknadze
Both work in Georgia (not the US one): kubuntu 9.04 FF 3.0.11 Konqueror (worked with cookies disabled)