cfselect bind from/to problem

2009-04-28 Thread morchella
Hey Guys! http://63.144.103.199/FORMS/temp/2select.cfm?xp1DayId=10006 i am trying to bind the 2nd selecty max value to the selcted value of the first select so say first select is 1 to 5 and user selects 3, then the 2nd select would be a loop from 1 to 3 the value of the text field is the max

Re: find if any one of one list of numbers is in another

2009-04-28 Thread John M Bliss
You could also not reinvent the wheel: http://cflib.org/udf/ListInCommon http://cflib.org/udf/listVenn On Mon, Apr 27, 2009 at 9:25 PM, Seamus Campbell coldfus...@boldacious.comwrote: Hi I have 2 lists of numbers eg 16,20 16,23,78 And I need a way to see if any one of the first list is

HostNexus

2009-04-28 Thread Rob Barthle
I am looking at jumping from CrystalTech for a variety of reasons. HostNexus is one that has caught my eye early on, especially their ability to have multiple separate domains tied to one account that doesn't have to use coding hacks to accomplish like CT forces me to do. I did a search on

Re: cfselect bind from/to problem

2009-04-28 Thread Dr. Who
any body? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Unable to dump checkbox Values

2009-04-28 Thread Priya Koya
Hi All, I have a checkbox in the cfoutput query and wanna record the values of the checkbox and perform of delete using function. I am unable to dump the checkbox values in it.I believe I am doing someting wrong in the loop..Can anyone help me out with it. cfset count=1 cfoutput

Re: Unable to dump checkbox Values

2009-04-28 Thread Priya Koya
Please correct this... not 'count' but 'i' cfif chk_deletePage#i# neq '' Hi All, I have a checkbox in the cfoutput query and wanna record the values of the checkbox and perform of delete using function. I am unable to dump the checkbox values in it.I believe I am doing someting

RE: Unable to dump checkbox Values

2009-04-28 Thread Adrian Lynch
You don't say what's wrong, but from these lines: cfif chk_deletePage#count# neq '' cfdump var='#form.chk_deletePage#i##' /cfif I'm guessing it's throwing an error? cfif FORM[chk_deletePage#count#] neq '' cfdump var=#FORM['chk_deletePage' count']# /cfif Adrian

Need some WSDL Help

2009-04-28 Thread Rick Shapley
We are trying to connect some Cold Fusion Generated Data to a WSDL file. Can anyone help? Please e-mail me at rs...@cade1.com Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Set column value to NULL

2009-04-28 Thread Pranathi Reddy
My image datatype is varbinary(max) and I am storing binary image data in database. This query works fine in sql Server 2005 to set the attribute to 'Null'(delete binary data) but wat if I wanna use in coldfusion8 cfquery update table1 set image = null where empid ='@id' I tried using

Set column value to NULL

2009-04-28 Thread Pranathi Reddy
My image datatype is varbinary(max) and I am storing binary image data in database. This query works fine in sql Server 2005 to set the attribute to 'Null'(delete binary data) but wat if I wanna use in coldfusion8 cfquery update table1 set image = null where empid ='@id' I tried using

RE: Need some WSDL Help

2009-04-28 Thread Adrian Lynch
Why don't you post the problem here? -Original Message- From: Rick Shapley [mailto:rs...@cade1.com] Sent: 28 April 2009 18:03 To: cf-talk Subject: Need some WSDL Help We are trying to connect some Cold Fusion Generated Data to a WSDL file. Can anyone help? Please e-mail me at

RE: Set column value to NULL

2009-04-28 Thread Robert Harrison
Value= Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be . Plug in to our blog: AW Unplugged

Re: Set column value to NULL

2009-04-28 Thread Mike Chabot
Replace the cfqueryparam tag with the word NULL without quotes. -Mike Chabot On Tue, Apr 28, 2009 at 12:15 PM, Robert Harrison rob...@austin-williams.com wrote: Value= Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788

RE: Set column value to NULL

