Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jackmason

    HTTPS Post

    Thanks, roo0047. Don't mind you butting in at all. Tried the full build as you suggested, but no improvement. I have D2006 which has a later version (maybe 10) of Indy. I intend to try that tonight after I reinstall D2006. I just got D2010, but haven't gotten it to install correctly yet (it...
  2. jackmason

    HTTPS Post

    Okay, thanks...
  3. jackmason

    HTTPS Post

    Did I need to complete the installation of the download from Shining Light? Do I need to have OpenSSL installed on my system? All I did was pull the two DLLs from the download.
  4. jackmason

    HTTPS Post

    Thanks, I tried the ones you linked to. Got the same error as last time.
  5. jackmason

    HTTPS Post

    Great call! That got past the error and on to the next one, EldOSSLCouldNotLoadSSLLibrary with message 'Could not load SSL Library'. Any ideas there?
  6. jackmason

    HTTPS Post

    Here is the latest: procedure THTTPSForm.SendBtnClick(Sender: TObject); var Headers: TStrings; begin Headers := TStringList.Create; Headers.Add(Cookie.Text); IdSSLIOHandlerSocket1.SSLOptions.Method := TIdSSLVersion(sslvSSLv23); IdSSLIOHandlerSocket1.SSLOptions.RootCertFile :=...
  7. jackmason

    HTTPS Post

    I'll go ahead and try that. Nothing to lose... I just have had other fires to put out for the last 24 hours.
  8. jackmason

    HTTPS Post

    It is for Amazon, and they specify you must do an HTTPS Post with three "Headers". One of the "headers" is an HTTP parameter: Content-Type. Another "header" is a cookie that they specify and the third one is another HTTP parameter: Authorization. However, rather than just let you put in your...
  9. jackmason

    HTTPS Post

    I can upgrade to Indy10, but that still doesn't give me an HTTPS component so I need to turn an HTTP component into an HTTPS one. I believe I am almost there by adding the code: HTTPS.IOHandler := IdSSLIOHandlerSocket1; IdSSLIOHandlerSocket1(HTTPS.IOHandler).SSLOptions.Method := sslvSSLv3...
  10. jackmason

    HTTPS Post

    I am trying to turn an HTTP component into an HTTPS component to connect to Amazon. I am using D7. Here is what I have so far with an Indy 9 HTTP client component named HTTPS: var Authorization, Response, Headers: string; begin Authorization := MimeEncodeString('myusername:mypassword')...
  11. jackmason

    HTTPS

    Thank you VERY much!!!! You definitely made my day!!
  12. jackmason

    array (tiny problem)

    If you want to refer to the entire array, would you not just use: SomeComponent.EatFruit(Pack); SomeComponent.EatFruit(BOX); If you use: SomeComponent.EatFruit(Pack[i]); SomeComponent.EatFruit(BOX[i]); you are just referencing the i element of Pack and BOX.
  13. jackmason

    HTTPS

    We have to have an HTTPS connection to one our vendors sites by October. Can the Indy 9 or 10 library be used to piece together an HTTPS connection? We can use D7 or D2006. Help?

Part and Inventory Search

Back
Top