Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me

Hi,
my website and shared ssl use different servers (my site is hosted). Can 
someone tell me for sure if ajax can work with shared ssl. When I try to use 
ajax with shared ssl I get a security type error. I could have sworn that this 
had been working fine, but now I get an error. I am wondering if this is a 
mapping problem of some kind.



thanks,
Kevin 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Does AJAX work with Shared SSL

2013-03-22 Thread Raymond Camden

Are you saying your HTML is NOT on the Shared SSL and your Ajax resource
is? If so, you're going to run into the cross domain security issue. You
can use JSON/P or CORS to get around it.


On Fri, Mar 22, 2013 at 8:30 AM, Byte Me byteme...@verizon.net wrote:


 Hi,
 my website and shared ssl use different servers (my site is hosted). Can
 someone tell me for sure if ajax can work with shared ssl. When I try to
 use ajax with shared ssl I get a security type error. I could have sworn
 that this had been working fine, but now I get an error. I am wondering if
 this is a mapping problem of some kind.



 thanks,
 Kevin

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me

Are you saying your HTML is NOT on the Shared SSL and your Ajax resource
is? If so, you're going to run into the cross domain security issue. You
can use JSON/P or CORS to get around it.





Hi,
my html  Ajax resource is not on the same server as the shared ssl server.

This is what I got back when I submitted my trouble ticket: 

The issue is, that the shared ssl has a different 'home path' in IIS than your 
site has, so your current code is looking for the cfc in:

D:\home\securec4.hostek.net\wwwroot\xx.cfc

Instead of looking for it in:

D:\home\yoursite.com\wwwroot\xx.cfc 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Does AJAX work with Shared SSL

2013-03-22 Thread Russ Michaels

the way shared SSL works is that your host provide a generic
acme.comdomain for SSL purposes, and gives you a folder on that domain
to store
your secure pages  so that you do not have to buy your own SSL certificate.
so if your domain is yoursite.com, your SSL pages would be redirected to
www.acme.com/yoursite.com

So you are using 2 different domains.
Browsers will not allow you to send data between 2 different domains for
security reasons, otherwise this would allow malware scripts to grab
your account details from site1 and send them to site2.
Therefore any Javascript/Ajax code you use must reside within one domain or
the other.

This is one reason why shared ssl is bad, the other is because savvy
customers will notice they are being redirected to a different domain and
if it is an eCommerce site may decide it is dodgy and not go ahead with
purchase.




On Fri, Mar 22, 2013 at 1:52 PM, Raymond Camden raymondcam...@gmail.comwrote:


 Are you saying your HTML is NOT on the Shared SSL and your Ajax resource
 is? If so, you're going to run into the cross domain security issue. You
 can use JSON/P or CORS to get around it.


 On Fri, Mar 22, 2013 at 8:30 AM, Byte Me byteme...@verizon.net wrote:

 
  Hi,
  my website and shared ssl use different servers (my site is hosted). Can
  someone tell me for sure if ajax can work with shared ssl. When I try to
  use ajax with shared ssl I get a security type error. I could have sworn
  that this had been working fine, but now I get an error. I am wondering
 if
  this is a mapping problem of some kind.
 
 
 
  thanks,
  Kevin
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355131
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Does AJAX work with Shared SSL

2013-03-22 Thread Raymond Camden

So use JSON/P or CORS. :) If you Google, you can find multiple blog
posts (by myself, and Nadel) on both of these topics. Both are easy to do
with ColdFusion.


On Fri, Mar 22, 2013 at 9:03 AM, Byte Me byteme...@verizon.net wrote:


 Are you saying your HTML is NOT on the Shared SSL and your Ajax resource
 is? If so, you're going to run into the cross domain security issue. You
 can use JSON/P or CORS to get around it.
 
 
 
 
 
 Hi,
 my html  Ajax resource is not on the same server as the shared ssl server.

 This is what I got back when I submitted my trouble ticket:

 The issue is, that the shared ssl has a different 'home path' in IIS than
 your site has, so your current code is looking for the cfc in:

 D:\home\securec4.hostek.net\wwwroot\xx.cfc

 Instead of looking for it in:

 D:\home\yoursite.com\wwwroot\xx.cfc

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355132
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me

