Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CFHTTP / HTTPS

    Hi,

    I wanted to use CFHTTP to retrieve content from a page on another server. The
    only thing is, I should be calling the other page by https://

    If I use CFHTTP with port 443, is that the equivalent of calling the other
    page by [url]https://?[/url]

    If not, does anyone know if there another way to accomplish the same thing?

    Thanks.



    bubblocity Guest

  2. Similar Questions and Discussions

    1. CFHTTP
      Hello, I need to send data from a CF page to an asp.net page for processing via a URL string. The ASP page takes three parameters. Those being...
    2. #38631 [Bgs]: fopen('https://...') or curl with https gives Segmentation fault
      ID: 38631 Updated by: darkelder@php.net Reported By: roberto dot berto at gmail dot com Status: Bogus Bug...
    3. CFHTTP not working with HTTPS
      CFHTTP Tag is not working with HTTPS on our ColdFusion MX 6.1 hosted on Windows 2003 Server. It only works with HTTP. It gives connection...
    4. CFHTTP help
      We have an in-house built publication system that creates .htm files from database content. For a specific project, I need to modify the way that...
    5. PHP HTTPS POST Como hacer un POST https con PHP
      http://wedoit4you.com/forums4you/display_message.php?Msg_pk_id=628 /** Author: Ing. Angel Leon Function: postHttps($url,$params) Given the...
  3. #2

    Default Re: CFHTTP / HTTPS

    I had a heck of a time finding this out...but finally got it to work. To use
    HTTPS with the cfhttp tag, you might need to manually import the certificate
    for each web server into the keystore for the JRE that ColdFusion uses. This
    procedure should not be necessary if the certificate is signed (issued) by an
    authority that the JSSE (Java Secure Sockets Extension) recognizes (for
    example, Verisign); that is, if the signing authority is in the cacerts
    already. However, you might need to use the procedure if you are issuing SSL
    (secure sockets layer) certificates yourself. To manually import a
    certificate: Go to a page on the SSL server in question. Double-click the lock
    icon. Click the Details tab. Click Copy To File. Select the base64 option
    and save the file. Copy the CER file into
    C:\CFusionMX7\runtime\jre\lib\security (or whichever JRE ColdFusion is using).
    Run the following command in the same directory (keytool.exe is located in
    C:\CFusionMX7\runtime\jre\bin): keytool -import -keystore cacerts -alias
    giveUniqueName -file filename.cer I got this from this page....
    [url]http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/[/url]
    wwhelp.htm?context=ColdFusion_Documentation&fi le=00000272.htm

    Vbprog40 Guest

  4. #3

    Default Re: CFHTTP / HTTPS

    by the way... to really answer your question to call a ssl page... FIRST IMPORT THE Certificate then...

    <cfhttp URL='https://www.mysslsite.com'method='get'>

    So you dont need to give it a port=443

    Vbprog40 Guest

  5. #4

    Default Re: CFHTTP / HTTPS

    Hey, thanks, I'll give this a try.

    bubblocity Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139