Re: PGP...

2010-01-30 Thread Bilal Soylu
Jake, I know this is a little late, but there is an aopen source implementation for Adobe CF. It works for 8 and 9. You can download and see whether this will work for you. http://pgp.riaforge.com ~| Want to reach the

Re: problem with .net integration

2008-07-08 Thread Bilal Soylu
Could it be that you have uninstalled the java to .net bridge class files? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Killing registry keys

2008-07-01 Thread Bilal Soylu
If you can you temporarily switch storage back to registry and select the Purge Registry option to a shorter time. Once cold fusion purged the registry entries you will have to compact registry with a tool: http://technet.microsoft.com/en-us/sysinternals/bb897426.aspx

Re: Odd results with error - ideas?

2008-06-23 Thread Bilal Soylu
Les, the datatyping may occur in your first query, especially if you are building on to a query that initially retrieves records from the database. If you are specifically creating a query and have a combination of numeric/alpha being returned, you should attempt to type the query columns

Re: In theory - an alternative way to sort results

2008-06-20 Thread Bilal Soylu
Les, unfortunately when it comes to Egos the order that you determine is normally only roughly related to the order desired. Thus, though I like the idea of looking into a bio and determine ranking by wording, it may be more advisable to let the Attorneys (or whomever) determine their own

Re: Testing for existence of cfthread

2008-06-11 Thread Bilal Soylu
I think the only way to manage threads outside code is to use CF Admin pages. You can built simple admin tag for your own purposes that helps you manage your threads though. You could have the threads register themselves upon start using a shared key space that you can than poll and manage from.

Re: [CF-Dev] WDDX-JSON plugin for jQuery ?

2008-06-11 Thread Bilal Soylu
There is a wddx.js and wddxDes.js library through openwddx.org. These will help you serialize/deserialize wddx to Javascript objects. You can try to then make follow on calls to turn these to JSON notation. ~| Adobe®

Re: CFHTTP - HTTPS invalid certificate hostname

2008-06-06 Thread Bilal Soylu
You would have to write your own HTTPS class in Java and handle the SSLException that is thrown that leads to the connection failure that you are experiencing. (realy old article hear: http://www.javaworld.com/javaworld/javatips/jw-javatip96.html) you need to look for something more up to date

Re: Selecting text between text

2008-05-28 Thread Bilal Soylu
When you strip via Regex you will either restrict your input to the start of the anchor tag or deal with the end result one more time. I normally prefer to get the content of the href attribute. You can get the href content using this type of construct: sURL = ListGetAt(FullUrl,2,); where

Re: CFPOP Inquiry

2008-05-28 Thread Bilal Soylu
Graham, we had occasional trouble with cfpop, especially connecting to Lotus Notes. In those circumstances we have used an alternate plug in (CFX_POP3), cost about $50 successfully. Cheers, Bilal ~| Adobe® ColdFusion® 8

Re: Web Service Request using CFHTTP

2008-05-28 Thread Bilal Soylu
Dom, a while back when using CF5 we also used a framework for soap that had all the parts build in UDFs. (http://www.fusionauthority.com/tech-and-tags/3058-whats-new-in-the-tag-gallery.htm) This may be helpful for you to review. Cheers, Bilal