If I understand you correctly, you will get returned exactly hat you want,

   Go to the site where you want to post, with your browser.

   Manually post the form

The page that gets returned is what you would get when doing the 
equivalent with cfhttp.

The exception to this is when the page served, as a result, of the 
post does a client-side redirect with a metatag refresh, JavaScript 
onLoad, etc.

In this case you will need to handle this by:

   receiving the page with the client-side redirect in CFHTTP.FileContent
   (the result of the post)

   Parsing the page (CFHTTP.FileContent) to determine the URL that is the
   target pf the client-side redirect

   Issuing a second cfhttp request for the target URL

   Processing the page (CFHTTP.FileContent) returned from this, second,
   cfhttp request as desired.


HTH

Dick


At 10:46 AM -0500 9/5/01, ChristianWatt wrote:
>I am trying to make an internal page that will send an alphanumeric page
>through our providers website.  The problem is that the info is posted to a
>CGI script that processes the request then redirects to another page that
>gives the confirmation num of the page sent and that it was successful.  Is
>there any way that I can post to the CGI script, but return the info off the
>second page?
>
>Christian
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to