2009-04-28 Thread Adrian Lynch
cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#session.ID# null=true Adrian -Original Message- From: Pranathi Reddy [mailto:rk.prana...@gmail.com] Sent: 28 April 2009 18:06 To: cf-talk Subject: Set column value to NULL My image datatype is varbinary(max) and I am storing binary

Re: Unable to dump checkbox Values

2009-04-28 Thread Priya Koya
Yes..it throghing an error at cfdump.. and its still throught an error right there..at cfdump var=#FORM['chk_deletePage' count']# at form You don't say what's wrong, but from these lines: cfif chk_deletePage#count# neq '' cfdump var='#form.chk_deletePage#i##' /cfif I'm

Shared Hosting Lockdown - Q1

2009-04-28 Thread Martin Thomas
Hi there, Does anyone know how to prevent a CF user deploying the admin application as part of an EAR or WAR to your server, and what the implications are if they do this (presuming they then run a brute force attack to get past the form based authentication screen).

Shared Hosting Lockdown - Q2

2009-04-28 Thread Martin Thomas
Has anyone got a recommended java security policy for JRun that can prevent CF applications from nasties like exitVM? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Unable to dump checkbox Values

2009-04-28 Thread Yuliang Ruan
when a checkbox is not checked, it doesn't pass anything at all. do this: cfif isdefined(chk_deletePage#count#) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Unable to dump checkbox Values

2009-04-28 Thread Priya Koya
sorry Adrian.. I got it now... Really thanx for your quick response... Priya. You don't say what's wrong, but from these lines: cfif chk_deletePage#count# neq '' cfdump var='#form.chk_deletePage#i##' /cfif I'm guessing it's throwing an error? cfif FORM[chk_deletePage#count#] neq ''

Re: Set column value to NULL

2009-04-28 Thread Pranathi Reddy
Thanks All for help, setting Image=NULL worked for me... Replace the cfqueryparam tag with the word NULL without quotes. -Mike Chabot ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

RE: Need some WSDL Help

2009-04-28 Thread Mark Kruger
Give me the details and if I can help I will do so. If it turns out to be something that is time consuming we can talk about a maintenance contract. 1) What are the 2 end points (.NET and CF or CF and PHP etc...) 2) What is the object you are passing - an array, structure etc. Is the WSD and

auto-suggest feature

2009-04-28 Thread Perez, Percy
Hi, I have a question about implementing an auto-suggest feature on a form. I did a quick search and found that Spry could be used to accomplish the effect. I continued to search for tutorials on auto-suggest examples, but most of the ones I found referred for CF 8. I am currently running CF

Re: auto-suggest feature

