Re: CF attack on a buddies server

2012-02-22 Thread Dave Watts
: http://www.adobe.com/products/coldfusion/whitepapers/pdf/91025512_cf9_lockdownguide_wp_ue.pdf In this specific case, you shouldn't allow CF to write to any web content directories by default, and you shouldn't allow file uploads to any web content directories. Dave Watts, CTO, Fig Leaf Software

Re: CF attack on a buddies server

2012-02-22 Thread Dave Watts
for writing a file. It probably wasn't a Windows exploit actually, unless you happen to be running Windows 2000 or something. IIS and Windows are fairly secure out of the box and don't have remote exploits that let you write files via HTTP requests, unless you enable WebDAV. Dave Watts, CTO, Fig Leaf

Re: Editing the http info before it goes to the browser.

2012-02-21 Thread Dave Watts
being done at that higher level. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: emailing a cfchart?

2012-02-21 Thread Dave Watts
suspect you could capture the output generated by either of those, using CFHTTP for example. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor

Re: emailing a cfchart?

2012-02-20 Thread Dave Watts
an actual image file. You can use the NAME attribute of CFCHART to generate a CF variable that contains the image, store that to a file, then serve that instead. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business

Re: App is hanging on some requests

2012-02-15 Thread Dave Watts
communicatations problem very frequently with McAfee. And if you ask me - not that anyone did - the best way to update the AV on a web server is to uninstall it. Then burn the CD. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned

Re: instance of a cfm

2012-02-14 Thread Dave Watts
an explanation for a simple question? I don't think it was too long. However, I don't really understand the question at all. What do you mean by instances, or interface in this context? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran

Re: instance of a cfm

2012-02-14 Thread Dave Watts
/ExistCheck.cfc, meaning that wherever this line of code is, there would need to be a subdirectory called cfc, with a file called ExistCheck.cfc in it. You can only create instances from CFCs, though. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: Java Keystore... why is it needed for valid certs?

2012-02-13 Thread Dave Watts
is actually kind of a problem - when someone misuses a CA cert, it can be hard to ensure that the cert they fraudulently create isn't trusted by browsers by default. There isn't really a good universal revocation process. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Load Testing - what to look for and monitor/report

2012-02-12 Thread Dave Watts
memory leaks with CF components - you just might run out of memory, though. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized

Re: Load Testing - what to look for and monitor/report

2012-02-11 Thread Dave Watts
for bottlenecks in your application with the goal of improving application performance. In a capacity planning test, you're trying to identify how many users your application can support as it's currently written. Which one of these are you doing? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: SEO Redirection

2012-02-07 Thread Dave Watts
, but there's really no reason to do this the way you're doing it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our

Re: (ot) Were to store admin passwords?

2012-02-06 Thread Dave Watts
for this sort of thing. A good password manager will encrypt your storage file, and will itself require a password and/or token to open. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: (ot) Were to store admin passwords?

2012-02-06 Thread Dave Watts
X doesn't have this, unfortunately. But you can get apps for every platform I've ever seen that are able to open KeePass files. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: (ot) Were to store admin passwords?

2012-02-06 Thread Dave Watts
. You can use it for other things but it feels very clunky to do this as it is all done via an advanced tab and the extra info is not plain to see and is also stored as typeless name/value pairs. Yeah, that part does kind of suck. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Opinion: Abuse of session variables

2012-02-03 Thread Dave Watts
their authentication process. Of course, it was because of how their code was structured, and probably didn't need CFLOCK to resolve. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: Opinion: Abuse of session variables

2012-02-03 Thread Dave Watts
don't think about concurrency. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: Escaping #

2012-02-01 Thread Dave Watts
consists of the string namefirst1, namefirst2, etc, here's one way to do it: cfoutput#variables[namefirst i]#/cfoutput Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: Escaping #

2012-02-01 Thread Dave Watts
Try this: cfoutput        cfloop index=I from=1 to=50                input type=hidden name=namefirst#1# value=#namefirst##i# /        /cfloop /cfoutput I don't think that's going to get the value of a variable called, say, namefirst1. Dave Watts, CTO, Fig Leaf Software http

