Re: Podcasting - what's involved?

2008-03-28 Thread Tom Chiverton
On Thursday 27 Mar 2008, Mike Kear wrote: I've been asked by a client to set up so he can do a podcast every week or so. I'm a bit worried about this because he's not too computer literate,, so i need to take away all the technical stuff for him and make it as idiot-proof as possible. Have

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Tom Chiverton
On Friday 28 Mar 2008, Nate Willard wrote: cfset newUrl = reReplaceNoCase(arguments.theString, \W, -, ALL) But that results in Who-watched-Jay-Leno-s-Show--Last-Night-- cfset newUrl = reReplaceNoCase(arguments.theString, [^a-zA-Z0-9], -, ALL) i.e. turn everything that isn't letter or number

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread exH
With a plus on the end [^a-zA-Z0-9]+ so that this is some (, .]]text = this-is-some-text other wise you'll get this-is-some---text - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, March 28, 2008 9:34 AM

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Tom Chiverton
On Friday 28 Mar 2008, exH wrote: With a plus on the end [^a-zA-Z0-9]+ Ahh, yes. May or may not be what the OP wants, but I think your's works better. -- Tom Chiverton Helping to quickly generate visionary designs on: http://thefalken.livejournal.com

Transfer on Railo

2008-03-28 Thread Tom Chiverton
Does this work yet ? What about Transfer on BlueDragon ? -- Tom Chiverton Helping to autoschediastically bully low-risk meta-services on: http://thefalken.livejournal.com This email is sent for and on behalf of Halliwells LLP. Halliwells LLP

Re: Transfer on Railo

2008-03-28 Thread Gert Franz
Hi Tom, at the moment no, still some issues with Transfer using some core Java Objects of CFMX. But we're working on it. Reactor works though. I'll blogpost about it soon. http://www.railo.ch/blog Greetings from Switzerland Gert Franz Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch

Re: Transfer on Railo

2008-03-28 Thread Vince Bonfanti
Yes, Transfer works on BlueDragon 7.0.1. Vince Bonfanti New Atlanta Commmunications, LLC Does this work yet ? What about Transfer on BlueDragon ? -- Tom Chiverton Helping to autoschediastically bully low-risk meta-services on: http://thefalken.livejournal.com

Re: Transfer on Railo

2008-03-28 Thread Tom Chiverton
On Friday 28 Mar 2008, Vince Bonfanti wrote: Yes, Transfer works on BlueDragon 7.0.1. Cool. But BlueDragon doesn't have support for Flex Remoting to a CFC using RemoteObject from Flex, right ? -- Tom Chiverton Helping to centrally reintermediate open-source infomediaries on:

Verity question

2008-03-28 Thread Stone, Lori
We have an app that is using verity to search docs and db. What is the best process for speed when thinking about updating the index and doing the cfsearch. There are thousands of records and will be a pretty substantial amount of traffic. So far what I have read is the do a cflock around all

Re: Transfer on Railo

2008-03-28 Thread Vince Bonfanti
That's correct. BlueDragon currently only supports Flex remoting via web services. Vince Bonfanti New Atlanta Communications, LLC On Friday 28 Mar 2008, Vince Bonfanti wrote: Yes, Transfer works on BlueDragon 7.0.1. Cool. But BlueDragon doesn't have support for Flex Remoting to a CFC

Need CF developer in Omaha

2008-03-28 Thread Ross C
I'm looking for a CF developer in or near Omaha, NE could help us figure out a glitch in one of our apps (for pay of course). We have a bunch of in-house CF MX apps, but we no longer have any CF developers. I was going to post the problem to the list, but I'm thinking having someone actually

Examples of BlazeDS with ColdFusion CFCs?

2008-03-28 Thread Andy Matthews
Does anyone have examples of BlazeDS working with a CFC? I'm trying to get Blaze setup locally for an app I'm building. It appears to be running, but I don't know Java so I'm not sure how the samples would work with a CFC rather than a Java class.

Re: Verity question

2008-03-28 Thread Paul Stewart
you could schedule just the one index every 24 hrs in the quite hours instead of after each new record addition Stone, Lori wrote: We have an app that is using verity to search docs and db. What is the best process for speed when thinking about updating the index and doing the cfsearch.