2009-04-28 Thread Barney Boisvert
jQueryUI is probably the way to go. I've used both it and Scriptaculous, and jQueryUI would be my recommendation if you're not already using Prototype/Scriptaculous. I still mostly use my own implementation (demo at http://www.barneyb.com/web/widgets/) that predates both frameworks by a year or

Re: auto-suggest feature

2009-04-28 Thread Web Specialist
I'll recommend jQuery. Powerful and clean library, very easy to learn. Below a jquery plugins list for auto suggest functionality: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ - very nice http://blog.pengoworks.com/index.cfm/2007/1/12/My-jQuery-Autocomplete-Mod - my favorite

Re: cfselect bind from/to problem

2009-04-28 Thread Paul Ihrig
http://63.144.103.199//FORMS/temp/2select2.cfm?xp1DayId=10006 ok this is closer to what i want. but it is way clunky code: http://63.144.103.199//FORMS/temp/2select2.txt not sure how to get it to loop right and not hard code array. var SideWallNumber#rsEnc.specs_partnum#=new Array()

scheduler problem

2009-04-28 Thread Richard White
hi i have a piece of code that runs fine if i navigate direct to the page when i set it up as a scheduled task it doesnt run even though the scheduler.log is telling me that it executed i have checked that it is pointing to the correct file but cannot seem to work out why the code isn't

Re: scheduler problem

2009-04-28 Thread Richard White
Does your page require any sort of login? thanks ben but no, no login required its just a piece of code that is running. i have also checked the exception logs and no errors are being generated. i even try to save a string to a text file on the very first line just to see if it is firing

Re: scheduler problem

2009-04-28 Thread Ben Nadel
I would recommend hitting the page via CFHTTP and see what's in the response. I believe that CFHTTP is the same mechanism through which the ColdFusion Admin actually runs scheduled tasks. -- Ben Nadel Adobe Community Expert Adobe Certified Advanced ColdFusion Developer Manager New York

Re: scheduler problem

2009-04-28 Thread Ian Skinner
Ben Nadel wrote: I would recommend hitting the page via CFHTTP and see what's in the response. I believe that CFHTTP is the same mechanism through which the ColdFusion Admin actually runs scheduled tasks. Well they both use the same internal 'browser' to access HTTP resources anyway. You

Re: scheduler problem

2009-04-28 Thread Ben Nadel
Does your page require any sort of login? The schedule does not send any cookies AND it sends ColdFusion as the user agent. If you do any sort of checking on that sort of thing, the script wont execute properly. -- Ben Nadel Adobe Community Expert Adobe Certified Advanced ColdFusion Developer

Re: scheduler problem

2009-04-28 Thread Ian Skinner
Richard White wrote: is there anywhere else i could look to see why it is not running Set a file to record the response from the schedule task. Any response including HTTP status OR CF errors are a successful run according to CF. 97.894% of the time, the problem as described is a URL that is

Re: scheduler problem

2009-04-28 Thread Ben Nadel
Ian, I've never used that feature. It sounds really useful! I will have to look into it. -- Ben Nadel Adobe Community Expert Adobe Certified Advanced ColdFusion Developer Manager New York ColdFusion User Group http://www.bennadel.com Need ColdFusion Help? http://www.bennadel.com/Ask-Ben

Re: CFIDE/componentutils Not Found?

2009-04-28 Thread ColdFusion Developer
Yes. it points to: C:\inetpub\wwwroot\cfide Has to be some permissions issue some where On Mon, Apr 27, 2009 at 1:24 PM, Dave Watts dwa...@figleaf.com wrote: IIS Setup for CFAdmin: Directory: d:\web\ IP: 127.0.0.1 Permissions: Intergrated Windows Authentication (anonymous access

Re: scheduler problem

2009-04-28 Thread Richard White
Does your page require any sort of login? thanks for your replies, you was right in the first place ben! although the page didnt need a login, there is code in the application.cfc onRequestStart that routes any request back to the login page if the user is currently not logged in. hence it

converting scientific notation into decimal notation?

2009-04-28 Thread Gonzo Rock
Having trouble converting numbers like 4.7e-013 and 1.234e+012 into decimal notation 0.47 and 12340.0 scoured this list for scientific notation and found some discussion but ... alas no cigar, as they say. any help would be appreciated ;-) thanks, Gonzo

eGate and coldfusion

2009-04-28 Thread fun and learning
Hello everyone, Can anyone explain me what is egate and what are sub and pub in an egate? Has anyone used this one with Coldfusion? I know my question is very vague, but I do not find any precise information about egate. It would be great if any one can explain me this. Thanks.

Re: HostNexus

2009-04-28 Thread Azadi Saryev
i had a CF-Pro (renamed to fusionSilver now) reseller account with HostNexus since 2003, and can say only good things about them! they offer a great product and excellent support - once they event went as far as installing a different MySQL version from the one available in their packages just

Re: HostNexus

2009-04-28 Thread Matthew Williams
The only pain with I've had with dealing with them is no control panel support for basic ColdFusion functions. I cannot add my own datasource, or mappings without first submitting a trouble ticket with them. However, they WILL create mappings for you, and even go so far as to edit your

Re: CFIDE/componentutils Not Found?

2009-04-28 Thread Dave Watts
Yes. it points to:  C:\inetpub\wwwroot\cfide So, to clarify, you have at least two virtual servers, and each maps to that directory? Has to be some permissions issue some where Well, no, it doesn't. Generally, if there were a permissions issue with IIS, the user would get a password prompt