Post isn't the default url variable is it? Would it be possible that the
default 'post' is being displayed and that 'get' is coming from someone
writing their own form and submitting to your action template?

Just a thought

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-----Original Message-----
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 26, 2007 10:30 AM
To: CF-Talk
Subject: GET instead of POST error again

Hi,

For those who are also getting this error, here are some results of what
I've been doing in an effort to isolate the exact circumstances of the
problem.

Every time a form is submitted in my application, the following JS code is
executed:
  if (form.action.indexOf("method") == -1)
    form.action += (form.action.indexOf("?") > 0 ? "&" : "?") + "method=" +
form.method; This code is executed in an onclick event on the submit button.
It will add the value of the form method attribute in the action url, so
that when the problem of missing form scope happens, I can see it in the
dump.

And here is what I get:
in the url scope: METHOD = post
in the CGI scope: REQUEST_METHOD = GET 

Then at the time the user clicked on the submit button, the method of the
form was definitely POST.
So the error happens most likely somewhere on the server, between the HTTP
server and CF.

My server is running IIS 5.0 under Windows 2000 5.00 and ColdFusion 5.0

--
_______________________________________
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED]) Thanks.




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282221
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to