RE: CFHTTP wierdness

2010-01-08 Thread Asha K S
Hi Jeff, You might want to look to http://www.coldfusionmuse.com/index.cfm/2008/10/9/cfhttp-troubleshooting Thanks, Asha. -Original Message- From: Jeff Langevin [mailto:jlange...@outdoors.org] Sent: Friday, January 08, 2010 2:22 AM To: cf-talk Subject: CFHTTP wierdness So I've got

RE: CF Error after new install

2009-12-21 Thread Asha K S
HI Jason, Can you manually create a file jrunserver.store under /opt/coldfusion8/runtime/lib/wsconfig/1/ and try and see if it works. Thanks, Asha. -Original Message- From: Jason Slack [mailto:applesl...@gmail.com] Sent: Tuesday, December 22, 2009 4:34 AM To: cf-talk Subject: CF Error

RE: please help with CF8 install

2007-10-10 Thread Asha K S
Hi, Can you check the following 1) Is the ColdFusion server running? 2) netstat -a can be used to confirm the port is actively being listened to on 4) If not, is a firewall blocking the port? Does wsconfig still fail when the firewall is off? 5)Is there any other program that might have been

RE: Next lowest number from array (or list).

2007-10-04 Thread Asha K S
Hey thanks a lot for correcting I have just started learning. And one more thing in the code I posted was we need to break once the res has been set in order to avoid looping through the whole list. Thanks, Asha. -Original Message- From: Patti Lee [mailto:[EMAIL PROTECTED] Sent:

RE: Decimalformat() to round

2007-10-04 Thread Asha K S
Hi, Why don't you try #round(test)#. Thanks, Asha. -Original Message- From: ismail cassiem [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 9:17 PM To: CF-Talk Subject: Decimalformat() to round Hi, Need help. #Decimalformat(test)# Result = 87.666 I want a result of 88.

RE: Next lowest number from array (or list).

2007-10-03 Thread Asha K S
Another solution could be Here value would be input from the user. cfset l=32,48,64,72,144,160,200,288,320,400,512,576,640,720,800 cfset len=#ListLen(l)# cfif #value# LT 32 cfset res=32 cfelseif #value# GT 800 cfset res=800 cfelse cfloop index=i from=1 to=#len-1# cfset k=ListGetAt(l,i)