How fields get updated

2006-02-08 Thread Todd O'Bryan
Tapestry 3.0.3, still. I'm losing some field values and I think it's because they get set very indirectly. I have a generic database object that has a number of items, each of which has a key, a numeric value, and a text value. I've subclassed the db object and written a getFoos() method wh

Re: Server-side validation and form listeners

2006-02-08 Thread Shing Hing Man
> Is there a simple way to have the form to be > submitted with a specific > listener on my onChange event of my > @PropertySelection, and also to have > my submit button calling the "regular" listener (the > one specified in > the @Form component? I do not know whether there is a simple way of

Re: [NEWB] Problem with geting value from HTML input

2006-02-08 Thread Raul Raja Martinez
I'm not a 100% sure that it might be your problem but try removing IRequestCycle cycle, from your listenerDocId method so that your listeners has only one String argument as you declare in name="parameters" value="docId"/> Also I think you are confused about setting properties in your java fil

RE: New Tapestry based site: Zillow.com

2006-02-08 Thread Jeff Lubetkin
Sorry, can't help you...we're on Spring 1.2.5, which integrated trivially thanks to the help from the Tapestry wiki. jeff -Original Message- From: Wayland Chan [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 3:39 PM To: Tapestry users Subject: Re: New Tapestry based site: Zi

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Wayland Chan
Jeff, Did you use Spring 2 or the 1.2.x series? If you used Spring 2, would you mind sharing your experiences on that integration? Wayland On 2/8/06, Jeff Lubetkin <[EMAIL PROTECTED]> wrote: > > > jeff > > PS For those of you who are using Tapestry in high volume situations, > don't fear, our

Re: Help with .page DTD

2006-02-08 Thread Mat Gessel
Are you using Tap 3 libraries with a Tap 4 DTD? Also, check out this book: http://www.agileskills2.org/EWDT/ It got me up and going pretty quick in Tap 4. The information is better tailored for the new user than the site docs. =- Mat On 2/8/06, Adam Dear <[EMAIL PROTECTED]> wrote: > > Hello all

RE: New Tapestry based site: Zillow.com

2006-02-08 Thread Jeff Lubetkin
Glad you like it. For those of you who were driven off by our earlier downtime, we're back up and running now. Launch day is tough when you make the Wall Street Journal and New York Times, among others :) That comment is injected by a servlet filter, and contains information about which host ser

Help with .page DTD

2006-02-08 Thread Adam Dear
Hello all, I am very very new to Tapestry. I am trying to learn how to use it. I am having a problem getting even basic applications running. I am currently going through a book on tapestry. Whenever I run my app, an exception is being thrown regarding the DTD in Home.page Here is the con

Re: Page into external libraries

2006-02-08 Thread Chris Nelson
webusers:FindUsers --- kiuma <[EMAIL PROTECTED]> wrote: > Hi, > I have a small problem, I'd like to know how to > refer to a page provided by an external library; > currently I'vedefined into my library: > > specification-path="pages/FindUsers.page"/> > > in my application the library is refer

Page into external libraries

2006-02-08 Thread kiuma
Hi, I have a small problem, I'd like to know how to refer to a page provided by an external library; currently I'vedefined into my library: in my application the library is referenced as follows: I can't immagine how the @PageLink shoud be written down. Could someone help me please? Thanks,

RE: Date format

2006-02-08 Thread Adrian Davis
I'm still new at this, and I have to admit I'm a little confused at the difference between a bean and a service. Are you talking about a synchronized bean of some sort that I could reference in the format attribute of the @Insert? - Adrian -Original Message- From: Hensley, Richard [mailt

RE: Using WML in Tapestry 4.0

2006-02-08 Thread Asim Khaja
Geoff, Thank you for you help, It appears that "" is useless in the sense that I was able to remove that meta tag, and the application ran as expected, I am assuming the tapestry's BaseEngine is sufficient enough and EngineWML doesn't need to be used nor does the application mode need to be change

RE: Custom Exception Page

2006-02-08 Thread Greg Cormier
I'm also looking to do this. I've overridden the default exception page, but it's quite plain. Does anyone know how you could basically add a header to that default page which has all the nice information, but at least we could say "An error has occured, please contact client support with this

Re: Custom Exception Page

2006-02-08 Thread Chris Chiappone
Ok thanks for the input. On 2/8/06, Muljadi Sulistio <[EMAIL PROTECTED]> wrote: > Forgot to add that you'd also need to have a property or method named > "exception" in your custom exception page. > > The property type is Throwable, which will be called by the Tapestry default > ExceptionPresenter

Re: How to monitore begin and end of a request?

2006-02-08 Thread Christian Haselbach
Hell On Wed, Feb 08, 2006 at 10:33:42AM -0800, Konstantin Ignatyev wrote: > Please see my old post on the topic: > http://article.gmane.org/gmane.comp.java.tapestry.user/29047 Maybe, I'm missing something, but this doesn't give me access to the cycle (or an aso). I need access to the newly creat

Re: Custom Exception Page

2006-02-08 Thread Muljadi Sulistio
Forgot to add that you'd also need to have a property or method named "exception" in your custom exception page. The property type is Throwable, which will be called by the Tapestry default ExceptionPresenter. You can see an example of this from the Vlib example in Tapestry 4. On 2/8/06, Muljadi

Re: Custom Exception Page

2006-02-08 Thread Muljadi Sulistio
If you are using Tapestry 4, you can change your hivemodule.xml as follows: On 2/8/06, Chris Chiappone <[EMAIL PROTECTED]> wrote: > > Could someone lead me to the documentation on how to use a custom > exception page? I've been searching through this list but haven't > really

Re: [T4] No type converter for type org.apache.tapestry.components.IPrimaryKeyConverter is available. [Solved]

2006-02-08 Thread Daniel Lydiard
I didn't notice IPrimaryKeyConvertEr (T4) and IPrimaryKeyConvertOr (T3), bah! - Original Message - From: "Daniel Lydiard" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Tuesday, February 07, 2006 2:25 AM Subject: [T4] No type converter for type org.apache.tapestry.components.IPrima

Custom Exception Page

2006-02-08 Thread Chris Chiappone
Could someone lead me to the documentation on how to use a custom exception page? I've been searching through this list but haven't really found the answer. Is the only think you need to do is add: to the tapp.application file Then create the CustomExceptionPage.page and CustomExceptionPage.h

Re: How to monitore begin and end of a request?

2006-02-08 Thread Konstantin Ignatyev
Please see my old post on the topic: http://article.gmane.org/gmane.comp.java.tapestry.user/29047 Christian Haselbach <[EMAIL PROTECTED]> wrote: Hello, what is the best way to monitor the start and end of a request? I want to log some stuff regarding the request, using information from the (new

How to monitore begin and end of a request?

2006-02-08 Thread Christian Haselbach
Hello, what is the best way to monitor the start and end of a request? I want to log some stuff regarding the request, using information from the (newly created) cycle and log some more when the request is done. For example measuring the time used to handle the request. In Tapestry 3 the engine

Re: OT - sending mails ?

2006-02-08 Thread Danny Mandel
I'm using a nifty little Tapestry component that Adam Greene wrote a while back called MailBlock. It has worked pretty well because you can just embed your email in your page template. Now, I won't get into an argument about whether people think this is good style, but I really like it. It w

RE: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Patrick Casey
If it really bugs you (which it sounds like it does), you could always ask them to stop, neh? As the guy behind Tapestry, a request from you would carry a certain amount of Moral Authority if nothing else. If that fails, you could just ban their IP from the mailing lists :). --- P

RE: OT - sending mails ?

2006-02-08 Thread Patrick Casey
I don't know if Velocity includes a mailer or not (I have some old mail generation home-brew code I still use), but I've been using apache's commons email package as a MDU and been quite happy with it. http://jakarta.apache.org/commons/email/ --- Pat > -Original Message-

Re: OT - sending mails ?

2006-02-08 Thread Ron Piterman
yes, I have just soptted a nice article of matt raible about using velocity togenerate mails together with spring. I was hoping of some jar we can just drop in my classpath with everything set - so we need to configure just a few things and not make 1000 decisions and learn how to instanciate th

RE: OT - sending mails ?

2006-02-08 Thread Konstantin Ignatyev
There is interesting discussion that compares Velocity with FreeMarker http://www.theserverside.com/news/thread.tss?thread_id=38869 I am Velocity user but that discussion and materials have reviewed my interest in FreeMarker Mark Stang <[EMAIL PROTECTED]> wrote: We are using Velocity to gen

RE: OT - sending mails ?

2006-02-08 Thread Mark Stang
We are using Velocity to generate templates. -Original Message- From: news on behalf of Ron Piterman Sent: Wed 2/8/2006 10:16 AM To: tapestry-user@jakarta.apache.org Subject: OT - sending mails ? Hi, I need some tips on sending mails from my application, which uses a very simple tomc

Re: Using WML in Tapestry 4.0

2006-02-08 Thread Geoff Longman
Sorry, I'm not familliar with "" Geoff On 2/8/06, Asim Khaja <[EMAIL PROTECTED]> wrote: > Thanks Geoff that worked like a charm, but does that mean that > "" > Is actually ignored because I did not see that property anywhere in the link > that you sent me. > > Thanks Again, > Asim > > -Origin

OT - sending mails ?

2006-02-08 Thread Ron Piterman
Hi, I need some tips on sending mails from my application, which uses a very simple tomcat-apache configuration. What I need is some simple system, with template support (including i18n), which will send mails to users - will be most greatfull for tips, Cheers, Ron --

Re: Multiple Portlets per Tapestry WAR

2006-02-08 Thread Darren Holland
Hi Raphael, Thanks for the pointer, with a bit of reading between the lines I've managed to get it working. I must confess that I did read this originally and missed the multiple portlets per war information, it took a couple more reads to decipher what was needed. I suspect being a Tapestry newb

RE: Using WML in Tapestry 4.0

2006-02-08 Thread Asim Khaja
Thanks Geoff that worked like a charm, but does that mean that "" Is actually ignored because I did not see that property anywhere in the link that you sent me. Thanks Again, Asim -Original Message- From: Geoff Longman [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 8:51 AM

RE: Date format

2006-02-08 Thread Hensley, Richard
If you are using the JDK date formatters, you don't use one object because they are not thread safe. You create them as you go. As an alternative, you might create a date formatting service that you can inject to all your pages and use. This could be threaded to deal with the date format thread sa

Re: Using WML in Tapestry 4.0

2006-02-08 Thread Geoff Longman
you need to set a property to get Tapestry to pick up wml files... org.apache.tapestry.template-extension see http://jakarta.apache.org/tapestry/UsersGuide/configuration.html#configuration.properties Geoff On 2/8/06, Asim Khaja <[EMAIL PROTECTED]> wrote: > Hello, > > I read the the EngineWML A

Date format

2006-02-08 Thread Adrian Davis
I'd like to create a particular dateformat once object and use it throughout my application without adding it to every page. What's the best way to do this? - Adrian

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Howard Lewis Ship
TapestryForums is run seperately, without our control, or approval. On 2/8/06, Massimo Lusetti <[EMAIL PROTECTED]> wrote: > On 2/8/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > > Part of the Apache culture is that all discussions take place in the > > open, on mailing lists. > > Right, so p

Re: Override validation messages

2006-02-08 Thread Andreas Bulling
Hey Ron, thanks _a lot_ - that's it ;)) Sincerly, Andreas On 08. Feb 2006 - 16:40:17, Ron Piterman wrote: | check your xml header: | | or UTF-8 | | Cheers, | Ron - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Using WML in Tapestry 4.0

2006-02-08 Thread Asim Khaja
Hello, I read the the EngineWML API for tapestry 4.0 that it was depricated becuase "To be removed in 4.1. No longer necessary; the differences between WML applications and HTML applications are now handled via a startup mode. See SetupServletApplicationGlobals." So the way I have interpruteed th

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Konstantin Ignatyev
Nice site, if it was working properly :( I am sure it will be fixed over time, as for now: - mapping is slow and contains many blank areas ( try my 98034 zip); - theare are much more homes for sale in the are than shown, I live there an see signs daily Keep up the good work kranga <[EMAI

Re: Override validation messages

2006-02-08 Thread Ron Piterman
check your xml header: or UTF-8 Cheers, Ron Andreas Bulling wrote: Hi Rudolf, I tried to set my own message but unfortunately German Umlaute cause Tapestry to drop the following error message: "Could not parse specification context:/WEB-INF/Register.page." I hope this gets fixed in the next

Server-side validation and form listeners

2006-02-08 Thread Martin Carel
Hi folks! I have a problem involving validation and submit listeners. Here is the (simplified) HTML template: listener="ognl:listeners.onChangeEventPropertySelectionListener" delegate="bean:delegate"> value="ognl:country" model="ognl:countriesModel" onChange="this.form.submit()"/> jw

Re: Override validation messages

2006-02-08 Thread Andreas Bulling
Hi Rudolf, I tried to set my own message but unfortunately German Umlaute cause Tapestry to drop the following error message: "Could not parse specification context:/WEB-INF/Register.page." I hope this gets fixed in the next version of Tapestry (if this is a Tapestry issue at all). Any further ti

Re: disable rendering of tag

2006-02-08 Thread Kent Tong
Mazhar, Osman (Home Office lls.org> writes: > It seems like the Shell component creates an http base tag as follows: > > http://127.0.0.1:9090/MyApp/"/> > > Because of this base tag, I cannot have apache http server serve as a > reverse proxy to my tapestry application as it messes up all links

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Massimo Lusetti
On 2/8/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Part of the Apache culture is that all discussions take place in the > open, on mailing lists. Right, so please abandon tapestryforums -- Massimo http://meridio.blogspot.com ---

RE: New Tapestry based site: Zillow.com

2006-02-08 Thread Jeff Lubetkin
Alas indeed...please keep trying, we're working on it :) jeff -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 6:32 AM To: Tapestry users Subject: Re: New Tapestry based site: Zillow.com Alas, all I'm seeing is "down for maintenance

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Francis Amanfo
I saw the message: Zillow at restThen comes my question: Is Zillow fallen in a deep coma dying a slow death already? :) Francis On 2/8/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > Alas, all I'm seeing is "down for maintenance". > > On 2/8/06, kranga <[EMAIL PROTECTED]> wrote: > > Nice sit

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Howard Lewis Ship
Part of the Apache culture is that all discussions take place in the open, on mailing lists. On 2/8/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > What would you think about using opensymphony? It's sort of a similar > concept, only done much much better. I know a couple of other projects using >

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Ted Steen
hehe, yeah. it's pretty irritating. On 2/8/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Something seems wrong with TapestryForums; they have been spamming me > and several other users. They have also been unresponsive in fixing > the problem. I've done what I can ... unsubscribing them from

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Howard Lewis Ship
Alas, all I'm seeing is "down for maintenance". On 2/8/06, kranga <[EMAIL PROTECTED]> wrote: > Nice site and a more impressive list of executives and board members. What is > your revenue model? > - Original Message - > From: Jeff Lubetkin > To: Tapestry users > Sent: Wednesday, F

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Jesse Kuhnert
Should have also said that none of the conversations in the forum aren't seen in the mailing list, so people can still use one or the other only... On 2/8/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > > What would you think about using opensymphony? It's sort of a similar > concept, only done muc

Re: [NOTICE] TapestryForums Spamming

2006-02-08 Thread Jesse Kuhnert
What would you think about using opensymphony? It's sort of a similar concept, only done much much better. I know a couple of other projects using it very successfully. (The owner also lives right in your town) On 2/8/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > Something seems wrong with

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Jesse Kuhnert
haha, good luck with that ;) On 2/8/06, Ron Piterman <[EMAIL PROTECTED]> wrote: > > Thanx - on my dev box its really ok, I will however unpack my old PII > notebook and see how its doing with "good" old explorer 4 *g* > cheers, > ROn > > > Jesse Kuhnert wrote: > > Oh that? here, http://tacos.mine.

[NOTICE] TapestryForums Spamming

2006-02-08 Thread Howard Lewis Ship
Something seems wrong with TapestryForums; they have been spamming me and several other users. They have also been unresponsive in fixing the problem. I've done what I can ... unsubscribing them from the tapestry-user mailing list. Hopefully that will stem the flow. If I could, I would nuke the s

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Ron Piterman
Thanx - on my dev box its really ok, I will however unpack my old PII notebook and see how its doing with "good" old explorer 4 *g* cheers, ROn Jesse Kuhnert wrote: Oh that? here, http://tacos.mine.nu/tacos-demo4/app :) I think viktor's poor server is still getting hammered with quite a large

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Jesse Kuhnert
Oh that? here, http://tacos.mine.nu/tacos-demo4/app :) I think viktor's poor server is still getting hammered with quite a large load, but the page loading should be pretty damn fast. On 2/8/06, Ron Piterman <[EMAIL PROTECTED]> wrote: > > hi jesse, > what about this fast-loading dojo sample? > ch

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Ron Piterman
hi jesse, what about this fast-loading dojo sample? cheers, Ron Jesse Kuhnert wrote: I get them on all jvm versions for pretty much every platform in one form or another. (ie 1.3/1.4 on linux/solaris/windows whether it's core dumping or "hotspot" dumping ) They don't happen very often, but sti

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Ron Piterman
I guess i never got them because I rarely need to debug ;-) Norbert Sándor wrote: I have exprienced crashes using 1.4 as well. But only in debug mode, I have never had problems in release mode... Regards, Norbi - Original Message - From: "Ron Piterman" <[EMAIL PROTECTED]> To: Sent: We

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Norbert Sándor
I have exprienced crashes using 1.4 as well. But only in debug mode, I have never had problems in release mode... Regards, Norbi - Original Message - From: "Ron Piterman" <[EMAIL PROTECTED]> To: Sent: Wednesday, February 08, 2006 1:52 PM Subject: OT - JVM HotSpot crash :( My JVM (1.

Re: OT - JVM HotSpot crash :(

2006-02-08 Thread Jesse Kuhnert
I get them on all jvm versions for pretty much every platform in one form or another. (ie 1.3/1.4 on linux/solaris/windows whether it's core dumping or "hotspot" dumping ) They don't happen very often, but still do happen. cheers j On 2/8/06, Ron Piterman <[EMAIL PROTECTED]> wrote: > > My JVM (1

OT - JVM HotSpot crash :(

2006-02-08 Thread Ron Piterman
My JVM (1.5) just crushed while debugging tomcat- I use java from the AWT times and never had this before... Maybe there *is* something behind companies decisions to stay with 1.3 / 1.4 ? :( # # An unexpected error has been detected by HotSpot Virtual Machine: # # SIGSEGV (0xb) at pc=0x402d

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread kranga
Nice site and a more impressive list of executives and board members. What is your revenue model? - Original Message - From: Jeff Lubetkin To: Tapestry users Sent: Wednesday, February 08, 2006 2:12 AM Subject: New Tapestry based site: Zillow.com Zillow.com (http://www.zill

Re: NullPointerException when calling tapestry servlet directly

2006-02-08 Thread Fabien Le Floc'h
Sorry it had nothing to do with Tapestry, it was a bug in Jetty 6 beta7, now corrected in beta8. On 2/7/06, Fabien Le Floc'h <[EMAIL PROTECTED]> wrote: > > Using latest Tapestry stable (4.0) on latest Jetty 6 with NIO and JDK > 1.5.06, if I call directly the tapestry servlet setup in the web.xml (

RE: Multiple Portlets per Tapestry WAR

2006-02-08 Thread Raphaël Jean
Darren, Here is a current link to the Tapestry portlet documentation: http://jakarta.apache.org/tapestry/tapestry-portlet/configuration.html It explains how to package multiple portlets in one war and how to define the configuration for each portlet. Let me know if you need more information.

Re: Localization

2006-02-08 Thread Rudolf Baloun
Thx Lukas, that's what i was looking for. This work perfekt for me. Lukas Ruetz wrote: hi in T4 you can have an application wide .property file named _.properties - for example myapp_fr.properties (for myapp.application). lukas Am Mittwoch, 8. Februar 2006 10:10 schrieb Rudolf Baloun:

Re: Localization

2006-02-08 Thread Lukas Ruetz
hi in T4 you can have an application wide .property file named _.properties - for example myapp_fr.properties (for myapp.application). lukas Am Mittwoch, 8. Februar 2006 10:10 schrieb Rudolf Baloun: > Hi comunity, > > > i know, that it is possible to localize the pages by adding *.properties >

Re: [NEWB] Problem with geting value from HTML input

2006-02-08 Thread Ernst Thielmann
My class looks like this public abstract class Home extends BasePage implements PageBeginRenderListener { public String docId; public abstract String getDocId(); public abstract void setDocId(String docId); public void listenerDocId( IRequestCycle cycle

Re: How to popup excel file in the IE(2)?

2006-02-08 Thread Vincent
Hi Sohail, Thanks for your code. On 2/8/06, Sohail Aslam <[EMAIL PROTECTED]> wrote: > Hi, > > You can use PopupLinkRenderer with an ExternalLink to popup a window > that will display the excel sheet. I do something similar for displaying > images (jpeg, gif). Here are excerpts of TP4 code that you

Localization

2006-02-08 Thread Rudolf Baloun
Hi comunity, i know, that it is possible to localize the pages by adding *.properties files in the WEB-INF folder. For Example: Home.page Home.html Home.properties Home_fr.properties Login.page Login.html Login.properties Login_fr.properties http://jakarta.apache.org/tapestry/tapestry/Co

Re: How to popup excel file in the IE(2)?

2006-02-08 Thread Sohail Aslam
Hi, You can use PopupLinkRenderer with an ExternalLink to popup a window that will display the excel sheet. I do something similar for displaying images (jpeg, gif). Here are excerpts of TP4 code that you will need: 1. In the html file that has the export link Export Excel 2. In the .page

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Will Scheidegger
Great, I'm getting a "browser not supported" message! ;-) -Will On 08.02.2006, at 08:12, Jeff Lubetkin wrote: Zillow.com (http://www.zillow.com) is an online real estate service dedicated to helping you get an edge in real estate. We have home valuations for over 60 million homes in the U.

Re: New Tapestry based site: Zillow.com

2006-02-08 Thread Geoff Longman
very cool. so what's this at the bottom of the 'view page source' ? Geoff On 2/8/06, Jeff Lubetkin <[EMAIL PROTECTED]> wrote: > > Zillow.com (http://www.zillow.com) is an online real estate service > dedicated to helping you get an edge in real estate. We have home > valuations for over 60