Re: Loosing Application scope value over time

2008-05-08 Thread James Holmes
Why on earth would you do this: cfset APPLICATION = StructNew() / ??? On Thu, May 8, 2008 at 9:50 AM, Axel Schultze [EMAIL PROTECTED] wrote: Running CF 8.01 on Win2003 Server My directory structure: wwwroot/main/application.cfc cfcomponent output=false !--- Name the

Re: create variables from a string

2008-05-05 Thread James Holmes
If you genuinely don't know the column names to start with, you may as well just SELECT * from the table and use thequery.columnlist as the list of column names. It will at least speed things up my eliminating one query from the code. As for using the column names in the CSV, use the full query

Re: create variables from a string

2008-05-05 Thread James Holmes
Damn, missed a closing bracket: ListAppend(myOutput,pull_data[currentColumn][pull_data.currentRow]) On Tue, May 6, 2008 at 11:43 AM, James Holmes [EMAIL PROTECTED] wrote: If you genuinely don't know the column names to start with, you may as well just SELECT * from the table and use

Re: CFHTTP resolving URLS?

2008-05-04 Thread James Holmes
What code did you use? I've done this in the past with no problems. On Mon, May 5, 2008 at 6:08 AM, Nate Willard [EMAIL PROTECTED] wrote: I haven't been able to get it to work. Any other ideas? Thxs - Original Message From: Mike Chabot [EMAIL PROTECTED] To: CF-Talk

Re: Flex3 and CF 8 connection problem

2008-05-03 Thread James Holmes
Can you post the Flex code you're using to connect? On Sat, May 3, 2008 at 4:14 PM, [EMAIL PROTECTED] wrote: Hi Mike, thanks for your questions. I put the answers down below. Uwe Quick questions. 1. Are you running CF 8.0.0 or 8.0.1 CF 8.0.0 Do you think I should install the

Re: Available for some part-time work (focusing on UI and/or DB)

2008-05-01 Thread James Holmes
Hi Phillip, I didn't send you an email. Hey, this is fun! On Fri, May 2, 2008 at 5:15 AM, Phillip Vector [EMAIL PROTECTED] wrote: Hey Phillip... I sent you an email. :) Okokok.. I'll stop now. :) -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/

Re: entering a decimal number

2008-04-30 Thread James Holmes
You need to use the scale attribute of cfqueryparam: http://www.cfquickdocs.com/?getDoc=cfqueryparam Attribute, Req/Opt, Default, Description scale, Optional, 0, Number of decimal places in parameter. Applies to CF_SQL_NUMERIC and CF_SQL_DECIMAL. On Wed, Apr 30, 2008 at 8:59 PM, daniel

Re: Application variable undefined in CFC

2008-04-29 Thread James Holmes
And it still breaks encapsulation. I facade my remote calls so that the core object can work like it should, with the remote CFC passing in at instantiation the relevant things like datasource etc. The CFC containing the query shouldn't be using the Application scope directly. On Tue, Apr 29,

Re: APPLICATION scope unknown in Application.cfc

2008-04-29 Thread James Holmes
No, he means the pseudo constructor, before and outside of any of the methods within Application.cfc. On Tue, Apr 29, 2008 at 1:56 PM, Andrew Scott [EMAIL PROTECTED] wrote: pseudo constructor? I think, you mean defined as local variables to that component. -- mxAjax / CFAjax docs and other

Re: Application variable undefined in CFC

2008-04-29 Thread James Holmes
Since when did the Police raid your house for poor programming? On Wed, Apr 30, 2008 at 10:45 AM, Andrew Scott [EMAIL PROTECTED] wrote: Brian, Yes I would recommend to find a better way if you can, but that doesn't make it illegal. -- mxAjax / CFAjax docs and other useful articles:

Re: cfmail won't send

2008-04-27 Thread James Holmes
Have you checked your junk mail folder? On Sat, Apr 26, 2008 at 5:45 AM, daniel kessler [EMAIL PROTECTED] wrote: 1. No, I sent mail from another application 2. No. 3. okay, will give it a shot. I don't have access to the cfserver. It's shared hosting at the U. Since the other

Re: 8.0.1 FCKEditor file upload issue

2008-04-24 Thread James Holmes
Did you check to see if there's an equivalent servlet mapping in default-web.xml? I'm too lazy to check myself right now. On Thu, Apr 24, 2008 at 4:18 PM, Kay Smoljak [EMAIL PROTECTED] wrote: I was surprised and happy to discover in the CF 8.0.1 release notes that the file upload ability in

Re: db connection pooling and performance