RE: Verity question

2008-03-28 Thread Stone, Lori
Yes, I planned on doing that also. Unfortunately, the issue will still be the same as there are a number of users that will be using the system at all times of the day. -Lori -Original Message- From: Paul Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 11:53 AM To:

Re: Examples of BlazeDS with ColdFusion CFCs?

2008-03-28 Thread Jo�o_Fernandes
Andy, all examples that work with LCDS messaging do work with BlazeDS in the same way. Create a gateway and point to your cfc then you just need to use sendgatewaymessage() to produce a message from CF or mx:Producer from a Flex application. http://www.onflexwithcf.org/index.cfm/Messaging --

Re: Verity question

2008-03-28 Thread Raymond Camden
On Fri, Mar 28, 2008 at 8:44 AM, Stone, Lori [EMAIL PROTECTED] wrote: We have an app that is using verity to search docs and db. What is the best process for speed when thinking about updating the index and doing the cfsearch. There are thousands of records and will be a pretty

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Nate Willard
But that would turn Blah is the movie's ending's into : blah-is-the-movie-s-ending-s right? It doesn't handle punctuation? Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 28 Mar 2008, exH wrote: With a plus on the end [^a-zA-Z0-9]+ Ahh, yes. May or may not be what the OP wants, but I think

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Tom Chiverton
On Friday 28 Mar 2008, Nate Willard wrote: But that would turn Blah is the movie's ending's into : blah-is-the-movie-s-ending-s right? It doesn't handle punctuation? It does what it says on the tin :-) If you want to remove all the ' first, just replace() them into nothing then do the reg.

javascript and cfinput manipulation

2008-03-28 Thread Uwe Degenhardt
Hi list, I cant get to a solution of the following problem. I have a cfinput-field like: a) cfinput type=text name=billing_contact required=no or b) cfinput type=text name=billing_contact required=yes A javascript should manipulate the cfinput either like: required=yes or required=no How can I

RE: Verity question

2008-03-28 Thread Stone, Lori
Yes, I know you do not have to do the entire thing. I was going to update individually as needed and do a full index once a day. I am not sure what cfdocs you are referring to. I just want to know the best way to update the verity collections without having other users hitting it at the same

Tough nuts! (setCallbackHandler)

