I have two websites running identical code.
        One is a standalone.
        The other is a cluster. (Not Cluster Cats)

I have a form that submits a page.
  <form name="formname" action="http://www.verifyx.com/safe.cfm";
method="post">...
  <input name="fieldname1" type="hidden">...

I set the hidden form fields using JavaScript like so:
  document.formname.fieldname1.value = "x";
  document.formname.fieldname2.value = "y";
  document.formname.submit();

I cfdump the variables and cfabort at the top of the page before the
action page is fully processed.

On the Standalone version I see that cgi.request_method is set as "POST"
On the Cluster the cgi.request_method variable is set to "GET"

I am not programmatically changing the method on the form submission.

1st Question: Has anyone ever seen this kind of behavior?
2nd Question: I lose my Form variables on the Cluster because of the GET,
right?
3rd Question: What can cause my form submission to change to a GET?


Greg M

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to