2008-04-22 Thread James Holmes
On Tue, Apr 22, 2008 at 11:37 PM, Brian Dumbledore [EMAIL PROTECTED] wrote: If all queries were on the same page, would coldfusion somehow optimize new db connections? It will get one connection from the pool and reuse it for all queries in that request. And when they are all in different

Re: OT - what is this? st1:City

2008-04-22 Thread James Holmes
These are actually Microsoft Smart Tags for use in Sharepoint Web Parts: http://msdn2.microsoft.com/en-us/library/aa188446(office.10).aspx On Wed, Apr 23, 2008 at 7:04 AM, Les Mizzell [EMAIL PROTECTED] wrote: Didn't know where else to ask - and I'll probably get blasted for not knowing

Re: Need some advice on speeding up query...

2008-04-22 Thread James Holmes
Well, apart from a DB redesign so that you can do 1 query instead of a union of 5, lets look at the first query as an example: select sa.street_number as prop_street_number, sa.street_name as prop_street_name, sa.city as prop_city, sa.public_remarks_01 as prop_public_remarks_01,

Re: Need some advice on speeding up query...

2008-04-22 Thread James Holmes
Did you try the UNION ALL as suggested by Rizal? This might make it a little quicker as the DB won't have to scan for duplicates. On Wed, Apr 23, 2008 at 11:03 AM, Rick Faircloth [EMAIL PROTECTED] wrote: If I had set up the original db that's providing the data, it would have definitely been

Re: CF8.0.1 - GC overhead limit exceeded?

2008-04-21 Thread James Holmes
This is definitely worth a try, as there are other good reasons to move back to 1.5. For example, the JRun web server can't serve pages via SSL on Java 6 but it works fine on Java 1.5. On Mon, Apr 21, 2008 at 9:08 PM, Cutter (CFRelated) [EMAIL PROTECTED] wrote: Jim, Have you tried to move

Re: Element DSN.USERS is undefined in THIS

2008-04-20 Thread James Holmes
Try putting cfset THIS.DSN = StructNew() before the other variable assignments. On Sun, Apr 20, 2008 at 5:14 PM, marc -- [EMAIL PROTECTED] wrote: Hello, I have this call: cfset APPLICATION.objects.db =

Re: Element DSN.USERS is undefined in THIS

2008-04-20 Thread James Holmes
Did you reset the Application scope afterwards? On Sun, Apr 20, 2008 at 7:23 PM, marc -- [EMAIL PROTECTED] wrote: If that was the problem an error would be thrown at the line where THIS.DSN.USERS is set... Anyway, I tried it and it's not making a difference.

Re: CF and SQL Server temporary tables

2008-04-18 Thread James Holmes
That's my understanding too - CF gets a connection from the pool on the first query in a request and keeps that connection for the duration of the request, using it for all subsequent queries. On Fri, Apr 18, 2008 at 1:09 PM, Dave Watts [EMAIL PROTECTED] wrote: It's entirely possible for a CF

Re: Ajax: Who's into Ajax and Business Cases

2008-04-18 Thread James Holmes
It would also be nice if people posted ajax topics in the ajax list and OT threads in CF-OT but history shows that's not likely either. On Sat, Apr 19, 2008 at 6:34 AM, Don L [EMAIL PROTECTED] wrote: P.S. 1) It would be nice if people post Ajax related topic with prefix of Ajax: for future

Re: Need built-in JWS SSL help

2008-04-17 Thread James Holmes
It's a JVM issue - I installed JDK 1.5_13 and it works fine. This isn't so bad right now, since the classloader bugs in Java 6 mean I'm not keen to use it with CF8 anyways, but when that's finally fixed and we want to go up to 6 again, this will be a real pain. On Fri, Apr 18, 2008 at 10:05 AM,

Re: Coldfusion Array help

2008-04-17 Thread James Holmes
At that point you could loop through the URL structure in a collection loop, which is even nicer. On Fri, Apr 18, 2008 at 12:46 PM, AJ Mercer [EMAIL PROTECTED] wrote: That is a horrible URL to work with Do you have any control over that? If so, try something like

Re: Need built-in JWS SSL help

2008-04-16 Thread James Holmes
Did you ever get anywhere with this? I've just hit exactly the same problem. On Thu, Mar 6, 2008 at 11:43 PM, Matthew Williams [EMAIL PROTECTED] wrote: So, it has come to my attention that I need to start encrypting the traffic that I send to the CFadmin (and I must use the JRun admin for my

Re: Forcing a CFC to refresh...

2008-04-15 Thread James Holmes
You need to refresh the webservice stubs, not the CFC. As people have said before, this is nothing to do with the CFC - it's actually the client end of the webservice transaction that's doing the caching. cfobject type=JAVA action=Create name=factory

