Thanks Lee,

That worked great!
  ----- Original Message -----
  From: Lee Howard
  To: CF-Talk
  Sent: Monday, September 13, 2004 8:57 PM
  Subject: Re: HTTPS post

  How about using a com object.   Something like this in VB.   

  Dim objXMLHTTP, xml, response
    Set xml = CreateObject("MSXML2.XMLHTTP")

    ' Notice the two changes in the next two lines:
    xml.Open "POST", "http://www.webserver.com/Find", false
    xml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    xml.Send "action="">     response = xml.responseText
    Set xml = Nothing

  found something similar here:
  http://www.developerfusion.com/show/3272/2/

  On Mon, 13 Sep 2004 12:18:39 -0400, Mickael <[EMAIL PROTECTED]> wrote:
  > Hello All,
  >
  > This is a question for the gurus on the this list.  I have a request from a client to do an HTTPS post to their webpage, this is not that difficult if I use CF on a webserver no biggie.
  >
  > They client want this however to run off of a pc not runnng  a webserver or CF.  They have the ability to create HTML pages using VB6, would anyone on this list know how an html page could be formated and have the form submitted to a remote page via HTTPs?
  >
  > Does this make sense?
  >
  > Thanks
  >
  > Mike________________________________
  >
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to