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.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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

Reply via email to