Results 1 to 2 of 2

Thread: Inet Control and https

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2000
    Posts
    1
    I am trying to use the Inet control to access a secured site. I am pretty sure that the problem is my headers. Could someone put some sample code for POSTing a form through an Inet control and retrieving the resulting URL text? How do I determine the correct header information to send?

    Thanks!

  2. #2
    Hyperactive Member compuGEEK's Avatar
    Join Date
    May 1999
    Location
    Mpls,MN,USA
    Posts
    281

    From MSDN

    GET Retrieves the file named in url.
    Example:
    Execute "http://www.microsoft.com" & _
    "/default.htm", "GET"

    HEAD Retrieves only the headers of the file named in the URL property.
    Example:
    Execute , "HEAD"

    POST Provides additional data to support a request to the remote host.
    Example:
    Execute , "POST", strFormData

    PUT Replaces data at the specified URL.
    Example:
    Execute , "PUT", "replace.htm


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width