Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 128651 - 128680 of 154467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
128651
... I typically start with the following template: <cfoutput> <html><head> <title>#createObject("java", "jrunx.kernel.JRun").getServerName()#</title> <meta...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
8:03 am
128652
... Considering every operating system has a decent firewall build in I find that hard to believe. Jochem ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
8:13 am
128653
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 ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
8:28 am
128654
Just so everybody knows, I'll do the changing of wallpaper for half the quoted price of CT! ... Adrian ... From: Jim Davis [mailto:HOFLists@...]...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
8:31 am
128655
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
9:18 am
128656
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
10:55 am
128657
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
11:18 am
128658
Yeah that just seemed like the logical thing to do.. Have a good one! ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe®...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:15 pm
128659
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:15 pm
128660
I cant find a way to make application variables available to my CF 404 file. Is this normal or am I missing some thing? -- Phil ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:22 pm
128661
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:...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:32 pm
128662
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:34 pm
128663
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:38 pm
128664
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 ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
1:51 pm
128665
... 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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:06 pm
128666
... What is the relationship of your missingTemplate handler and the <cfapplication name...> OR Application.cfc this.name. In order for a template to have...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:13 pm
128667
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:15 pm
128668
... 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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:31 pm
128669
Steve, I can offer an example of one issue you mention: defining destinations via Flex. Here's a snippet... private var sourceServer:String = "localhost"; ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:32 pm
128670
how would i trim the results below i only want the numbers after the zeros. 000000000009970656 000000000000056901 9970656 56901 thanks -paul ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:46 pm
128671
numberFormat(yourNumber,0) or if you want to be silly... rereplace(yourNumber,'^0+','','ALL') ... ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:51 pm
128672
CFLib.org has a UDF that does this: http://cflib.org/udf.cfm?ID=239 ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe®...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:53 pm
128673
I'll second the numberformat().. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:57 pm
128674
... That wouldn't work, looking at the code for that UDF it would only strip the first zero... -- Jay ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:58 pm
128675
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
2:59 pm
128676
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,...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
3:08 pm
128677
Actually doing anything mathematical to it will work too so you could also do... #yourNumber*1# #yourNumber+1-1# #ceiling(yourNumber)# etc... -- Jay ...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
3:09 pm
128678
I just ran... <cfset myVal = '000000000009970656'> <cfoutput> <p>#reReplace(myVal,'^0','','ALL')#</p> </cfoutput> and it does indeed replace only the first 0,...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
3:15 pm
128679
I've just tested this and it works: <cfset myVal = '000000000009970656'> <cfoutput> <p>#Val((myVal * Pi()) / Pi()) * 1^(64-Tan(12))# </p> </cfoutput> But...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
3:28 pm
128680
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...
archive@...
mdinowit
Offline Send Email
Apr 1, 2008
3:31 pm
Messages 128651 - 128680 of 154467   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help