RE: Perfomance Testing Tapestry App

2006-11-27 Thread Detlef Schulze
Some tool that I like much more than Jmeter (although I have to admit that it is quite some time ago I last checked it) is Microsofts Web Application Stress Test tool. You can freely download and use it: http://www.microsoft.com/downloads/details.aspx?FamilyID=E2C0585A-062A-4 39E-A67D-75A89AA36495

Problem with TableView in Tap 3

2006-10-18 Thread Detlef Schulze
Hi, this is the first time I use a TableView and I have a problem with it. The page containing the TableView is a Search + Search Result page. I have two buttons that trigger an action. One of them clears a List with search results, the other one performs a search over some database tables. The L

RE: File Downloading in Tapestry

2006-10-09 Thread Detlef Schulze
For version 3 there is an example in the online FAQ. Should work for 4 too. -Original Message- From: Dobrin Ivanov [mailto:[EMAIL PROTECTED] Sent: Montag, 9. Oktober 2006 00:43 To: Tapestry users Subject: File Downloading in Tapestry Hi, I'm wondering which is the best way to download f

RE: File copy - Access denied error

2006-09-08 Thread Detlef Schulze
First of all, this will not compile because the backslashes are not escaped. Second, you are opening a OutputStream to a Directory, not a file ... This will obviously not work. -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Freitag, 8. September 2006 07:14 To: tapes

RE: Tapestry with Hibernate vs JSF with Hibernate (Object binding question)

2006-08-21 Thread Detlef Schulze
The problem you are facing is due to the nature tapestry works (the rewind-cycle). There is documentation online, you might read it to understand this behaviour and to solve it without a persistent attribute. In short: when the page renders you have your data, when you submit a form rewinding of t

RE: Fast testing of Tapestry Apps

2006-08-21 Thread Detlef Schulze
... startup the container with -Dorg.apache.tapestry.disable-caching=true (command line option). At least that's with tap3, not sure if tap4 uses the same switch. -Original Message- From: Fabbed [mailto:[EMAIL PROTECTED] Sent: Montag, 21. August 2006 13:34 To: users@tapestry.apache.org

RE: its working, but a problem

2006-08-20 Thread Detlef Schulze
Like always: please post some code, it is quite hard to guess what you did wrong when it is not visible WHAT you did exactly cheers, detlef -Original Message- From: zqzuk [mailto:[EMAIL PROTECTED] Sent: Sonntag, 20. August 2006 17:15 To: users@tapestry.apache.org Subject: its working,

RE: Tapestry with Hibernate vs JSF with Hibernate (Object binding question)

2006-08-19 Thread Detlef Schulze
I don't fully understand, but it sounds a bit like you have a property on your page which should be marked as persistent but isn't. Could you post some code (java, page, html)? Cheers, Detlef -Original Message- From: Vinicius Carvalho [mailto:[EMAIL PROTECTED] Sent: Samstag, 19. August

RE: Re: Contrib:Table problems with layout

2006-08-11 Thread Detlef Schulze
Ups. Sorry, wrong thread. -Original Message- From: Detlef Schulze Sent: Freitag, 11. August 2006 17:13 To: Tapestry users Subject: RE: Re: Contrib:Table problems with layout You should remove the hivemind libs from the eclipse start configuration for your container (at least that was

RE: Strange HiveMind/T4 error message

2006-08-11 Thread Detlef Schulze
You should remove the hivemind libs from the eclipse start configuration for your container (at least that was the case with jetty) -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Freitag, 11. August 2006 17:05 To: 'Tapestry users' Subject: RE: Strange HiveMind/T4 e

RE: Re: Contrib:Table problems with layout

2006-08-11 Thread Detlef Schulze
You should remove the hivemind libs from the eclipse start configuration for your container (at least that was the case with jetty) -Original Message- From: hv @ Fashion Content [mailto:[EMAIL PROTECTED] Sent: Freitag, 11. August 2006 17:08 To: users@tapestry.apache.org Subject: Re: Contr

RE: Forcing all @If to evaluate to True on Form Submit

2006-08-04 Thread Detlef Schulze
Javascript runs on the client browser, the @If is evaluated on the server What are you trying to accomplish ?!?!?!?!? -Original Message- From: Karthik N [mailto:[EMAIL PROTECTED] Sent: Freitag, 4. August 2006 14:45 To: Tapestry users Subject: Forcing all @If to evaluate to True on F

RE: I want my HTML *that* way

2006-08-04 Thread Detlef Schulze
You could try to use a tool for cleaning your html. There are many tools out there for this (i.e. htmltidy http://www.w3.org/People/Raggett/tidy/) Cheers, detlef -Original Message- From: Rui Pacheco [mailto:[EMAIL PROTECTED] Sent: Freitag, 4. August 2006 12:58 To: Tapestry users Subject

RE: dynamic links to non tapestry pages

2006-07-28 Thread Detlef Schulze
Use the "Any" component to create the link. Cheers, detlef -Original Message- From: Jani Lindqvist [mailto:[EMAIL PROTECTED] Sent: Freitag, 28. Juli 2006 14:55 To: Tapestry users Subject: dynamic links to non tapestry pages I tried to find a solution to this from the documents but could

RE: Controlling length of session

2006-07-27 Thread Detlef Schulze
Don't use it. Use http://jakarta.apache.org/commons/httpclient/ instead. -Original Message- From: Kevin Menard [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 27. Juli 2006 17:20 To: 'Tapestry users' Subject: RE: Controlling length of session > -Original Message--

RE: Controlling length of session

2006-07-27 Thread Detlef Schulze
Do you send the session cookie? Or include the jsessionid= in the URL? Otherwise this would be the normal behaviour because there is no way for the server to identify the right session. Cheers, detlef -Original Message- From: Kevin Menard [mailto:[EMAIL PROTECTED] Sent: Donnerstag

RE: Streaming files from Tapestry

2006-07-27 Thread Detlef Schulze
If you only want to stream a file to the browser the example in the faq is perfectly ok. If you want to do something else, for example create an image from a database blob or whatever for displaying it in a page, you should create your own engine service for that. IIRC there is an example for tha

Dynamically adding pages to T3 application

2006-07-17 Thread Detlef Schulze
Hi everybody, we have a rather large application that runs with homegrown framework and that we will migrate to tapestry. Since spindle is not available for tap 4 yet it has been decided to start with t3 and later move to t4. The problem is that this application is based on a modular design and m

RE: Socket Communication

2006-05-24 Thread Detlef Schulze
Don't you use a own thread for it? -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 24. Mai 2006 11:53 To: tapestry-user@jakarta.apache.org Subject: Socket Communication i am trying to enable socket comm in my web app. the problem is that once i start a new s

RE: All proposed logos so far

2006-05-19 Thread Detlef Schulze
First of all I would like to state that I am quite happy with the logo as it is now and I do not see any need for a change. Second, and I really do not want to insult anybody, there are already lots of open source projects that have logos that may cause eye cancer. If I have learned one thing abo

RE: List blocking files

2006-05-18 Thread Detlef Schulze
-1 This would probably slow down the list too much ... Imagine a 1 MB attachment sent to 2000 people. That's 1 * 2000 = 2GB traffic. -Original Message- From: Rui Pacheco [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 18. Mai 2006 13:04 To: Tapestry users Subject: Re: List blocking files

RE: tapestryforums.com

2006-05-09 Thread Detlef Schulze
+1 Stop sending mails from the forum to the list. This is really annoying. -Original Message- From: Jesse Kuhnert [mailto:[EMAIL PROTECTED] Sent: Dienstag, 9. Mai 2006 15:27 To: users@tapestry.apache.org Subject: tapestryforums.com I think some agreement needs to be come to about tapest