Re: the #2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Dave Watts
to print at all with cfprint. http://kb2.adobe.com/cps/405/kb405588.html Did you install all the fonts used by this PDF on your CF server? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: the ##2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Dave Watts
Yes, it prints from the server fine if I open the pdf and print from acrobat reader. it just wont print the #2 with the cfprint command. If you go into the fonts list in CF Administrator, are all the fonts used by your PDF listed there? Dave Watts, CTO, Fig Leaf Software http

Re: Crossed Accounts Issue

2012-02-01 Thread Dave Watts
       CFSET session.RetAuth=APPLICATION.oUser.authenticate(form.Login,form.Password)        CFSET SESSION.UserName=FORM.Login This is a race condition issue. You can solve it by implementing locking, either around this code or perhaps within your component. Dave Watts, CTO, Fig Leaf Software

Re: the ##2 will not print with Bar Code 39 f HR cfprint comand

2012-02-01 Thread Dave Watts
Yes they are all in CF Administrator Then, I got nothin. Sorry. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction

Re: Escaping #

2012-02-01 Thread Dave Watts
rid of the multiple ## . That will work as well, but in general it's more expensive to use evaluate (which has to do more work under the covers, to convert an arbitrary string to executable code) than the solution I proposed, which looks for a key within a structure. Dave Watts, CTO, Fig Leaf

Re: Escaping #

2012-02-01 Thread Dave Watts
but that didn't work. Right. The brackets indicate membership in a structure, but you didn't specify the structure structure[key] Variable scopes are exposed as structures. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: Escaping #

2012-02-01 Thread Dave Watts
, variables from that form are in the Form scope. If you have variables retrieved from a URL, they're URL variables. Etc, etc. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: Opinion: Abuse of session variables

2012-01-31 Thread Dave Watts
it to a persistent data store. But you don't have unlimited memory, so you have a balancing act. We all would need far more information than you've provided to tell you whether you're off-balance one way or the other. I will say this, though - there's a reason we have 64-bit servers nowadays. Dave Watts, CTO

Re: Opinion: Abuse of session variables

2012-01-31 Thread Dave Watts
variables is bad practice? If so, I'll have to disagree with that pretty strenuously. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized

Re: Opinion: Abuse of session variables

2012-01-31 Thread Dave Watts
/cflock Unfortunately, it didn't work very well in practice. perhaps you could just ask him why he is doing it. I am not being sarcastic when I say this - this is a very good suggestion. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: SOT: PHP The Anthem

2012-01-27 Thread Dave Watts
Highlighted on the YouTube homepage, they trash CF in the first line of the song... http://www.youtube.com/watch?v=S8zhmiS-1kwfeature=g-all-esicontext=G2be1824FBAA While they were putting this together, I was doing billable work. So, meh. Dave Watts, CTO, Fig Leaf Software http

Re: Error consuming CF created web service from SSIS

2012-01-23 Thread Dave Watts
and test invoking that from SSIS? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: (ot) SEO

2012-01-20 Thread Dave Watts
-series response): cflocation statuscode=301 ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training

Re: (ot) SEO

2012-01-20 Thread Dave Watts
want to go to (or the Application file used by that page) in a variety of ways. Redirection for its own sake is unnecessary and generally a bad approach. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB

Re: cfheader Content-Range

2012-01-12 Thread Dave Watts
# CF isn't going to know anything about your range headers. It's just going to serve the file. If you wanted to serve part of the file, you'd have to read it into memory and serve the slice that you want to serve. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com

Re: problems uninstalling cf9

2012-01-12 Thread Dave Watts
directory, and you may be able to just pull the files out of that and put them back over the updated files. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber

Re: Charts expiring and dropping from cache

2012-01-12 Thread Dave Watts
that file instead of the temporary file generated by the chart itself. One of the comments in the post suggested that, and it sounds acceptable to me. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB

Re: cfheader Content-Range

