[cfaussie] Re: I/O Exception: peer not authenticated

2011-07-14 Thread Carl
On Jul 14, 4:08 pm, Steve Onnis st...@cfcentral.com.au wrote: For anyone who is interested, yes you have to install the certificate into ColdFusion but if you do upgrade the JVM and change the path in the CFAdmin, make sure you install the certificate again into the new JVM location as each

RE: [cfaussie] Re: I/O Exception: peer not authenticated

2011-07-14 Thread Steve Onnis
That instruction is noted in all of the other posts online. This is just something else i came across :) -Original Message- From: Carl [mailto:ca...@tassweb.com.au] Sent: Thursday, 14 July 2011 4:34 PM To: cfaussie Subject: [cfaussie] Re: I/O Exception: peer not authenticated On Jul

Re: [cfaussie] Re: CreateObject of itself

2011-07-14 Thread Andrew Scott
That is correct, and in response to your other question regrading import. This works in the same way as Java, in other words that means that you can import a folder and reference the cfc via just the name as Paul has done. On a side note I would question which method is actually faster, the

Re: [cfaussie] Re: CreateObject of itself

2011-07-14 Thread Paul Kukiel
The docs seam to indicate that using new when you import rather then new com.blah is faster as the path is cached how ever I have never tried I can just take there word. I'd also assume, like Andrew that this is faster then the getMetaData() as you also have 1 extra function call. This is where

[cfaussie] Melbourne Adobe Developers next meeting, 21st July 2011

2011-07-14 Thread Peter Robertson
Be sure to set aside next Thursday, 21st July 2011 for two exciting presentations: Ayudh Nagara from Xilo is going to present on 'Web Widgets' with reference to the business of online transactions, focusing on javascript/Ajax. Phil Haeusler is presenting on cross platform mobile development with

Re: [cfaussie] Re: CreateObject of itself

2011-07-14 Thread Paul Kukiel
Hi Steve, That's correct the cfc was called steve. I didn't need to import anythign as I just dropped the cfc in the same folder. If the cfc was in a folder say com.cfaussie or there was a com mapping the import would be: cfscript import com.cfaussie.steven; temp = new steven(zigZag2);