2008-03-28 Thread Don L
goal: pass cfc's simple result value back to caller page and set the page's hidden field of 'uid' with this value. method: cfajaxproxy, cfc and js class library js code snip: function Save(frm){ var d = new doSave(); d.setForm(frm); d.setHTTPMethod('POST')

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Cutter (CFRelated)
Have you looked in Firebug? Have you checked the Firebug console, to watch the call being made, and the result being returned? In FF, did you place a console.log(id) as the first line of your passIdOn() method, to see if it was being called and what it was being passed? Steve Cutter Blades

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Phillip Ciske
function passIdOn(id) { document.getElementById('uid').innertHTML = id; } A typo? Should be innerHTML instead of innertHTML? Phillip ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Don L
Have you looked in Firebug? Have you checked the Firebug console, to watch the call being made, and the result being returned? In FF, did you place a console.log(id) as the first line of your passIdOn() method, to see if it was being called and what it was being passed? Steve Cutter Blades

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Don L
function passIdOn(id) { document.getElementById('uid').innertHTML = id; } A typo? Should be innerHTML instead of innertHTML? Phillip oh, my lord! thanks, Phillip, for your sharp eyes, and yet still to no avail... ~|

Re: Verity question

2008-03-28 Thread Raymond Camden
Sorry, I meant get rid of the cflocks. You should not need them CF7 and higher. I'd get rid of the big update and just do individual, atomic updates. On Fri, Mar 28, 2008 at 12:11 PM, Stone, Lori [EMAIL PROTECTED] wrote: Yes, I know you do not have to do the entire thing. I was going to

Re: Question about cfeed

2008-03-28 Thread Raymond Camden
Eh? When I viewed http://feeds.feedburner.com/Techcrunch directly, I saw this for the first entry: Update: More details of the scheme are here. Musicians themselves may just be crazy, but the music labels are dangerously stupid, and need to be stopped before they can do any further damage to the

RE: Search Engine Safe/Friendly URLS

2008-03-28 Thread Bobby Hartsfield
Id just do it with 2 [^a-z0-9] with nothing Then spaces with _ -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 12:54 PM To: CF-Talk Subject: Re: Search Engine Safe/Friendly URLS On Friday 28 Mar 2008, Nate Willard wrote: But that would

Re: Search Engine Safe/Friendly URLS

2008-03-28 Thread Nate Willard
I'm trying to use the following: cfset newtitle = reReplaceNoCase(newtitle, \W, -, ALL) The problem with the above is the following string microsoft-yahoo is turned into microsoft--yahoo adding another dash... Is there a way to add a negative or escape to the code above so dashes aren't

Is it possible to use Word-Wrap in CFGRIDCOLUMN?

2008-03-28 Thread Ali
Hi: Do you know a way that I can word-wrap the content of a cell in CFGRIDCOLUMN. I use Applet format for my grid. Please help me. Thanks Ali ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Cutter (CFRelated)
OK, you have part of the battle. That tells you what the cfc is doing, what the server is returning. The callback wouldn't be a part of this information. Setting the callback function registers it within your browser client, as a listener action to take when a return value is received. In

CF 4.5 Custom Tag directory on Solaris.

2008-03-28 Thread Ian Skinner
Anybody care to recall where the custom tag directory might reside on a Solaris installation of ColdFusion 4.5? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Don L
OK, you have part of the battle. That tells you what the cfc is doing, what the server is returning. The callback wouldn't be a part of this information. Setting the callback function registers it within your browser client, as a listener action to take when a return value is received. In

CF8: Class not found: coldfusion.sql.QueryTable

2008-03-28 Thread Gaulin, Mark
Hi I use java code to create a Query to be returned to a CF page, but with CF8 my java code throws this error: java.lang.NoClassDefFoundError: coldfusion/sql/QueryTable I can create this class with CreateObject(Java, coldfusion.sql.QueryTable) from a CF page, but my java code (running in

Displaying POI output in a browser on CFMX 6

2008-03-28 Thread Eric Roberts
I have used the following code to display my spreadsheet (generated with POI) (or at least open it up in excel...if there is a better way so that that it just opens in a browser...that would b awesome): cfheader name=content-length value=#ArrayLen(ExcelByteData)#/ cfheader

CF8 CFgrid

2008-03-28 Thread Chad Gray
Is there a way to have the text in a cell word wrap instead of being cut off? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: CF8: Class not found: coldfusion.sql.QueryTable

2008-03-28 Thread C S
I can create this class with CreateObject(Java, coldfusion.sql.QueryTable) from a CF page, but my java code (running in the same JVM, configured as a servlet) apparently cannot. BTW, I compile the java code using a reference to the cfusion.jar file on my local machine; the code only runs inside a

500 The ClientScope service is not available.

2008-03-28 Thread Rob O'Brien
Fellow CF Junkies: A client has just reported an error he received while running a monthly task, using a CF script I wrote over 6 months ago and has never produced any trouble. 500 The ClientScope service is not available. It's not something I've ever seen before, have not been able to

Re: Tough nuts! (setCallbackHandler)

2008-03-28 Thread Don L
OK, you have part of the battle. That tells you what the cfc is doing, Yes, now the js code looks like this: function passIdOn(id) { // if (id) { console.log(id); document.getElementById('testId').innerHTML = id; // testId is not a hidden field document.getElementById('userId').innerHTML

CF RDS Capability question

2008-03-28 Thread C. Hatton Humphrey
Been pondering a very odd thing and wondered, I know that CF can FTP to another server, but can one CF instance connect to another via RDS? Hatton ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Question about cfeed

2008-03-28 Thread Steve Sequenzia
Hey Ray, Thanks for the response. Yeah it is strange if you look at the feed directly in FF it shows it truncated but in IE it shows all the full articles. Also, other readers like Goolge Reader show the full article not the truncated version. Any ideas why this would be different? I will