2012-01-12 Thread Dave Watts
Using cffile read? Is 1 character considered to be a byte? Usually, a character is one byte in size, but you can use the READBINARY action value instead, and use ToBase64 to serve it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: Charts expiring and dropping from cache

2012-01-12 Thread Dave Watts
... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: CF Javascript errors

2012-01-12 Thread Dave Watts
advice on this would be appreciated. It sounds to me like those files have been corrupted in some way. Have you compared them with the default files? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB

Re: Controlling location of temporary file

2012-01-11 Thread Dave Watts
/questions/318239/how-do-i-set-environment-variables-from-java http://stackoverflow.com/questions/580085/is-it-possible-to-set-an-environment-variable-at-runtime-from-java Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned

Re: cfheader Content-Range

2012-01-04 Thread Dave Watts
into all the time is the use of Last-Modified in HTTP responses, and support for If-Modified-Since HTTP request headers. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: Is what I'm trying to do with XML even possible?

2012-01-04 Thread Dave Watts
/Product (or maybe just //Product, since I guess it's possible that not all products have subcategories) - this again will return a nodeset that you can loop over. 4. Display stuff. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran

Re: Is what I'm trying to do with XML even possible?

2012-01-04 Thread Dave Watts
In trying to achieve step number 1, I tried to create a document on my hard drive.  Should this code not create an xml document on my e: drive? All you need to fetch a file is a single CFHTTP with the PATH and FILE attributes. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: BoogieBounce on Linux?

2011-12-30 Thread Dave Watts
to fire it up has to be quite different (no COM objects in Linux, true?) My understanding was that they didn't offer BoogieBounce for Linux, but instead have a module that you can load as a shared object. I have no idea how you'd do that from CF. Dave Watts, CTO, Fig Leaf Software http

Re: ColdFusion - Long Running Processes - Garbage Collection - structDelete

2011-12-18 Thread Dave Watts
up with a solid solution. Please share your tricks. You can certainly handle long-running processes via cfthread or a variety of other approaches. But you haven't really defined a problem here. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf

Re: ColdFusion - Long Running Processes - Garbage Collection - structDelete

2011-12-18 Thread Dave Watts
I don't know for 100% certain but I believe that that would often trigger a garbage collection as well. I don't know either, but I would be extremely surprised if this was true. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: Very disappointing statis

2011-12-14 Thread Dave Watts
. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: cftransaction isolation=repeatable_read

2011-12-14 Thread Dave Watts
, so yes, it's transaction-safe. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: CF7 threads

2011-12-14 Thread Dave Watts
to a newer version, as they allow use of newer JVMs and generally perform better. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized

Re: Puzzling error

2011-12-11 Thread Dave Watts
I've been using the following for a lon time and it's suddenly throwing a java error, any ideas anyone, please? cfset delay = 1 cfset sTime = gettickcount() cfloop condition=gettickcount() lt sTime + delay /cfloop What is the error? Dave Watts, CTO, Fig Leaf Software http

Re: ColdFusion 9 on One Computer and IIS 7 on Another Computer

2011-12-08 Thread Dave Watts
sure. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: ColdFusion 9 on One Computer and IIS 7 on Another Computer

2011-12-07 Thread Dave Watts
information. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: Virtual pathing issue

2011-12-02 Thread Dave Watts
. It's a matter of web server configuration. You need to have a virtual directory that points to the directory containing your CFC. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: Virtual pathing issue

2011-12-02 Thread Dave Watts
or create a mapping that points to the org folder Creating a mapping in CF won't help here, I suspect - it has to be at the web server. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA

Re: Virtual pathing issue

2011-12-02 Thread Dave Watts
to your site root wont work because it is no longer your site thus your files do not exist relative to the webroot. CF mappings tell CF how to find files via CFINCLUDE, CFMODULE, etc. They don't tell web servers how to resolve HTTP requests. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com

Re: Virtual pathing issue

2011-12-02 Thread Dave Watts
ok I thought his problem was with the cfc path  not url's You might be right. It's not clear to me from the OP's question. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: application vars

2011-11-21 Thread Dave Watts
the Application scope in onRequestStart, and copy it back on onRequestEnd. But, yecch. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized

Re: application vars

2011-11-21 Thread Dave Watts
, that's not really a match for the use case, as these changes don't happen over the life of the application - they're just different values for different pages. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business

Re: Weird attack

2011-11-18 Thread Dave Watts
timings. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: Query Errors

2011-11-18 Thread Dave Watts
when you use SHOWPLAN or the appropriate alternative for your database? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized

Re: Adobe Abandons Flex

2011-11-17 Thread Dave Watts
. That's the nature of blanket statements. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: Adobe Abandons Flex

2011-11-16 Thread Dave Watts
wanted to do those things, you wrote browser-specific code. Lots of internal corporate web apps relied on specific functionality delivered through ActiveX, for example. It's very easy to criticize decisions made in the past with information we have in the here-and-now. Dave Watts, CTO, Fig Leaf

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
: http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training

Re: CFHTTP and Amazons dynamic Load Balancer tool

2011-11-15 Thread Dave Watts
a subdomain and a static IP address but they are not happy doing that since it is under an ssl and they do not want to pay for another CERT. Maybe you can disable DNS caching entirely for the JVM: http://download.oracle.com/javase/6/docs/api/java/net/InetAddress.html Dave Watts, CTO, Fig Leaf

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
subsidize some of the open-source development, as they've done many times in the past - the Ajax library in CF is open-source, but several of the developers on it were paid by Macromedia (at the time) to work on it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
that the version 2 SDK was open-source. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: Which mobile development platform is best?

2011-11-15 Thread Dave Watts
Also, do you know of mobile app developers who can set up a small app as 'BETA'? What do you mean by this? If you mean, do you know of mobile app developers who will work for free on contingency - no, I don't. If I did, they'd be called suckers. Dave Watts, CTO, Fig Leaf Software http

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
The abandonment of Spectra was accompanied by a rosy news release and claims of This is fantastic news!  Spectra quickly died. That was fantastic news! (not a Spectra fan here, but j/k I guess) Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
(and a committee often can't) is the ability to decide significant new directions pretty quickly. For example, moving from MX to Spark was a big change. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB

Re: Adobe Abandons Flex

2011-11-15 Thread Dave Watts
*wakes up* Spectra? Did someone say Spectra? *back to sleep* Spectra can also be used to summon shoggoths. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: cfajax error

2011-11-11 Thread Dave Watts
immediately. My guess is that the function is returning invalid data of some sort, which is why it's running successfully but the code that calls the function is failing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned

Re: cfajax error

2011-11-11 Thread Dave Watts
server-side debugging enabled for AJAX responses, that'll cause the client-side parser not to be able to read them properly. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides

Re: cfajax error

2011-11-11 Thread Dave Watts
Now, is there a way to turn off debugging for ajax response but leaving it on for other things? Sure, you can do this on a per-page basis with CFSETTING. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: Adobe drops Flsh for mobile devices

2011-11-11 Thread Dave Watts
is not the appropriate place to expect that you can vent without being corrected when you're wrong. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor

Re: Adobe drops Flsh for mobile devices

2011-11-11 Thread Dave Watts
for Adobe's marketing plan, or pricing, or whatever. Well, this is not the place for that. Sometimes the technician, sometimes the counselor. No one pays me to be a counselor. On here, no one pays me to be a technician either, so I reserve the right to answer questions as I see fit. Dave Watts, CTO

Re: cfajax error

2011-11-11 Thread Dave Watts
INSERT INTO time_taken ( time_off_id, employee_id, date_taken, notes, actionuser, actiondate, year ) VALUES ( 'VV', 'e0012345', 11/11/2011, '', 'e0012345', now(), 2011 ) The field date_taken is a Date/Time field, right? You're inserting an empty string, not a Date/Time value. Dave Watts, CTO

Re: cfajax error

2011-11-11 Thread Dave Watts
No, date_taken is 11/11/2011 Sorry, I didn't even see the first item in the VALUES list. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor

Re: Adobe drops Flsh for mobile devices

2011-11-11 Thread Dave Watts
though now that has me wondering if dave could be paid to wear a black beret set at a rakish angle? As a consultant, I can be paid to do almost anything. Almost. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned

Re: Manual install ODBC services ColdFusion MX7

2011-11-11 Thread Dave Watts
. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: Hosting an .apk file on cf7

2011-11-10 Thread Dave Watts
, and comparing the HTTP response headers between the two downloads. I don't know if CFCONTENT returns a Content-Length response header - you might need that. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB

Re: MS Word Formatted text in DB not displaying correctly on output

2011-11-10 Thread Dave Watts
; instead of , etc) in your database. If so, you'll need to unescape them. You can do this with Replace. I suspect there's a function on cflib.org that does this too. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: Attribute validation error for tag cfloop

2011-11-10 Thread Dave Watts
I get The value of the attribute query, which is currently WHAgentSales, is invalid. This is the loop: cfoutput cfloop query=WHAgentSales ... Have you confirmed that there's a query called WHAgentSales in the page? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: TOT... IIS 6 Asp error logs

2011-11-10 Thread Dave Watts
been a while since I've worked with classic ASP, but I don't think there's any real error logging on by default. You have to write an error handler to capture this information, and configure IIS to use that handler for 500 errors. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
I know I'll be insulted, but the truth must be said: Coldfusion is dying a slow death ... I just hope that when it's my time to go, my death will be as slow. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
different yourself. Write the blog posts you want to see. Be the evangelist you want others to be. Lead by example. But this ... this is no way to accomplish anything other than getting a bunch of people riled up over nothing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
hackers are willing to cough up the dough for a CF Standard license, they may as well not exist as far as Adobe is concerned. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
Why won't Adobe PAY ... No, I do not blog about ANYTHING. I'm too busy working to pay my bills - and yes, I use and love Coldfusion every day. It's very easy to tell other people how they should spend their money, isn't it? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
Typical denial, mixed with a bunch of strawman arguments. That's one hell of a rebuttal. Let's reconvene on this ten years from now, ok? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA

Re: Dynamic query help.

2011-11-10 Thread Dave Watts
hold simple data types...am I mistaken on that?) Session variables can hold any CF data types, not just simple ones. That said, you might still be better served using a temporary table, if you think the process is fairly complicated. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com

Re: getPageContext() in onRequestEnd is empty?

2011-11-10 Thread Dave Watts
tricky for things like this. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online

Re: getPageContext() in onRequestEnd is empty?

2011-11-10 Thread Dave Watts
to successfully output something before the error occurred, that will be sent to the browser. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
you're a secret majority shareholder, I'm guessing the answer is no. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
on marketing (but less than they'd recoup from increased CF sales) they'd spend more on marketing. It's as simple as that. That's how it works in the real world. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
of reading comprehension, you might want to read these things more slowly and carefully. In any case, why 10 years? Because people have been posting this crap here for ten years already. They were posting it when CF was called Allaire Cold Fusion. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
free to interpret that as a (not-veiled) personal attack. I won't bother with the smiley. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
the other a beer. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite

Re: Adobe drops Flsh for mobile devices

2011-11-10 Thread Dave Watts
you're right, though. I hope Coldfusion remains a valid option for many years to come. Clearly, your contribution tonight was the best way you could help CF remain a valid option, I'm sure. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: Creating a ColdFusion Error

2011-11-08 Thread Dave Watts
? You can specify type, message and detail information with CFTHROW, just like you'd read from CFCATCH. Out of curiosity, what information do you want to provide? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small

Re: Maximum Request Setting CF6

2011-11-08 Thread Dave Watts
appropriate number for this value via load testing? This queuing behavior is by design, and is pretty efficient - moreso than having a large number of threads that aren't utilized all the time. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software

Re: Running CF on 2008

2011-11-05 Thread Dave Watts
Would permissions issues cause a 500 or a 401? Usually, permissions issues cause 401 errors. But if the share or drive is completely unavailable to the IIS user, it's possible you'd get some other error entirely. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http

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