Re: Forms require that the request method be POST and that the t:formdata query parameter have values.

2016-01-19 Thread Bob Harner
eption-td4942074.html > > > On Mon, Jan 18, 2016 at 9:46 AM, Robson Pires <orobsonpi...@gmail.com> > wrote: > >> Hi, >> >> In one of my environments I am facing this problem: Forms require that the >> request method be POST and that the t:formdata query parameter have >> values. >> >> Any idea about what causes of this problem? >> >> Thank you, >> >> Rob Pi >> > >

Forms require that the request method be POST and that the t:formdata query parameter have values.

2016-01-18 Thread Robson Pires
Hi, In one of my environments I am facing this problem: Forms require that the request method be POST and that the t:formdata query parameter have values. Any idea about what causes of this problem? Thank you, Rob Pi

Re: Forms require that the request method be POST and that the t:formdata query parameter have values.

2016-01-18 Thread Bob Harner
, Jan 18, 2016 at 9:46 AM, Robson Pires <orobsonpi...@gmail.com> wrote: > Hi, > > In one of my environments I am facing this problem: Forms require that the > request method be POST and that the t:formdata query parameter have values. > > Any idea about what causes of thi

[T5.4-beta-35] "Forms require that the request method be POST and that the t:formdata query parameter have values." problem + workaround

2015-09-29 Thread Cezary Biernacki
Hi, Some introduction: My users started complaining about error message "Forms require that the request method be POST and that the t:formdata query parameter have values.". I understand why it was raised: Tapestry 5's Form component always used to complain when submit was invo

Re: [T5.4-beta-35] "Forms require that the request method be POST and that the t:formdata query parameter have values." problem + workaround

2015-09-29 Thread Geoff Callender
> > wrote: > >> Hi, >> >> Some introduction: My users started complaining about error message "Forms >> require that the request method be POST and that the t:formdata query >> parameter have values.". I understand why it was raised: Tapestry 5's F

Re: [T5.4-beta-35] "Forms require that the request method be POST and that the t:formdata query parameter have values." problem + workaround

2015-09-29 Thread Thiago H de Paula Figueiredo
Hi! Very nice point. Could you please create a JIRA issue? On Tue, 29 Sep 2015 13:55:10 -0300, Cezary Biernacki <cezary...@gmail.com> wrote: Hi, Some introduction: My users started complaining about error message "Forms require that the request method be POST and that the

Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
I know this has been an on going topic, but I have yet to see a solid solution for this, so I'm re-posting the question with some additional information. Myself as well as many others have seen the following exception popup numerous times. Forms require that the request method be POST

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread Thiago H de Paula Figueiredo
On Fri, 20 Feb 2015 12:15:55 -0200, George Christman gchrist...@cardaddy.com wrote: So the question is how is the user able to force the browser to load that url in the address bar, I assuming its being loaded in the address bar? Is there a bug in the form component or could the user have

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
On Fri, Feb 20, 2015 at 9:31 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Fri, 20 Feb 2015 12:15:55 -0200, George Christman gchrist...@cardaddy.com wrote: So the question is how is the user able to force the browser to load that url in the address bar, I assuming its

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
Some further research has turned up this http://stackoverflow.com/questions/8187188/android-4-0-ics-turning-httpurlconnection-get-requests-into-post-requests I also posted the following question on SO

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
I also found this article related to android. Again I'm not very familiar with this stuff, so please forgive me if it's unrelated. http://stackoverflow.com/questions/8587913/what-exactly-does-urlconnection-setdooutput-affect On Fri, Feb 20, 2015 at 11:04 AM, George Christman

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
Digging deeper, looking at the form src. I'm seeing the following ex String[] values = request.getParameters(FORM_DATA); if (!request.getMethod().equals(POST) || values == null) throw new RuntimeException(messages.format(core-invalid-form-request, FORM_DATA)); Is there any way to know which one

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread Charles Karow
We got a lot of these a few months ago, and in every case they were from the then-current version of Chrome: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36 At the time I interviewed a few of the users, who were using the

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2015-02-20 Thread George Christman
On Fri, Feb 20, 2015 at 11:47 AM, Charles Karow char...@karow.com wrote: We got a lot of these a few months ago, and in every case they were from the then-current version of Chrome: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36

Forms require that the request method be POST and that the t:formdata query parameter have values