OK,
I got it to work using a widget called AjaxRequest that I read about in the 
book Ajax Design Patterns. Thanks for the assistance. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF10 - editing jvm.config

2013-03-22 Thread george.e...@ssa.gov george.e...@ssa.gov

  Our server admin says he routinely manually modifies the jvm.config 
 file but he doesn't see where in this file to change the Java
  File Encoding setting. Does anyone know where to do that?
 
 You add it to java.args:
 
 -Dfile.encoding=UTF8
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/
 
 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF10 - editing jvm.config

2013-03-22 Thread george.e...@ssa.gov george.e...@ssa.gov

 You add it to java.args:
 
 -Dfile.encoding=UTF8
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

Thanks, Dave.

We figured it out about 10 minutes before you posted your message. The really 
good news is that it appears to have fixed the majority of the problems we were 
having.  :)

George 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


dragon dictation and CF

2013-03-22 Thread Chad Gray

Has anyone tried to use Dragon dictation software to write CF code?

 

I saw this video and it got my brain going.

https://www.youtube.com/watch?feature=player_embeddedv=8SkdfdXWYaI

 

My fingers are developing some numbness and I need to be pro-active.

 

Chad



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: dragon dictation and CF

2013-03-22 Thread Mike Chabot

That program takes a lot of training to be able to recognize your voice and
is frustrating to use during the learning period. Trying to program with
dictation software would result in a huge decrease in productivity compared
to a good keyboard with macro keys for all the common code, the benefit of
code-completion features within the IDE, and the use to two fully
functional hands. I think the technology is only suitable for programmers
who cannot use their hands and work at home or in an quiet office with a
door that can be closed. I didn't watch the video since it is 30min long. I
assume the presenter has a higher opinion of voice recognition software
than I do. I only spent a day using Dragon before giving up on it.

-Mike Chabot


On Fri, Mar 22, 2013 at 3:01 PM, Chad Gray cg...@careyweb.com wrote:


 Has anyone tried to use Dragon dictation software to write CF code?



 I saw this video and it got my brain going.

 https://www.youtube.com/watch?feature=player_embeddedv=8SkdfdXWYaI



 My fingers are developing some numbness and I need to be pro-active.



 Chad



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355137
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: dragon dictation and CF

2013-03-22 Thread Brook Davies

Yeah, I ditched dragon too, what a waste of time. And their sales people
can't keep calling me every since...

-Original Message-
From: Mike Chabot [mailto:mcha...@gmail.com] 
Sent: March-22-13 2:44 PM
To: cf-talk
Subject: Re: dragon dictation and CF


That program takes a lot of training to be able to recognize your voice and
is frustrating to use during the learning period. Trying to program with
dictation software would result in a huge decrease in productivity compared
to a good keyboard with macro keys for all the common code, the benefit of
code-completion features within the IDE, and the use to two fully functional
hands. I think the technology is only suitable for programmers who cannot
use their hands and work at home or in an quiet office with a door that can
be closed. I didn't watch the video since it is 30min long. I assume the
presenter has a higher opinion of voice recognition software than I do. I
only spent a day using Dragon before giving up on it.

-Mike Chabot


On Fri, Mar 22, 2013 at 3:01 PM, Chad Gray cg...@careyweb.com wrote:


 Has anyone tried to use Dragon dictation software to write CF code?



 I saw this video and it got my brain going.

 https://www.youtube.com/watch?feature=player_embeddedv=8SkdfdXWYaI



 My fingers are developing some numbness and I need to be pro-active.



 Chad



 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: dragon dictation and CF

2013-03-22 Thread .jonah

What you need is an Amanuensis[1]. I have a friend who's used one for 
many years. It's actually an awesome opportunity for someone to learn 
from the guru.

[1] http://en.wikipedia.org/wiki/Amanuensis



On 3/22/13 12:01 PM, Chad Gray wrote:
 Has anyone tried to use Dragon dictation software to write CF code?

   

 I saw this video and it got my brain going.

 https://www.youtube.com/watch?feature=player_embeddedv=8SkdfdXWYaI

   

 My fingers are developing some numbness and I need to be pro-active.

   

 Chad



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm