Re: preventing double submit in tapestry

2006-11-15 Thread John Menke
de a unique token all too easily, anyway. If there is a true security or data integrity concern, you'll have to do something that is entirely on the server side in order to prevent manipulation by someone with the smarts to interpret an html file and manually send a post. --sam On 11/15/06,

Re: preventing double submit in tapestry

2006-11-15 Thread John Menke
Is there a non-javascript solution to this problem? I have been experimenting with code based on the forum post below. Has anyone developed a solution for Tapestry? I propose some sort of consensus should be reached as to what the best method is to handle double submits and a patch should be ma

Form Component that outputs raw DisplayName

2006-08-07 Thread John Menke
I have a component that implements IFormComponent - and has a getDisplayName() method that returns the name for use in a label. I need the outputed text in the label to be RAW - is there any simple way of doing this? -jm

Re: Unable to decode stream: Unexpected end of ZLIB input stream

2006-08-03 Thread John Menke
use the war file is tainted while en route between my workstation and the server. We have a flaky network and unexpected things tend to happen. On 8/3/06, John Menke <[EMAIL PROTECTED]> wrote: > > Has anyone seen this error? We are getting sporadically on our site: > > org.apache.

Unable to decode stream: Unexpected end of ZLIB input stream

2006-08-03 Thread John Menke
Has anyone seen this error? We are getting sporadically on our site: org.apache.hivemind.ApplicationRuntimeException: Unable to decode stream: Unexpected end of ZLIB input stream at org.apache.tapestry.services.impl.LinkFactoryImpl.extractListenerParameters( LinkFactoryImpl.java:185) at $L

Re: Tapestry / Spring / Hibernate / Tomcat strange error

2006-08-03 Thread John Menke
essage- From: John Menke [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 11:27 AM To: Tapestry users Subject: Re: Tapestry / Spring / Hibernate / Tomcat strange error We have no urls like this. I'm starting to suspect that it's somebody trying to hack On 8/3/06, Ron Piterman &

Re: Tapestry / Spring / Hibernate / Tomcat strange error

2006-08-03 Thread John Menke
k? check the url which generates this exception, specifically the service= parameter ( if using roude URLs ). If you are using fiendly URLs, try to see which encoder makes problems. Cheers, Ron John Menke wrote: > We are getting the following error sporadically. Can anyone shed any lig

Tapestry / Spring / Hibernate / Tomcat strange error

2006-08-03 Thread John Menke
We are getting the following error sporadically. Can anyone shed any light on this for us? org.apache.hivemind.ApplicationRuntimeException: No engine service named *(arbitrary string here - usually a bogus email address)* at org.apache.tapestry.services.impl.ServiceMapImpl.buildProxy( ServiceM

link to Service gettting ampersands encoded and fouling up my query parameters

2006-07-19 Thread John Menke
I create a url string which i use as src to an IFrame. This url points to a Tapestry service. I have been having problems with the parameters being encoded incorrectly intermittently. Ampersands end up getting encoded like this: http://mysite.com?service=MyService&acco untID=1603272555&even

Number Translator and Commas

2006-06-30 Thread John Menke
I am trying to do this: but i get the error Class org.apache.tapestry.form.translator.NumberTranslator does not contain a property named '###.##''. It seems that the comma is being intepreted as marking a new property. Is there any way to specifiy commas in the pattern? -john

Re: strange problem losing session variables

2006-06-08 Thread John Menke
at the same time. On 6/7/06, John Menke <[EMAIL PROTECTED]> wrote: > > Peter it's definitely storing them... This problem is sporadic... we can't > reproduce - only we see the errors in the log > > On 6/5/06, Peter Dawn <[EMAIL PROTECTED]> wrote: > >

Re: strange problem losing session variables

2006-06-07 Thread John Menke
Peter it's definitely storing them... This problem is sporadic... we can't reproduce - only we see the errors in the log On 6/5/06, Peter Dawn <[EMAIL PROTECTED]> wrote: perhaps your variable is not being stored in the first place. i used to get the same errors and then i realised that my origi

Re: strange problem losing session variables

2006-06-07 Thread John Menke
to do with the code. On 6/5/06, John Menke <[EMAIL PROTECTED]> wrote: > > Is anyone experiencing any problems with "lost" session variables? We > have > an application that stores some state in the session and we are getting > strange errors caused by objects t

strange problem losing session variables

2006-06-05 Thread John Menke
Is anyone experiencing any problems with "lost" session variables? We have an application that stores some state in the session and we are getting strange errors caused by objects that were previously being in the session being "lost". When our code tries to access these variables it gives nullp

TableView add remove column at runtime?

2006-05-09 Thread John Menke
How can you add or remove a column at runtime with the tableView component? -jm