Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
bubblocity #1
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
-
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... -
#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... -
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... -
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... -
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... -
Vbprog40 #2
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
-
Vbprog40 #3
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
-



Reply With Quote

