... I typically start with the following template: <cfoutput> <html><head> <title>#createObject("java", "jrunx.kernel.JRun").getServerName()#</title> <meta...
Hey Dave, I have the entry level VPS at HMS and it seems a little unstable too. Did you ever find out what was causing it or did you just move server? Adrian ...
Using the following URL: http://www.domain.com/properties/to-let/greenwich/se10/1-bedroom-flat-in-se1 0-to-let/13/ I have the following rule in my .htaccess...
If I go through and set up a list of servers, then someone else goes to the same multi-server monitor URL, they seem to have to set them all up again. Is it...
Andy, try to set up as Remoting project. Messaging packages are bundle with the Flex 3 SDK, you should be able to set up the project as Remoting only and still...
Yeah that just seemed like the logical thing to do.. Have a good one! ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe®...
Try the function that Ben Nadel wrote: http://www.bennadel.com/blog/483-Parsing-CSV-Data-Using-ColdFusion.htm We've been using it with great success. Thanks...
Finally got it working. I thought I needed to use the CFML gateway type, but it used the DataServicesMessaging type and it's working great now. ... From:...
I have a web service that I built for a client about a year ago. It has been running fine and they have a number of their customers utilizing the service. They...
I believe that you need to explictly pass them in via your onMissingTemplate method (I assume that's what you're using). Here's a read through of App.cfc on...
I got it to work with the onMissingTemplate method for missing CF pages. It still doesn't want to work for the missing directories. The only CF variable ...
... I would replace the internal methods of the 'v1' function, with a call to the 'v2' function, giving some sort of sensible default to the new value, if you...
... What is the relationship of your missingTemplate handler and the <cfapplication name...> OR Application.cfc this.name. In order for a template to have...
Ok, Andy has this working, which is great, and works for what we need on this implementation. I guess the big question now is whether it's using BlazeDS, or if...
... Tom, That is a great idea! I didn't even think about that. So if someone makes a call to the to the existing v1 method and doesn't include the new...
Steve, I can offer an example of one issue you mention: defining destinations via Flex. Here's a snippet... private var sourceServer:String = "localhost"; ...
CFLib.org has a UDF that does this: http://cflib.org/udf.cfm?ID=239 ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe®...
I'll second the numberformat().. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most...
Add Val(0000000123) to that list too. Adrian ... From: James Smith [mailto:james@...] Sent: 01 April 2008 15:47 To: CF-Talk Subject: Re: Trim leading...
Interesting. Have you actually confirmed that it won't work? The regex should only strip a single zero character from the beginning of the string. However,...
Actually doing anything mathematical to it will work too so you could also do... #yourNumber*1# #yourNumber+1-1# #ceiling(yourNumber)# etc... -- Jay ...
I just ran... <cfset myVal = '000000000009970656'> <cfoutput> <p>#reReplace(myVal,'^0','','ALL')#</p> </cfoutput> and it does indeed replace only the first 0,...
If you add an * after the zero works (return REReplace(s,"^0*","","ALL");). This is the greedy way to do it though. I am sure there is a more elegant way. I...