2014-09-08 Thread Marcel Huber
Hi, We use Tapestry 5.2.6 and we have this Exception quite often in our logs: [2014-09-07 21:18:27,951][ERROR] AppModuleBase.FFRequestExceptionHandler [qe-shop] Processing of request failed with uncaught exception: Forms require that the request method be POST and that the t:formdata query

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2014-09-08 Thread Dmitry Gusev
exception: Forms require that the request method be POST and that the t:formdata query parameter have values. org.apache.tapestry5.ioc.internal.OperationException: Forms require that the request method be POST and that the t:formdata query parameter have values. [at classpath:ch/fashionfriends

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2014-09-08 Thread Lance Java
Most likely a bot crawling your site. You may choose to suppress this logging for crawlers. This can be done by maintaining a list of crawler user agents and checking the user agent request header before logging.

Re: Forms require that the request method be POST

2014-06-25 Thread George Christman
So I finally figured out how to reproduce this exception. I'm using Tapestry-Security and if the session times out and the user submits the form, the page is redirected to the login page. When the user logs in, it attempts to resubmit the form and ends with this exception. Does anybody know how to

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
Hi George, See one possible solution here: https://github.com/tynamo/tapestry-security/issues/7#issuecomment-40301795 On Wed, Jun 25, 2014 at 7:36 PM, George Christman gchrist...@cardaddy.com wrote: So I finally figured out how to reproduce this exception. I'm using Tapestry-Security and if

Re: Forms require that the request method be POST

2014-06-25 Thread George Christman
Thanks Dmitry, I'm willing to give it a shot. What outcome should I expect to see from your code? Will it just bring the user back to a blank form, or will it continue with the form submission? On Wed, Jun 25, 2014 at 1:56 PM, Dmitry Gusev dmitry.gu...@gmail.com wrote: Hi George, See one

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
It won't continue form submission, user will be redirected to the page with empty form. On Wed, Jun 25, 2014 at 10:31 PM, George Christman gchrist...@cardaddy.com wrote: Thanks Dmitry, I'm willing to give it a shot. What outcome should I expect to see from your code? Will it just bring the

Re: Forms require that the request method be POST

2014-06-25 Thread George Christman
Okay cool, that works too. Now if I'm setting remember me to true, should I still be seeing this exception? On Wed, Jun 25, 2014 at 2:44 PM, Dmitry Gusev dmitry.gu...@gmail.com wrote: It won't continue form submission, user will be redirected to the page with empty form. On Wed, Jun 25,

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
That depends on if the page containing the form and/or form handlers @RequiresAuthentication or @RequiresUser. On Wed, Jun 25, 2014 at 10:49 PM, George Christman gchrist...@cardaddy.com wrote: Okay cool, that works too. Now if I'm setting remember me to true, should I still be seeing this

Forms require that the request method be POST

2014-05-19 Thread George Christman
Hi Everyone, I'm using 5.4 and I've continued to randomly see this exception popup in multiple applications. I'm wondering what it means and how to fix it. Thanks. Forms require that the request method be POST and that the t:formdata query parameter have values.org.apache.tapestry5

Re: Forms require that the request method be POST

2014-05-19 Thread Thiago H de Paula Figueiredo
On Mon, 19 May 2014 09:37:44 -0300, George Christman gchrist...@cardaddy.com wrote: Hi Everyone, I'm using 5.4 and I've continued to randomly see this exception popup in multiple applications. I'm wondering what it means and how to fix it. Thanks. Very probably bots crawling your site. --

Re: Forms require that the request method be POST

2014-05-19 Thread George Christman
In this particular case the application sits behind a firewall with no public access so I don't believe this is bot activity. Do you have any other thoughts? On May 19, 2014 10:00 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Mon, 19 May 2014 09:37:44 -0300, George Christman

Re: Forms require that the request method be POST

2014-05-19 Thread Thiago H de Paula Figueiredo
On Mon, 19 May 2014 11:44:06 -0300, George Christman gchrist...@cardaddy.com wrote: In this particular case the application sits behind a firewall with no public access so I don't believe this is bot activity. Do you have any other thoughts? Do you have any information on when this

Re: Forms require that the request method be POST

2014-05-19 Thread George Christman
Let me do some more homework now that I at least now how it's thrown. Thanks Thiago. On Mon, May 19, 2014 at 10:54 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Mon, 19 May 2014 11:44:06 -0300, George Christman gchrist...@cardaddy.com wrote: In this particular case the

Re: Forms require that the request method be POST

2014-05-19 Thread Kristian Marinkovic
Hi, check if it is the same client. i once had the same problem. After several hours of investigation it was a developer with a browser plugin (web developer) which enabled converting form post requests to get requests. hope this helps. g, Kris On Mon, May 19, 2014 at 5:55 PM, George

Re: Forms require that the request method be POST

2014-05-19 Thread Eugen
Hi, I have had this kind of exception then i tried to submit a form programmatically from an Applet (HttpClient) without sending the formData field. 2014-05-19 22:31 GMT+02:00 Kristian Marinkovic kristian.marinko...@gmail.com: Hi, check if it is the same client. i once had the same problem.

Re: Forms require that the request method be POST

2014-05-19 Thread George Christman
Thanks for the tips guys, I'll see if I can find the culprit now that I know why it's happening. On Mon, May 19, 2014 at 5:52 PM, Eugen eugens...@gmail.com wrote: Hi, I have had this kind of exception then i tried to submit a form programmatically from an Applet (HttpClient) without sending

Forms require that the request method be POST and that the t:formdata query parameter have values.

2013-12-02 Thread Ben Titmarsh
Hi Guys, I'm getting quite a lot of these exceptions in my logs. I've read all of the posts on the mailing list and it seems like the only accepted solution is to use request filtering to check for an exception with a message containing Forms require that the request method be POST and do

Re: Forms require that the request method be POST and that the t:formdata query parameter have values.

2013-12-02 Thread Michael Gagauz
. I've read all of the posts on the mailing list and it seems like the only accepted solution is to use request filtering to check for an exception with a message containing Forms require that the request method be POST and do a redirect. Is this still our best option? Secondly is this problem

odd exception on deployed app: Forms require that the request method be POST and that the t:formdata query parameter have values.

2013-11-14 Thread John
a.. Triggering event 'action' on vendor/Signup:form b.. org.apache.tapestry5.runtime.ComponentEventException Forms require that the request method be POST and that the t:formdata query parameter have values. context eventType action location classpath:com/quivinco/webapps/tbs/pages

IGNORE: odd exception on deployed app: Forms require that the request method be POST and that the t:formdata query parameter have values.

2013-11-14 Thread John
please ignore this subject

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2012-12-08 Thread Muhammad Gelbana
. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Forms-require-that-the-request-method-be-POST-and-that-the-t-formdata-query-parameter-have-values-tp5718554.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Forms require that the request method be POST and that the t:formdata query parameter have values

2012-12-08 Thread Geoff Callender
, TG tapestry...@hotmail.com wrote: In 5.3.6, I got this error if I use a form based submission. How do I avoid this? There was no such error prior to 5.3.6. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Forms-require-that-the-request-method-be-POST

Forms require that the request method be POST and that the t:formdata query parameter have values

2012-12-07 Thread TG
In 5.3.6, I got this error if I use a form based submission. How do I avoid this? There was no such error prior to 5.3.6. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Forms-require-that-the-request-method-be-POST-and-that-the-t-formdata-query-parameter-have

Re: Forms require that the request method be POST....

2012-03-21 Thread David Canteros
that the request method be POST and that the t:formdata query parameter have values. [at context:courses/ManageCoursesPage.tml, line 8]* The .tml form t:type=form t:id=filterCoursesForm t:zone=coursesGridZone ... /form This happens often, but not all the time... I didn't found

Re: Forms require that the request method be POST....

2012-03-20 Thread David Canteros
detected a lot of this exception in the logs of my tap applications... It said: *org.apache.tapestry5.ioc.internal.OperationException: Forms require that the request method be POST and that the t:formdata query parameter have values. [at context:courses/ManageCoursesPage.tml, line 8]* The .tml

Re: Forms require that the request method be POST....

2012-03-20 Thread Lenny Primak
tap applications... It said: *org.apache.tapestry5.ioc.internal.OperationException: Forms require that the request method be POST and that the t:formdata query parameter have values. [at context:courses/ManageCoursesPage.tml, line 8]* The .tml form t:type=form t:id=filterCoursesForm