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 ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330283
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308750
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308416
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 
yourself when declaring the Query via a QueryNew().

To check how CF interprets the datatypes do this:




I am not sure why you would put both an integer and UUID in the same column 
especially since you are attempting to perform a sort later on the same colums. 
This would throw off the sort wouldn't it. 
Maybe you might want to determine a constant integer value for any UUID so that 
you can consistently sort by the secondary sort option (name). You could check 
input for correct type with something like IsNumeric(), then insert a constant 
for UUID and the returned number otherwise.

Cheers,
-Bilal
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307981
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 rankings by practice area and keywords among themselves and you 
staying safely out of the fight.
Then you can establish a ranking by subject (keywords) table:
Attorney
Subject
Ranking 

You should be able to easily join and display the list by Ranking (high to low) 
and last name.

Cheers,
Bilal 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307298
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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.
For example, if you used an application level array. Each thread will append 
its name to this array when started.
To check whether a thread exists you check the length of array.
You can then write a little code that can get information about thread status  
using associative array notation -- myThread=cfthread["#myThreadName#"]. 
This should also give you insight whether thread failed or myThread.Error 
variable also status info myThread.Status is available etc.


Hope this helps,
Bilal




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307297
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 on how to do that.

Have you tried to access the site the certificate was issued for to see whether 
that one is still valid and does the same thing?
Normally, the supplier should consider changing their URL to match  the 
certificate (Best Practice) as they would have this problem with everyone 
attempting to connect.

Cheers,
-Bilal




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306997
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306187
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306186
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 FullURL is your http://www.foobar.com";>Link


Cheers,
Bilal



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306185
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4