Re: IO error on server communication

2008-04-15 Thread James Holmes
Yes, RDS is not enabled on the server. You can enable it by editing the appropriate file - I can't recall which but a search should turn it up. On Wed, Apr 16, 2008 at 10:34 AM, [EMAIL PROTECTED] wrote: I am getting this IO error on server communication when I try to browser for a file in the

Re: problem with listgetat

2008-04-14 Thread James Holmes
getemail.email isn't automatically converted to a list - it will refer to only the first record in the query. You're better off just referring to the query value directly and doing it all in a loop so it can deal with any number of email addresses (it's certainly less code): cfloop

Re: problem with listgetat

2008-04-14 Thread James Holmes
Did you copy and paste my code exactly or try another version? On Mon, Apr 14, 2008 at 6:10 PM, alex poyaoan [EMAIL PROTECTED] wrote: getemail.email isn't automatically converted to a list - it will refer to only the first record in the query. You're better off just referring to the query

Re: cf8 System Probe, where did restart server go?

2008-04-14 Thread James Holmes
Is this what you mean? http://livedocs.adobe.com/coldfusion/8/htmldocs/basiconfig_23.html On Tue, Apr 15, 2008 at 8:04 AM, Paul Ihrig [EMAIL PROTECTED] wrote: no thing? no one? only got 2 pages from cfwack8 book3 On Mon, Apr 14, 2008 at 9:28 AM, Paul Ihrig [EMAIL PROTECTED] wrote: ok..

Re: A Better Coldfusion Search Form.

2008-04-13 Thread James Holmes
And for Oracle: http://download.oracle.com/docs/cd/B19306_01/text.102/b14218/toc.htm http://download.oracle.com/docs/cd/B19306_01/text.102/b14217/toc.htm On Sun, Apr 13, 2008 at 4:16 AM, Scott Pinkston [EMAIL PROTECTED] wrote: Look up freetext or fulltext depending on the db engine. MySQL:

Re: CFCs - Rule of thumb when to use

2008-04-09 Thread James Holmes
I'd recommend looking at ColdSpring or Litewire now. These help answer a lot of the questions about how organise and separate the CFCs and how to make them work with each other. On Wed, Apr 9, 2008 at 9:22 PM, James Buckingham [EMAIL PROTECTED] wrote: Yeh, I'd go with that. Not overkill at all

Re: reply form with human verification

2008-04-08 Thread James Holmes
http://cfformprotect.riaforge.org/ Accessible, unobtrusive and generally pretty good apparently. On Tue, Apr 8, 2008 at 7:18 AM, bill turner [EMAIL PROTECTED] wrote: Hi All, I need to create a reply or comment form whereby individuals can respond to article postings. This would be similar

Re: cfcontent gives my domainname instead of jpeg

2008-04-08 Thread James Holmes
ToString converts the binary into a text encoding so that it can be sent to the browser. Without it you're probably getting the result of an error handler, as binary data can't be directly output without converting to a string and this will be causing an exception. On Tue, Apr 8, 2008 at 9:47 PM,

Re: Updating a session error

2008-04-08 Thread James Holmes
Don't use evaluate! quantity=#evaluate(form.#theField#)# should be quantity=form[theField] On Wed, Apr 9, 2008 at 12:44 AM, Jeff F [EMAIL PROTECTED] wrote: Hi Everyone, I have a form passing one field to this: cfloop list=#form.FIELDNAMES# index=theField cfif

Re: Adobe CF Customer Support Experience

2008-04-07 Thread James Holmes
Yeah, we guessed. On Mon, Apr 7, 2008 at 11:16 PM, Hemant Khandelwal [EMAIL PROTECTED] wrote: A quick update, we have resolved this issue with Don, and it turned out there was an error in the code example that he submitted and that was what was causing the issue. -- mxAjax / CFAjax docs

Re: Can you guys give me your thoughts on this?

2008-04-07 Thread James Holmes
I do something similar, but I have date_added and date_removed columns (each with a corresponding user column), so I know that if date_removed IS NULL then I have the latest version of the record. It provides full auditing in that we know when a record was added, when it was removed and by whom.

Re: Updater 1 killed my servers

2008-04-07 Thread James Holmes
Yes, did that twice and it broke both times. There was an error in the ANT script execution and Adobe are looking at the problem. On Tue, Apr 8, 2008 at 1:40 PM, George Lu [EMAIL PROTECTED] wrote: I've just installed the update 8.0.1 successfully on the Windows Server (2003). You will need

Re: using LIKE in query of queries

2008-04-06 Thread James Holmes
Try the lower() function - that might work in the QoQ. On Sun, Apr 6, 2008 at 3:41 PM, Mike Little [EMAIL PROTECTED] wrote: hey william, you are right. it does appear to be case sensitive. darn. Does the product have a product_title of 'Table' or 'table'? I haven't checked in a while,

Updater 1 killed my servers

2008-04-06 Thread James Holmes
I installed CF8 Updater 1 to my CF8 multiserver install. Now every instance of CF is dead, reporting: 500 ROOT CAUSE: coldfusion.runtime.CfJspPage$NoSuchTemplateException: Could not find the ColdFusion Component or Interface

Re: Updater 1 killed my servers

2008-04-06 Thread James Holmes
Please let us know how it goes. We're on SLES 10.1 Linux. On Mon, Apr 7, 2008 at 10:58 AM, George Lu [EMAIL PROTECTED] wrote: It sounds scary to me. I've just downloaded the Windows version. On 07/04/2008, James Holmes [EMAIL PROTECTED] wrote: I installed CF8 Updater 1 to my CF8

Re: ColdFusion 8 updater 1 (8.0.1) released

2008-04-04 Thread James Holmes
Thanks for the heads up! On Fri, Apr 4, 2008 at 5:15 PM, Tom Chiverton wrote: http://www.adobe.com/support/coldfusion/downloads_updates.html#cf8 -- Tom Chiverton Helping to completely drive frictionless data on: http://thefalken.livejournal.com -- mxAjax / CFAjax docs and other useful

Re: ColdFusion 8.0.1 updater ZIP file

2008-04-04 Thread James Holmes
It's not actually a zip file, it's a shell script that contains a self extracting zip file. It's been misnamed. Just set the permissions on it to execute and execute it, rather than unzipping it. On Sat, Apr 5, 2008 at 3:58 AM, Brian Love [EMAIL PROTECTED] wrote: Kris: Thanks for the

Re: Coldfusion + AIR

2008-04-03 Thread James Holmes
On Thu, Apr 3, 2008 at 9:35 PM, Steve Good [EMAIL PROTECTED] wrote: If you have Volume 3 issue 3 of the fusion quarterly, there are a whole bunch of examples for connecting Flex 3 and AIR to webservices. I think it was Vol 2 Issue 2; I particularly recommend the article by James Holmes

Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread James Holmes
CF is only supported on 1.5_07 according to this: http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdf On Fri, Apr 4, 2008 at 11:22 AM, AJ Mercer [EMAIL PROTECTED] wrote: what is a good version of JRE 1.5 to use? I downloaded Sun's 1.5 update 15 But Jrun wont start now

Re: CFLDAP parameter parenthesis

2008-04-03 Thread James Holmes
I'd also be tempted to replace the AD team... On Fri, Apr 4, 2008 at 4:20 AM, Jeff Becker [EMAIL PROTECTED] wrote: After a bit of digging, I think I was able to find an answer to this. http://www.faqs.org/rfcs/rfc2254.html gave me some good info on LDAP search strings. Search the above link

Re: ooutput a byte array to browser

2008-04-01 Thread James Holmes
If the file is on the filesystem, you can just use cfcontent to send it to the user. On Wed, Apr 2, 2008 at 7:18 AM, kurt schroeder [EMAIL PROTECTED] wrote: I need to out put an excel file with charts to the user when she clicks on a link. My method for this will be to oout put a byte array

Re: CF8 cluster testing for load balancing and failover

2008-03-31 Thread James Holmes
The multiserver monitor is in the cfusion instance you removed from IIS. Regardless, you probably want to look in the individual server monitors to see how many requests each is handling. hit a page on the site, see which server is shows in, hit it again, it should show in the other server. Take

Re: CF8 cluster testing for load balancing and failover

2008-03-31 Thread James Holmes
instance from here: servername:8300/cfide/administrator. I've launched the server monitor from each instance. I hit the index page. What I can see is it created a session under Active sessions and nothing under other stats items. On 01/04/2008, James Holmes [EMAIL PROTECTED] wrote

Re: Question about cfeed

2008-03-29 Thread James Holmes
Firefox is using its own XSLT to show you the feed - it's displaying the description, not the content. IE is showing the feed with the XSLT that comes with the feed, which shows the content. On Sat, Mar 29, 2008 at 3:58 PM, Steve Sequenzia [EMAIL PROTECTED] wrote: Hey Ray, Thanks for the

Re: Question about cfeed

2008-03-29 Thread James Holmes
That's the correct CFFEED behaviour, according to the docs (http://www.cfquickdocs.com/cf8/?getDoc=cffeed): Column, Atom entry, RSS item CONTENT, content element value, description item value So, for an RSS feed, the content column should contain the description item, which it does. You'll have

Re: VMware- ColdFusion Developer (Palo Alto)

2008-03-29 Thread James Holmes
And people have the nerve to say CF is dead. It's really good to see companies like VMWare providing opportunities in CF. On Sat, Mar 29, 2008 at 3:38 AM, Trish Austin [EMAIL PROTECTED] wrote: ColdFusion Developer, EIS – Palo Alto. **LOCAL PEOPLE ONLY PLEASE** Please send your resume to

Re: CF7 and log4j

2008-03-27 Thread James Holmes
You will have to use a classloader to use a version other than that supplied with CF 7. On Thu, Mar 27, 2008 at 4:11 PM, vishnu prasad [EMAIL PROTECTED] wrote: hi last post is not displaying in Houseoffusion , it display the message The page you are looking for does not exist at this

Re: Windows CF8 VPS?

2008-03-27 Thread James Holmes
Viviotech (http://www.viviotech.net/hosting_vps.cfm). Your budget will buy a very decent CF8 box if you do the management. On Fri, Mar 28, 2008 at 8:43 AM, Jason Durham wrote: I'm currently evaluating HostMySite's entry level CF VPS and am dissatisfied with the performance and support. Can

Re: Memory discrepancy

2008-03-25 Thread James Holmes
It appears that 1.2GB isn't adequate. If you are on CF 8 Enterprise (or you can copy the code to a CF 8 Developer server) you can use the memory monitor to closely profile the memory usage on the server and find what's chewing up the heap. On Tue, Mar 25, 2008 at 11:14 PM, Alex DeMarco [EMAIL

Re: Images in the database good or bad?

2008-03-24 Thread James Holmes
Exactly - people who work in GIS will tell you a lot (if you ask) about the power of DB systems that can do spatial analysis (Oracle, for example). On Mon, Mar 24, 2008 at 10:53 PM, Dawson, Michael [EMAIL PROTECTED] wrote: Lets say you get to be the size of myspace.com or flickr.com they

Re: Round Up

2008-03-23 Thread James Holmes
Ceiling actually: http://www.cfquickdocs.com/#Ceiling Round might round down; the OP wants to round up always. On Sun, Mar 23, 2008 at 9:04 PM, Will Tomlinson [EMAIL PROTECTED] wrote: is there any function or easy to always round up a number, please? Jenny Round()

Re: Round Up

2008-03-23 Thread James Holmes
Sorry, the link shoudl be http://www.cfquickdocs.com/#Ceiling?getDoc=Ceiling On Sun, Mar 23, 2008 at 8:08 PM, James Holmes [EMAIL PROTECTED] wrote: Ceiling actually: http://www.cfquickdocs.com/#Ceiling Round might round down; the OP wants to round up always. On Sun, Mar 23, 2008 at 9

Re: SSL (HTTPS) Web Service

2008-03-20 Thread James Holmes
If the server certificate is self-signed, you might need to import the root Certificate Authority into your CF server keystore. On Thu, Mar 20, 2008 at 10:45 PM, Ian Skinner [EMAIL PROTECTED] wrote: Is there some trick to consuming a web service over HTTPS(SSL) in ColdFusion. I keep getting a

Re: SSL (HTTPS) Web Service

2008-03-20 Thread James Holmes
http://www.talkingtree.com/blog/index.cfm/2004/7/1/keytool http://www.coldfusionmuse.com/index.cfm/2005/01/29/keystore http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19139 On Thu, Mar 20, 2008 at 11:36 PM, Ian Skinner [EMAIL PROTECTED] wrote: James Holmes wrote: If the server

Re: Memory discrepancy

2008-03-20 Thread James Holmes
Server monitor is reporting the used heap space but not the perm space. As time goes on more and more classes have been compiled and are being stored in the perm space. Hotspot-optimized code also lives in the perm space, which also accumulates over time.

Re: Memory discrepancy

2008-03-20 Thread James Holmes
The growth is in the perm space. It's part of the JRun JVM process memory (reported by Task Manager) but not part of the JVM heap (reported by Server Monitor). It's not exactly external to CF - it's part of how CF (or any Java app) works. CF creates a lot of classes to do what it does, which all

Re: Brain not working... how do I get these values?

2008-03-20 Thread James Holmes
Can you name the file fields independently (i.e. do they have to be the same name)? On Fri, Mar 21, 2008 at 11:45 AM, Rick Faircloth [EMAIL PROTECTED] wrote: Ok. so I'm trying, for the first time, to set up unlimited file inputs for users. I'm using a jQuery plug-in, which works fine.

Re: Brain not working... how do I get these values?

2008-03-20 Thread James Holmes
starting with image-upload-1, then image-upload-2, etc. So, how would I handle the processing not knowing the number of fields being passed by the form to CF? Rick -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 11:25 PM

Re: CF 8 Performance Problems?

2008-03-19 Thread James Holmes
Is debugging or server monitoring switched on for the CF8 server? On Thu, Mar 20, 2008 at 5:05 AM, Annie x [EMAIL PROTECTED] wrote: Has anyone ran into any issues with CF 8 performance? We have a large application that we stress-tested on one of our CF 6 boxes. We then moved the code to our

Re: CF 8 Instance Clustering: for performance? or failover?

2008-03-18 Thread James Holmes
It depends on the number of queued threads and the default stack size. Some platforms have a 512k default stack, for example. Queue 100 threads and that's 50MB, because the thread is assigned the stack when it's queued, not when it's executed. As a comparison point, we often have a few hundred

Re: CF 8 Instance Clustering: for performance? or failover?

2008-03-17 Thread James Holmes
Sort of. Sessions certainly take up the same room in both if you're using session replication and you'd expect that over time the same set of classes are going to be created and take up perm space. But since the threads are spread between each instance there's (approximately) half the stack space

Re: Weired Error

2008-03-17 Thread James Holmes
Yes, the facists are conspiring to prevent your cfwindow from working because it's a risk to national security. This will help: http://zapatopi.net/afdb/ On Tue, Mar 18, 2008 at 10:30 AM, Don L [EMAIL PROTECTED] wrote: Hi, My cf8-based app runs fine with me and most beta users (the app

Re: Hostmysite down?

2008-03-14 Thread James Holmes
On Fri, Mar 14, 2008 at 11:45 PM, Jamie Price [EMAIL PROTECTED] wrote: In short: Yes, Virginia, there is a webhost that cares about customer service and meeting expectations. ;-) Unless you expect shared CF hosting on Linux. -- mxAjax / CFAjax docs and other useful articles:

Re: File download not working

2008-03-13 Thread James Holmes
Did you recently turn off caching in IE, or do you prevent caching in the page higher up (with no-cache headers etc)? On Fri, Mar 14, 2008 at 6:01 AM, Dave [EMAIL PROTECTED] wrote: I'd seen the content-description in a few examples figured I'd give it a try. I've also see the attachment

Re: Help Adobe plan the future of ColdFusion (along that line)

2008-03-12 Thread James Holmes
Sure, but not Java. Flex does this really well and fits better with CF as an adobe product: http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html On Thu, Mar 13, 2008 at 7:42 AM, Azadi Saryev [EMAIL PROTECTED] wrote: yes +1 to better file upload. start with built-in tag-based

Re: Naming Forms randomly

2008-03-11 Thread James Holmes
In this code: cfset session.cart[#prodID#].quantity=session.cart[#form.prodID#].quantity+1 the # symbols are completely unnecessary. cfset session.cart[prodID].quantity=session.cart[form.prodID].quantity+1 will work just the same. On Wed, Mar 12, 2008 at 9:33 AM, Phillip Perry [EMAIL

Re: FW: Help Adobe plan the future of Flex or ColdFusion

2008-03-11 Thread James Holmes
You're lucky. I answered the first couple of screens and got: You are missing information in the URL. Please verify the URL is correct. On Wed, Mar 12, 2008 at 2:41 PM, Don L [EMAIL PROTECTED] wrote: Half way through, the survey app had a show-stopper, namely, for future features including

Re: CFLDAP finds cn but can't find password or certain attributes

2008-03-10 Thread James Holmes
Is the working admin username just a name like admin or a DN like cn=admin,dc=something...? On Tue, Mar 11, 2008 at 11:35 AM, david reiter [EMAIL PROTECTED] wrote: Hi - The error message (which occurred in the line reading filter=cn=#FORM.UserLogin#) is below: Authentication

Re: Slow machine - JRun?

2008-03-09 Thread James Holmes
If you are seeing a lot of paging the following things are among those relevent: - How much physical RAM do you have on this box? - How much memory is allocated to the ColdFusion JVM (heap, stack and perm space)? - What else is the box running (e.g. is the DB on the machine)? On Sun, Mar 9,

Re: Slow machine - JRun?

2008-03-09 Thread James Holmes
, apparently, so maybe this is where your 2GB of swap is coming from. I'd make sure the swap file is all on one volume and isn't fragmented - I'd also recommend putting the DB on a different box. On Sun, Mar 9, 2008 at 11:06 PM, James Holmes [EMAIL PROTECTED] wrote: If you are seeing a lot of paging

Re: Hosting Problems

2008-03-09 Thread James Holmes
I simply expected from HMS a shared linux CF server that stayed functional most of the time. They were unable to provide this - to the point where they no longer offer shared Linux CF hosting. I'll leave it to your judgement as to whether I expected too much. They recommended I move to VPS, so I

Re: Hosting Problems

2008-03-06 Thread James Holmes
I moved from HMS to Viviotech and I've been happy. On Fri, Mar 7, 2008 at 4:57 AM, Richard White [EMAIL PROTECTED] wrote: its not been the problem for us getting through to them, its once we get through to them thats the problem. every issue we have had with them has been in relation to them

Re: File Upload H2

2008-03-06 Thread James Holmes
What do cfserver.log and your other logs say about the server when it crashes? On Fri, Mar 7, 2008 at 7:45 AM, Ryan J. Heldt [EMAIL PROTECTED] wrote: Is a 2MB file really all that ColdFusion can handle. I know we've done uploads of other files (like images and PDFs) that are far bigger and

Re: CFC Best practices question

2008-03-05 Thread James Holmes
I'll second this. When you use ColdSpring, you end up having it passed in as an init() parameter and then put it in the VARIABLES scope, so it's available to all methods inside your object. On Thu, Mar 6, 2008 at 7:29 AM, Charlie Griefer [EMAIL PROTECTED] wrote: I think you're starting to see

Re: cfhttp, pulling from secure site

2008-03-05 Thread James Holmes
Ben Nadel recently took his session maintainer stuff and put it into a CFC: http://www.bennadel.com/blog/1171-CFHTTPSession-cfc-For-Multi-CFHttp-Requests-With-Maintained-Session.htm This should make things simpler. On Thu, Mar 6, 2008 at 2:30 PM, Gilbert Midonnet [EMAIL PROTECTED] wrote: Yes,

Re: ongoing problem with newsletter-eMail-actions: CF is hanging

2008-03-05 Thread James Holmes
Do you mean that FusionReactor or another monitoring tool shows 2GB free in your JVM or that the box has 2GB free? These are very different things. On Thu, Mar 6, 2008 at 4:17 PM, [EMAIL PROTECTED] wrote: Hi Jochem, thank you. CPU and memory is just fine. CPU ist under 10-15% and memory is

Re: CFC, OOP I have another acronym for you.. WTF?

2008-03-04 Thread James Holmes
You have of course been deleting and re-creating the APPLICATION.userGateway object after you've been making these changes, right? On Tue, Mar 4, 2008 at 10:59 PM, Greg Morphis [EMAIL PROTECTED] wrote: Naaa.. I mean we do have an error template but it normally fires with errors.. If I misspell

Re: LinkedIn CF group

2008-03-04 Thread James Holmes
+1 On Wed, Mar 5, 2008 at 9:08 AM, RobG wrote: I'm game. Just joined. On Tue, Mar 4, 2008 at 3:01 PM, James Wolfe [EMAIL PROTECTED] wrote: I'm not sure what purpose it serves, but I created a LinkedIn CF group if anyone cares

Re: Need query help

2008-03-03 Thread James Holmes
No, that'll get one or the other - he wants ones that are both. Aliasing will work, something like this: SELECT tblgroups.groupid, tblgroups.groupimage, tblgroups.groupname, tblgroups.groupcity, tblgroups.state, tblgroups.voicingid, tblgroups.groupcontactperson, tblgroups.country,

Re: cffile misbehaving?

2008-03-02 Thread James Holmes
Exactly - it depends on what the client is willing to send. In IE7 my test code gives me the full client path where it belongs in the CFFILE struct (including my username, since I uploaded from the My Documents folder in my account). Firefox displays the behaviour the OP described (no client

Re: Difference between CFAjax and mxAjax

2008-03-01 Thread James Holmes
Yes. CFAJAX is no longer maintained and used a port of a Java Library, DWR, for data exchange. mxAjax employs popular libraries like Prototype, Scriptaculous, JSON and some other bits and allows CFCs to be used. It has more features and, most importantly, Arjun is still maintaining it. If you

Re: Best WYGIWYG Browser based html text editors for Coldfusion

2008-03-01 Thread James Holmes
All of these HTML editors are client side technology and will work essentially independently of the serverside tech. The only wysiwyg editor that you could really say is for CF only is the FCK based one that comes in CF8, since you can bring it up with a CF tag. If you want to know about file

Re: An effort to make cold fusion 8 standard edition more efficie nt

2008-02-29 Thread James Holmes
Have you seriously looked at what Ext offers? On Sat, Mar 1, 2008 at 3:34 AM, Claude Schneegans [EMAIL PROTECTED] wrote: 3. Use something else that's not integrated. 4. develop your own ;-) -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/

Re: How is CF8 working on shared servers?

2008-02-27 Thread James Holmes
In fact, you don't even need the Application name - you can use a blank application name and dump out (and then change) every single application on the box, regardless of sandboxing. If the host doesn't restrict creatobject(java...) then all bets are off. If the host lets JSP run inside CF then

Re: auto-fill forms, a B2B application

2008-02-26 Thread James Holmes
CFHTTP can do all of this. On Wed, Feb 27, 2008 at 3:19 PM, Gilbert Midonnet [EMAIL PROTECTED] wrote: I've had an interesting request. I need to be able to auto-fill forms on a third-party's server. Yes we have permission and no, there is no XML alternative. We need to push data to

Re: Guru Disputes?

2008-02-26 Thread James Holmes
I think at this point you need a lawyer to go over the contract under which you did the work. On Wed, Feb 27, 2008 at 11:46 AM, William Seiter [EMAIL PROTECTED] wrote: From Guru.com Client and Contractor don't agree on something. In my case, the money has been in Guru's escrow account and

Re: Memory leak detection

2008-02-25 Thread James Holmes
Deploy your app to a CF8 developer edition server and turn on the memory monitor. This will drill down into applications, sessions and requests by memory usage and show you exactly where it's all going. On Mon, Feb 25, 2008 at 10:23 PM, Richard Steele [EMAIL PROTECTED] wrote: Our CF application

Re: Open Flash Chart - any cfc helpers?

2008-02-17 Thread James Holmes
Perhaps people generally use CFCHART instead? On Feb 18, 2008 5:56 AM, John Skrotzki [EMAIL PROTECTED] wrote: I am surprised no one has created a cfc helper for integrating open flash chart to the coldfusion server. Is there one out there? Is there another good open source flash chart that

Re: AutoSuggest from a database query

2008-02-16 Thread James Holmes
mxAjax will do this: http://www.indiankey.com/mxajax/examples/mxAutocomplete1.cfm On Feb 16, 2008 6:53 PM, Ali [EMAIL PROTECTED] wrote: Hi: I know about CF autosuggest ability in a cfinput tag but I need to use an autosuggest in normal input tag (not cftinput) and I want to read the

Re: Huh? EMBED and OBJECT Tags Get Modified During CFFILE WRITE?

2008-02-14 Thread James Holmes
Jochem already answered this for you - the Enable Global Script Protection setting is enabled and this is replacing your embed and object tags because it thinks they are unsafe. On Feb 14, 2008 5:02 PM, K Simanonok [EMAIL PROTECTED] wrote: So what could be changing my EMBED and OBJECT tags to

Re: CF8 Ajax features and javascript disabled

2008-02-14 Thread James Holmes
ExtJS 2 has good features for creating these controls out of existing markup on the page - so if JS is disabled, the display is the standard HTML (divs etc) that would have formed the cool looking stuff. On Thu, Feb 14, 2008 at 10:17 PM, Will Swain [EMAIL PROTECTED] wrote: Hi, What are people

Re: Strange happenings in a login. CFMX 6.1

2008-02-13 Thread James Holmes
You are checking a session variable before you've enabled the session with the cfapplication tag: /PowerCo/login/Application.cfm - cfsilent cfset Variables.inLogin = true / cfset Variables.pageTitle = Login / /cfsilent cfif isDefined(Session.loggedIn) and

Re: OT: How to stop bots indexing my dev sites

2008-02-13 Thread James Holmes
We restrict the dev site/server by IP address, so only local connections are permitted by the webserver. VPN access is used to access a dev server off-site. On Feb 14, 2008 12:56 AM, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all. I usually put up a client's site while it is development so

Re: OT: How to stop bots indexing my dev sites

2008-02-13 Thread James Holmes
, or at home, friends, etc. Seems like a login to the development site would be the easiest way to go. Thoughts? Thanks, Rick -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 13, 2008 8:16 PM To: CF-Talk Subject: Re: OT: How

Re: JVM out of memory error / Jrun stuck at 25% CPU

2008-02-13 Thread James Holmes
Increase the MaxPermSize as well. CF can fill this while the heap still has space. On Feb 14, 2008 3:56 PM, Duncan [EMAIL PROTECTED] wrote: Hi All, We are having some terrible server issues at the moment, and now we need some outside ideas, as we have run out! The symptoms of which are as

<    2   3   4   5   6   7   8   9   10   11   >