XMLSearch not thread safe

2008-08-05 Thread James Holmes
The CF7 version of XMLSearch() is not thread safe (as noted in the livedocs http://livedocs.adobe.com/coldfusion/7/htmldocs/0672.htm by a helpful person and confirmed by us on several unfortunate occasions over the last few days). Does anyone know if this is fixed in CF8? -- mxAjax / CFAjax

Re: Boomsocket Alpha Trial

2008-08-05 Thread Toby King
HI there Trying to sign up as an Alpha Tester so as to be able to review the CMS as it looks like a rather nifty little product. Regards Pete ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to d

RE: Recovering a ColdFusion server.

2008-08-05 Thread Dave Watts
> I presume the restore path to new hardware would then be to > run a ColdFusion installation, turn off all CF services, > overwrite the new JRun4 folder with the backed-up one and > restart? Anything else to note? You wouldn't even need to do that, if you backed up the entire directory and t

Re: cfeclipse firefox interface browser

2008-08-05 Thread denstar
On Tue, Aug 5, 2008 at 2:27 PM, Dave Watts wrote: > I don't think it's possible to change the internal browser in Eclipse. In > general, Windows applications use IE as their "internal" browser because it > can be invoked as an embedded ActiveX component. I don't know if that's > possible with

Re: Recovering a ColdFusion server.

2008-08-05 Thread Ian Skinner
Is this documented somewhere? I've not had any luck finding anything relevant in Adobe's knowledge base or via Google. Thanks Ian ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Fr

Re: Recovering a ColdFusion server.

2008-08-05 Thread Ian Skinner
Dave Watts wrote: >> The install folder? Would that be the entire JRun4 folder >> (we use Multi-home CF here) or just some portion of it? >> > > Yes, you'd need to back up JRun and any instances, so the entire folder. I presume the restore path to new hardware would then be to run a ColdF

RE: Recovering a ColdFusion server.

2008-08-05 Thread Dave Watts
> The install folder? Would that be the entire JRun4 folder > (we use Multi-home CF here) or just some portion of it? Yes, you'd need to back up JRun and any instances, so the entire folder. > And if the CFIDE folder is not under this it should be included > as well correct? Yes, as well as

Re: Recovering a ColdFusion server.

2008-08-05 Thread Ian Skinner
Jochem van Dieten wrote: > > The install folder, HKLM\SYSTEM\CurrentControlSet\Services\ > and the IIS metabase. > The install folder? Would that be the entire JRun4 folder (we use Multi-home CF here) or just some portion of it? And if the CFIDE folder is not under this it should be include

Re: Recovering a ColdFusion server.

2008-08-05 Thread Jochem van Dieten
Ian Skinner wrote: > Anybody know good resources, white papers, etc. that discuss any best > practices to recover a ColdFusion server in case of disaster? What to > back up? The install folder, HKLM\SYSTEM\CurrentControlSet\Services\ and the IIS metabase. > How to reaply if brand new hardwar

Recovering a ColdFusion server.

2008-08-05 Thread Ian Skinner
Anybody know good resources, white papers, etc. that discuss any best practices to recover a ColdFusion server in case of disaster? What to back up? How to reaply if brand new hardware needs to be put into place? Our Director of Operations is looking for documentation to use in the organizati

RE: Multiple documents in a single

2008-08-05 Thread Dave Phillips
>"cfdocument site:livedocs.adobe.com/coldfusion/8/" And if you don't remember that syntax, just google: cfdocument 8 By adding the 8, it will generally get you the version 8 results (you can do the same for 7 usually, 6 & 6.1, sometimes and 5 rarely) :) Sincerely, Dave Phillips ~

RE: Single vs Cluster - Session Variables - session.cfid HELP

2008-08-05 Thread Dave Watts
> Why is it that I can get a I thought a session.cfid out of a > single server config, but not a cluster? > > From the code below, I get an error on a cluster configuration. > > Element CFID is undefined in SESSION. As others have already mentioned, session replication requires the use of J2EE

RE: cfeclipse firefox interface browser

2008-08-05 Thread Dave Watts
> we have tried to make the internal built in browser in > cfeclipse to firefox 3 but it doesnt change, it always uses > IE as the built in web browser. > > we have tried this by going to > > windows --> preference --> general --> web browser --> then > check firefox > > or > > windows --

RE: Multiple documents in a single

2008-08-05 Thread Dave Watts
> ahh serves me for not going directly to the cf8 > documentation. looks like google hasn't had a chance to > index the cf8 livedoc yet. just the old cf7 No, Google has in fact indexed the CF8 livedocs. However, as far as Google is concerned, all the Livedocs versions are equally relevant, a

RE: Using UDF's from within a CFC

2008-08-05 Thread Dave Watts
> In my application.cfc I'm setting the following: this.udfLIB > = createObject('component','cfc.udf').init(); > > > > Now for the questions > 1) the entire UDF library should be available in the > application scope, correct? Yes, after you make the change noted below. > 2) how do I acce

Re: RETS Implementation

2008-08-05 Thread Jake Pilgrim
As far as what I have done with the data, it isn't the best solution but it works... The biggest problem I encountered is a 1 minute page processing limit at HostMySite, so what I have done is wrote a script to go out and grab the data and write it out to a file, then I import it chunk by chunk

Re: RETS Implementation

2008-08-05 Thread Jake Pilgrim
I too would be interested in seeing your CFC. Is it available for download somewhere? > >Curious if anyone has done a RETS implementation with ColdFusion to > >download MLS listings? > > I have a CFC encapsulating all the necessary functions to interface to > RETS v1.5. I've also built it a

Re: Using UDF's from within a CFC

2008-08-05 Thread Alan Rother
Doing this this.udfLIB = createObject('component','cfc.udf').init(); Makes it available within your Application.cfc, but does not directly set it to an Application var. To set it as an Application scope var, you need to do one of the following: 1. this.udfLIB = createObject('component','cfc.udf

Using UDF's from within a CFC

2008-08-05 Thread sstwebworks
Hey all, I've got a question that I can't seem to find a straight answer for... Here's the scenario: I have an application that has cfincludes that call UDFs. It also calls function pages as includes. I've been given the task of refactoring this app, so that it makes all of the UDF and functio

Re: Multiple documents in a single

2008-08-05 Thread Raymond Camden
Err, isn't that exactly what I said? ;) On Tue, Aug 5, 2008 at 2:22 PM, Yuliang Ruan <[EMAIL PROTECTED]> wrote: >> ahh serves me for not going directly to the cf8 documentation. looks >> like google hasn't had a chance to index the cf8 livedoc yet. just >> the old cf7 > > for the record the tw

Re: Multiple documents in a single

2008-08-05 Thread Yuliang Ruan
> ahh serves me for not going directly to the cf8 documentation. looks > like google hasn't had a chance to index the cf8 livedoc yet. just > the old cf7 for the record the two scoped variables you need for this are: cfdocument.currentsectionpagenumber and cfdocument.totalsectionpagecount

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Jochem van Dieten
Torrent Girl wrote: > Interesting. So what is in C:\ColdFusion8\runtime\logs\*.out.log ? > > there is nothing there. Time to reinstall. Jochem ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release t

Re: CF8 and ASP.Net

2008-08-05 Thread Ryan J. Heldt
Duane- Well, if you have CF8 installed along with the .NET stuff, it should be as easy as: objHash = createObject(".net","MyNamespace.Hash","#expandPath("/path/to/dll/")#Hash.dll"); variables.HashedValue = objHash.hash("blah","sha256"); The thing that threw me at first was the MyNamespace thin

Re: Multiple documents in a single

2008-08-05 Thread Yuliang Ruan
ahh serves me for not going directly to the cf8 documentation. looks like google hasn't had a chance to index the cf8 livedoc yet. just the old cf7 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

Re: Java Book Recommendations?

2008-08-05 Thread Will Tomlinson
Thanks for all the help! I'll be buying one or more of what's suggested! Will ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;273

CF8 and ASP.Net

2008-08-05 Thread Duane Boudreau
Hey All, Where can I find some info on what is required to integrate CFML and .Net apps? Basically I have a bunch of precompiled .Net classes that I am going to need to access. Any suggestions on where I can start to look for more info. I looked at adobe but either I looked for the wrong thing or

Re: cfprocparam order

2008-08-05 Thread Brad Wood
Actually, there was a hotfix at one time for CF7 that also restored the cfprocparam order. It was never part of the updater 1 or 2 and didn't appear to be part of 8 either. And yes, if future versions of ColdFusion begin obeying dbvarnames, a lot of stuff will probably break if you did not kee

RE: Java Book Recommendations?

2008-08-05 Thread Eric Roberts
I forget the name of the book other than "Java" but the authors are Deitel and Deitel. That was the text I used and it was pretty good. I still see students using it today (newer versions of course) Eric /*-Original Message- /*From: Andy Matthews [mailto:[EMAIL PROTECTED] /*Sent: Tuesda

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Brad Wood
You might want to try re-installing CF. Is ColdFusion registered as a windows service? What output to the screen do you get when you try starting the service from the command line? C:\>net start "ColdFusion 8 Application Server" ~Brad - Original Message - From: "Dave Watts" <[EMAIL PR

RE: Java Book Recommendations?

2008-08-05 Thread Andy Matthews
I really like the book "The Object Oriented Thought Process". While it's not specifically a Java book, it does walk you through the concepts of true OO and when they have code examples, they use Java. Great book. Easy to understand, and the concepts are excellent. -Original Message- From

RE: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Dave Watts
> > Interesting. So what is in C:\ColdFusion8\runtime\logs\*.out.log ? > > there is nothing there. Do you have a C:\ColdFusion8 directory? If so, and you don't have the other directories Jochem mentioned, it looks like your CF install was incomplete, or some things were deleted after the inst

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Torrent Girl
Interesting. So what is in C:\ColdFusion8\runtime\logs\*.out.log ? there is nothing there. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.ne

Re: Java Book Recommendations?

2008-08-05 Thread Yves Arsenault
Hi Will... I kind of liked this one: http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764568744.html I haven't used Java since I should pick the book up again. Thanks, Yves Arsenault "Love is the only force capable of transforming an enemy into a friend". --Martin Luther King, Jr. On Tue

Re: Java Book Recommendations?

2008-08-05 Thread Charlie Griefer
head first java java for coldfusion developers, if you can find it. On Tue, Aug 5, 2008 at 10:25 AM, Will Tomlinson <[EMAIL PROTECTED]> wrote: > Gents, > > I've decided to pickup another language for my arsenal. I think it shall be > Java. > > Do you have a good book recommendation for me? Keep

Java Book Recommendations?

2008-08-05 Thread Will Tomlinson
Gents, I've decided to pickup another language for my arsenal. I think it shall be Java. Do you have a good book recommendation for me? Keep in mind, all I know is CF. I have absolutely NO Java experience, other than a little mixture of the OO coding style in CF. Thanks, Will ~

RE: Capturing the files that jrun requests

2008-08-05 Thread Dave Watts
> Does the windows filesystem have a concept of 'last accessed > time' for files like *nix has ? Yes. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicag

RE: cfprocparam order

2008-08-05 Thread Dave Watts
> So if and when it gets fixed, all the mismatched (typos) > variables will break?? I don't think this will be fixed. My understanding is that named notation isn't supported by JDBC. That said, I would recommend removal of the DBVARNAME attributes since you're not using them. Dave Watts, CTO, F

RE: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Dave Watts
> I ran netstat but I am not sure which one if CF. You can use the -o switch to display the process ID, which can then be looked up in Task Manager. In newer versions of netstat, you can use the -b switch to display the executable image name directly. Dave Watts, CTO, Fig Leaf Software http://www

RE: cfprocparam order

2008-08-05 Thread Tim Do
So if and when it gets fixed, all the mismatched (typos) variables will break?? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2008 10:15 AM To: CF-Talk Subject: RE: cfprocparam order > I've noticed this for a while but was curious to see if >

RE: Deleting Session on Browser Close

2008-08-05 Thread Dave Watts
> Most of you are probably familiar with the approach below to > delete a session on the closing of the browser. I have, > however, an environment where this is not working: > > Browsers: All IE 6+ > > O/S: Linux (Websphere flavor I believe) > > CF Ver: MX 6.1 (I know, I know - not my dec

RE: cfprocparam order

2008-08-05 Thread Dave Watts
> I've noticed this for a while but was curious to see if > anybody else has... the variable name doesn't matter when > calling a stored procedure, all that matters is the order of > the procparams. I thought this needed to match the stored > procedure's variable names. Is this a bug? No, it

cfprocparam order

2008-08-05 Thread Tim Do
I've noticed this for a while but was curious to see if anybody else has... the variable name doesn't matter when calling a stored procedure, all that matters is the order of the procparams. I thought this needed to match the stored procedure's variable names. Is this a bug? ~

Deleting Session on Browser Close

2008-08-05 Thread Dave Phillips
Hi all, Most of you are probably familiar with the approach below to delete a session on the closing of the browser. I have, however, an environment where this is not working: Browsers: All IE 6+ O/S: Linux (Websphere flavor I believe) CF Ver: MX 6.1 (I know, I know - not my decision

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Jochem van Dieten
Torrent Girl wrote: > C:\ColdFusion8\logs\ *HIS FOLDER DOES NOT EXIST > C:\ColdFusion8\runtime\logs\ *REMOVED THE FILES > C:\ColdFusion8\wwwroot\WEB-INF\cfclasses\ *This folder does not esist. Interesting. So what is in C:\ColdFusion8\runtime\logs\*.out.log ? Jochem ~

Re: Multiple documents in a single

2008-08-05 Thread Raymond Camden
Yes. Check the docs on cfdocument. It defines both a cfdocument.totalsectionpagecount and cfdocument.currentsectionpagenumber. On Tue, Aug 5, 2008 at 11:17 AM, Yuliang Ruan <[EMAIL PROTECTED]> wrote: > I'm trying to consolidate multiple documents into a single cfdocument. Just > so that the user

CFMAIL and base64 encoded credentials

2008-08-05 Thread Brad Braun
Any pointers on using CFMAIL with encoded credentials? The encoded credentials allow a telnet connection, but when I try them in the CFMAIl tag I get: "Error","scheduler-4","08/05/08","11:19:17",,"Authentication Failed" in the mail.log. ~

Re: Coldfusion report builder

2008-08-05 Thread Torrent Girl
Tom i am still having no luck. I am connecting to a development server. Let's say the url is http://devName/. Do I put devName as the host name? > On Monday 04 Aug 2008, Torrent Girl wrote: > > 1. hostname > > The name of the machine (in DNS or WINS). The same thing that goes > after '

cfdocument and eps graphics

2008-08-05 Thread Matthew VanderMeer
I am just curious about the possibility of using a vector graphics format like eps in my cfdocument reports. I am thinking the quick answer here is "Not possible" but I wanted to post this question to see if anyone else has a way to use high quality graphics in a dynamically generated pdf repor

Multiple documents in a single

2008-08-05 Thread Yuliang Ruan
I'm trying to consolidate multiple documents into a single cfdocument. Just so that the user doesn't have to open 5 windows and hit print in 5 windows. I see that I can cfdocument and seperate each of the 5 documents into their own cfdocumentsection. However, the cfdocument.currentpagenumbe

SOLVED: CF8 and cfgrid

2008-08-05 Thread Ian Skinner
For anybody who stumbles across this thread searching for a similar problem. Two separate problems combined to make a very confusing issue. One -- The client of the first person who reported the problem had an outdated Java browser plug-in. Once they updated their JRE they got the grid applets

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Torrent Girl
Jochem, I attempt your suggestions: Presuming a default installation, can you shut down CF and remove all the files from the following directories: C:\ColdFusion8\logs\ C:\ColdFusion8\runtime\logs\ C:\ColdFusion8\wwwroot\WEB-INF\cfclasses\ Here are my results: C:\ColdFusion8\logs\ *HIS FOLD

Re: Query of Queries

2008-08-05 Thread Brad Wood
Did you check the logs to see if there were any errors starting ColdFusion when QofQ's stopped working? (Not the run-time error, but an actual startup one) ~Brad - Original Message - From: "heath stein" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, August 05, 2008 9:21 AM Subject:

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Torrent Girl
> 2) Run IPConfig from the command line. Find out what the IP address is > for the machine that you're installing on, and use that IP instead of > 127.0.0.1 Tried using my own IP, doesn't work. > 3) Run netstat from the command line and find out what port ColdFusion > is actually running on.

Re: SOT: Forms Generator

2008-08-05 Thread Charlie Griefer
haven't used it myself, but you might want to look at squidhead: http://squidhead.riaforge.org/ reactor also does scaffolding... http://www.alagad.com/go/products-and-projects/reactor-for-coldfusion On Tue, Aug 5, 2008 at 8:18 AM, Dave Phillips < [EMAIL PROTECTED]> wrote: > Anyone know of a qui

Re: (ot) Flex mailing list

2008-08-05 Thread Brad Wood
http://www.houseoffusion.com/groups/flex/ - Original Message - From: "Adrian Lynch" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, August 05, 2008 4:20 AM Subject: (ot) Flex mailing list > Where are people going for a Flex mailing list? I've just signed up to the > Flex Coders on Goo

Re: SOT: Forms Generator

2008-08-05 Thread Tom Chiverton
On Tuesday 05 Aug 2008, Dave Phillips wrote: > Anyone know of a quick way to generate some forms for several database > tables? Illudium (http://code.google.com/p/cfcgenerator/) could do it. -- Tom Chiverton This email is sent for and on beh

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Jochem van Dieten
Torrent Girl wrote: > I followed the directions at the following link: > http://www.adobe.com/devnet/dreamweaver/articles/setup_coldfusion_03.html > when I try to acces the cf administrator, I get the following message > The website cannot display the page > HTTP 500 > Here is the link I am b

SOT: Forms Generator

2008-08-05 Thread Dave Phillips
Anyone know of a quick way to generate some forms for several database tables? I'm using oracle, but that's not even a requirement at this point. Just looking for something to start with to save me some time. Preferably something "Open". Thanks! Sincerely, Dave Phillips ~

Re: Query of Queries

2008-08-05 Thread Claude Schneegans
>>I am afraid your right we might have to do a re-install. If restarting CF fails, and BEFORE reinstalling CF, one could try to restart the server. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send

Re: Query of Queries

2008-08-05 Thread Yuliang Ruan
cross fingers and start preparing reinstall plan heh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://w

Re: RETS Implementation

2008-08-05 Thread Justin Scott
> I have a CFC encapsulating all the necessary functions > to interface to RETS v1.5. I've also built it around > CFX_HTTP5 which is much faster and more robust than the > CFHTTP tag. What does it do with the data once downloaded? Is this code available in some form? -Justin

Re: Query of Queries

2008-08-05 Thread heath stein
Query of Queries working again I did one more restart before I was going to do a re-install and Query of Queries magically started working again. Jrun must have not been starting a process or something. Heath ~| Adobe® ColdF

Re: Query of Queries

2008-08-05 Thread heath stein
Thanks Dave, I am afraid your right we might have to do a re-install. Thanks Heath ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;2037489

Re: Query of Queries

2008-08-05 Thread Yuliang Ruan
good thing it's the development server :) what if you just try: select 1 as id no datasources involved. no sql involved. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

RE: Query of Queries

2008-08-05 Thread Dave Phillips
Yikes! Have you tried it with a different datasource? I can't imagine it is something with the way the database is returning the records, or even the driver for that matter, however, just to eliminate other possibilities. I'd try it with a different datasource (of the same type) and then if you

Re: Query of Queries

2008-08-05 Thread heath stein
Thanks Dave, I actually did this out side of the current app, on a new table and got the same error. Heath Stein ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://

RE: Query of Queries

2008-08-05 Thread Dave Phillips
Heath, Can you run the following in a test.cfm file on your server (OUTSIDE OF YOUR EXISTING APP): SELECT ID FROM WHATEVER (just use a simple query here) SELECT ID FROM qTest Just trying to narrow down the issue. Sincerely, Dave Phillips -Original Message- From: heath stein [m

Re: securing pdf's?

2008-08-05 Thread Claude Schneegans
>>Serve the docs using cfcontent and secure the folder from direct access using your webserver. and if you can't create a secure folder, rename your files to .cfm, store them in a special folder, add some Application.cfm that will prevent direct access, and restore the original file name whe

Re: RETS Implementation

2008-08-05 Thread Paul Cormier
>Curious if anyone has done a RETS implementation with ColdFusion to >download MLS listings? I have a CFC encapsulating all the necessary functions to interface to RETS v1.5. I've also built it around CFX_HTTP5 which is much faster and more robust than the CFHTTP tag. Paul Cormier

Re: Query of Queries

2008-08-05 Thread heath stein
Acctuly none of the tables have changed at all. Also every query that was using query of queries stoped working. Below is the error. java.sql.SQLException: String index out of range: 17 at coldfusion.sql.JdbcImpl.getConnection(JdbcImpl.java:73) at coldfusion.sql.JdbcImpl.getConnec

RE: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Dave Phillips
Tgirl, I also just thought to ask are you on a VPN? When I'm on my VPN, I cannot access localhost as they have it locked down. I have to disconnect from VPN for it to work OR use my IP address as Scott is recommending below in #2. Dave -Original Message- From: [EMAIL PROTECTED] [mailto

Re: (ot) Flex mailing list

2008-08-05 Thread Greg Morphis
flexcoders yahoo group... high traffic On Tue, Aug 5, 2008 at 4:25 AM, Will Swain <[EMAIL PROTECTED]> wrote: > There's the House of Fusion one of course. Not very high traffic though. > > > -Original Message- > From: Adrian Lynch [mailto:[EMAIL PROTECTED] > Sent: 05 August 2008 10:21 > To:

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread sstwebworks
No you don't. It should work with the built in webserver for development. You can try a couple of things 1) http://127.0.0.1:8500/cfide/administrator/index.cfm 2) Run IPConfig from the command line. Find out what the IP address is for the machine that you're installing on, and use that IP instea

RE: When is a struct not a struct ?

2008-08-05 Thread Dave Phillips
>>Hmm, so how can I reliably tell I'm holding a struct and not a CFC ? >>isStruct() and not isObject() ? I think you can tell when you are holding a struct and not a CFC like this: this is a struct this is an Object Since isObject() will only return true if it is an object, if you che

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Torrent Girl
> I changed the port to 8300 and it still doesn't work Did you restart service after changing the port? _No I didn't. I'll try that. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date G

Re: Installation of CF 8 (developer edition) is not working

2008-08-05 Thread Torrent Girl
> Not if you're using the built in cf webserver (note: It's for > development only, the built in webserver is no where near robust > enough for production) I am actually setting up locally to try to get reportbuilder to work. Do I need IIS enabled for CF to work properly? ~~~

RE: securing pdf's?

2008-08-05 Thread Bobby Hartsfield
Like everyone has said... use cfcontent/cfheader to download the files. This will also allow you to move the PDFs outside of your webroot since you no longer need direct URLs to the files. Moving the files will keep people from stumbling onto them and downloading them directly. So on your download

Re: Capturing the files that jrun requests

2008-08-05 Thread Tom Chiverton
On Tuesday 05 Aug 2008, graham bates wrote: > Because that displays what IIS serves. I need to get at the Cold Fusion > level, eg for example application.cfc would not show up in IIS logs. Well, that file is a given, but I can see your point. Does the windows filesystem have a concept of 'last acc

Re: Capturing the files that jrun requests

2008-08-05 Thread Jochem van Dieten
graham bates wrote: > Our CF code base seems to have grown and mutated over the years and there are > many files in there which are no longer used. However unless an extremely > intensive Edit-> Find Next operation is carried out, it can be difficult to > work out which files are still in use on

Re: Capturing the files that jrun requests

2008-08-05 Thread graham bates
Because that displays what IIS serves. I need to get at the Cold Fusion level, eg for example application.cfc would not show up in IIS logs. > On Tuesday 05 Aug 2008, graham bates wrote: > > I have a preliminary solution to find this out. It involves using > Windows > > Auditing (security men

Re: Capturing the files that jrun requests

2008-08-05 Thread Tom Chiverton
On Tuesday 05 Aug 2008, graham bates wrote: > I have a preliminary solution to find this out. It involves using Windows > Auditing (security menu in windows) to log which cfc/cfm files are > accessed. Why can't you use the web servers access logs ? -- Tom Chiverton *

Re: When is a struct not a struct ?

2008-08-05 Thread Tom Chiverton
On Monday 04 Aug 2008, Brian Kotek wrote: > CFCs can also be treated as structures for most purposes. > StructKeyExists(), StructKeyList(), etc. will all work on a CFC instance. Hmm, so how can I reliably tell I'm holding a struct and not a CFC ? isStruct() and not isObject() ? -- Tom Chiverton

Capturing the files that jrun requests

2008-08-05 Thread graham bates
Our CF code base seems to have grown and mutated over the years and there are many files in there which are no longer used. However unless an extremely intensive Edit-> Find Next operation is carried out, it can be difficult to work out which files are still in use on production and which are no

RE: (ot) Flex mailing list

2008-08-05 Thread Will Swain
There's the House of Fusion one of course. Not very high traffic though. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 05 August 2008 10:21 To: CF-Talk Subject: (ot) Flex mailing list Where are people going for a Flex mailing list? I've just signed up to the Fle

(ot) Flex mailing list

2008-08-05 Thread Adrian Lynch
Where are people going for a Flex mailing list? I've just signed up to the Flex Coders on Google Groups, are there any others? Adrian Lynch ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date G

RE: Query of Queries

2008-08-05 Thread Adrian Lynch
Have any of the tables changed? Could be that if you're using cfqueryparam on the original queries and the tables have changed, there might be a column mis-match. Adrian -Original Message- From: heath stein [mailto:[EMAIL PROTECTED] Sent: 05 August 2008 04:41 To: CF-Talk Subject: Query of