ColdFusion Developer Opportunity - Raleigh/Durham, NC

2014-08-27 Thread chloe smith
Piper Enterprise Solutions is seeking a ColdFusion Developer for a contract opportunity in Chapel Hill, North Carolina (NC). The ColdFusion developer responsibilities will include developing and supporting applications to improve the Office of Research. Using different applications, the

AJAX request returning 304

2014-08-27 Thread Donnie Carvajal
I have an ajax request calling a ColdFusion template. Each time the ajax function is called, the ColdFusion template should return the next 20 rows of a query. I am running into an issue where the browser thinks the ColdFusion template hasn't changed since a 304 http status code is returned.

Re: Querying a comma separated list

2014-08-27 Thread Maureen
Your query should be: select * from pgallery where gtype = 1 if you only want items with a gtype of 1 or select * from pgallery where gtype IN (1,2,3,4) if you want multiple types. You can also set a variable of such as gtypelist =1,2,3,4) then do select * from pgallery where gtype IN

RE: Querying a comma separated list

2014-08-27 Thread UXB
I assume from the example you are storing the a comma delimited list in the Field gtype and need to query all records that match one or more items from the stored list. Here are some ways to accomplish what you want to do plus some other tricks. http://www.sommarskog.se/arrays-in-sql-2005.html

RE: AJAX request returning 304

2014-08-27 Thread David Phelan
Donnie, I don't see a reason why a cfheader tag wouldn't work, and if it fails it's easy enough to add in the missing tags. Personally, I would convert it to a function in a cfc. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3

RE: Querying a comma separated list

2014-08-27 Thread David Phelan
What I have seen done in these situations is to search where = the value or one of several like statements. where field = 'value' or field like 'value,%' or field like '%,value,%' or field like '%,value' David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore

isvalid(url) issue

2014-08-27 Thread John M Bliss
ACF 10's isvalid(url) says that this is not a valid URL. What's your favorite alternative to isvalid(url)? http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value -- John Bliss - http://www.linkedin.com/in/jbliss

Re: isvalid(url) issue

2014-08-27 Thread Russ Michaels
you are better off using your own regex to define what you consider to be valid. you may find something specific on cflib.org or riaforge.org or there is always http://www.validatethis.org/ On Wed, Aug 27, 2014 at 7:02 PM, John M Bliss bliss.j...@gmail.com wrote: ACF 10's isvalid(url) says

Re: isvalid(url) issue

2014-08-27 Thread John M Bliss
This seems better: http://cflib.org/udf/isURL On Wed, Aug 27, 2014 at 2:19 PM, Russ Michaels r...@michaels.me.uk wrote: you are better off using your own regex to define what you consider to be valid. you may find something specific on cflib.org or riaforge.org or there is always

Re: isvalid(url) issue

2014-08-27 Thread Byron Mann
Wonder if encoding your query string values would result in a positive response. Byron Mann Lead Engineer Architect HostMySite.com On Aug 27, 2014 2:03 PM, John M Bliss bliss.j...@gmail.com wrote: ACF 10's isvalid(url) says that this is not a valid URL. What's your favorite alternative to

Re: isvalid(url) issue

2014-08-27 Thread Russ Michaels
anyhting is probably better, isValid() seems to be quite unreliable judging by the number of posts I have seen saying it doesn't work. it would be interesting to see what it thinks about itself :-) IsValid( IsValid() ) On Wed, Aug 27, 2014 at 7:21 PM, John M Bliss bliss.j...@gmail.com wrote:

Re: isvalid(url) issue

2014-08-27 Thread Adam Cameron
ACF 10's isvalid(url) says that this is not a valid URL. What's your favorite alternative to isvalid(url)? http://www.domain.com/page.php?var=valuevar=valuevar=http://www.domain.com/path/page.htmvar=value Just to be clear... it's saying it's not a valid URL because it's *not* a valid

Re: Excel Problem...

2014-08-27 Thread Larry Lyons
You might also try saving the output as CSV and opening it in excel that way. Its an annoying workaround but may work. AS for CF8, ask about Railo then - its FOSS, and is faster than ACF. So what is the specific error? Is it in CF or Excel. If Excel are you getting this message? Excel

SECS/GEM and ColdFusion

2014-08-27 Thread Gonzo Rock
Hi guys, Hello to all. I am looking for help getting SECS/GEM capability to work with a ColdFusion application. Wondering if anyone on this forum has any experience doing this or knows of someone who has. Want to integrate the capability with my manufacturing application. SECS/GEM is a

RE: Could not initialize class coldfusion.security.ESAPIUtils

2014-08-27 Thread Russ Michaels
I have had this a few times and it seems to have been caused by making sandbox changes, specifically when adding createobject(java) to a sandbox. The only solution was to rollback changes. The last occurrence I had was luckily resolved by restarting cf. -Original Message- From: Adam