Re: SSL and https in ColdFusion

2009-09-08 Thread Tom Chiverton
On Tuesday 08 Sep 2009, Scott Stroz wrote: The bindings will call the onRequest in App.cfc as that is juts a regular ole HTTP request. Are you saying even on HTTPS pages, CFAJAX calls go over HTTP, not HTTPS ? -- Helping to preemptively generate synergistic infrastructures as part of the IT

Re: SSL and https in ColdFusion

2009-09-08 Thread Scott Brady
On Mon, Sep 7, 2009 at 4:52 PM, Richard McKennarichardofmcke...@googlemail.com wrote: Also I take it any cfincludes will automatically be called over https as these are done before the file is sent to the browser? You've gotten replies for the other issues, so Ill just handle the cfinclude

Re: SSL and https in ColdFusion

2009-09-08 Thread Scott Stroz
Sorry for the confusion...what I meant was that since AJAX requests are just HTTP requests, they too should follow the same guidelines. I believe if you are using SSL on the page, any AJAX calls form the CF stuff should also use SSL. On Tue, Sep 8, 2009 at 9:29 AM, Tom

SSL and https in ColdFusion

2009-09-07 Thread Richard McKenna
Hi all, I'm using SSL in a site for the first time and wasn't sure how to reference external files within my pages (images, css, javascript etc.) I'm forcing the pages to use SSL with the following code, which will be placed in my Application.cfc in the onRequest method. cfif CGI.HTTPS EQ

Re: SSL and https in ColdFusion

2009-09-07 Thread Scott Stroz
For images/css/js files, if you use a relative path, the browser will automatically use the protocol for the current page, so if your page is HTTPS and you use a relative path for an image, the image will be loaded using HTTPS. The bindings will call the onRequest in App.cfc as that is juts a