verity spider

2006-10-04 Thread George Lu
Currently I'm using K2 server to index and search our intranet. Indexing and searching is very slow and it is not working with dynamic content such as .cfm. I've found very limited documentation using Google. Anyway, I've managed to create and index a collection using vspider. e.g. Vspider

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread John C. Bland II
lol Ben, Michael D., and Aaron. :-) On 10/3/06, James Holmes [EMAIL PROTECTED] wrote: We are just now upgrading to CF7, which should give you a rough answer... On 10/4/06, John C. Bland II [EMAIL PROTECTED] wrote: How soon, after release of CF 8, will you upgrade to CF 8? Note: This is

Re: CFC question

2006-10-04 Thread Robertson-Ravo, Neil (RX)
And the rest of them :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for

Re: CFIF Statement

2006-10-04 Thread Denny Valliant
On 10/3/06, Dave Watts [EMAIL PROTECTED] wrote: ... I don't think it matters that much one way or the other. I simply think we should be more careful about how we define best practices generally. Nothing /really/ matters. In the long run. ;-) I would think that best practice depends on how

Re: CF 8 Upgrade Cycle: What''s yours?

2006-10-04 Thread Jochem van Dieten
John C. Bland II wrote: How soon, after release of CF 8, will you upgrade to CF 8? We will hook CF 8 into our build system long before it is officially released and then it will be part of our nightly build and test cycle. When it will move to production is customer driven: as soon as they

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 04:52, John C. Bland II wrote: How soon, after release of CF 8, will you upgrade to CF 8? Unless there is some magic wiz-bang with no changes to CF7 code required (like, say, Apollo integration), not until 8.1. CF is core to many business operations here, so we

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 06:58, Aaron Rouse wrote: not stop me from testing out CF7 as soon as MACR made it available to me, Ahh, testing is different - if I get on the beta program again, I'll be running 8 soon as :-) -- Tom Chiverton Helping to administratively build network

Re: Bounce Management

2006-10-04 Thread George Owns
Well, ok, that Boogie Bounce thingy might be good. My problem is, that it's not for free (huge problem). Doesn't anybody know such a thing for free? Answers would be really appreciated. Thank you! Nick Tong - TalkWebSolutions.co.uk [EMAIL PROTECTED] schrieb: George, Take a look at the boogie

RE: Interesting new MSSQL problem.

2006-10-04 Thread James Smith
Select top 5 field1, field2 From (select distinct t1.Field1, t2.Field2 from t1 join t2 on (some id's)) Order by newID() I have been off work ill for a few days and on my return this looked like a great solution. Unfortunately I am getting some issues... The actual query in question

RE: Interesting new MSSQL problem.

2006-10-04 Thread James Smith
Never mind, the subquery needed a table name so changing it to Select top 5 field1, field2 From (select distinct t1.Field1, t2.Field2 from t1 join t2 on (some id's)) x Order by newID() (note the extra 'x' as a table alias) Fixed it. Select top 5 field1, field2 From (select distinct

Re: Subversion and Subclipse

2006-10-04 Thread Stephen Barton
Stephen Barton wrote: Windows XP Eclipse 3.2.0 Subversion (installed using the SVN1ClickSetUp), But when I go to add a SVN Repository from inside Eclipse (using the SVN Repository View), using the URL: http://127.0.0.1:8500/sandbox/ I get the following error: Unable to

Re: Bounce Management

2006-10-04 Thread Paul Stewart
Try Ben Forta's book on regular expressions. If you are reasonably experienced in CF you should be able to build your own system after reading it. http://www.forta.com/books/0672325667/ George Owns wrote: Well, ok, that Boogie Bounce thingy might be good. My problem is, that it's not for

Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Smith
I am running the following query... SELECT DISTINCT gd.GenreDisplayName, gd.GenreDisplayID FROM ProductData.dbo.t_PI_GenresDisplay gd JOIN ProductData.dbo.t_PI_L_GenresGenresDisplay lggd ON (gd.GenreDisplayID = lggd.GenreDisplayID) JOIN

The beginnings -- YahooAPI for BBAuth and YahooPhotos (resend)

2006-10-04 Thread Dov Katz
I quickly built the beginnings of a CF wrapper around the new Yahoo Auth API and barely started the same for the Yahoo Photos API. http://developer.yahoo.com/auth/ http://developer.yahoo.com/photos/ Here's what I wrote. It can auth you and sets up the request for ListAlbums but it

Re: verity spider

2006-10-04 Thread Gareth Hughes
From the verity people: --- Error -1705 = Node is offline. You get this error when the K2 server and collection is not online. --- If the collection has been successsfully created and registered you might try restarting Verity to see if that clears the error. Have you tried using cfindex

Error handling and dumping vars into an email not using CFOBJECT

2006-10-04 Thread Tom King
Dear All, I'm using the following script to dump the various scopes which exist into an email as a form of error handling. However, my shared host has locked down CFOBJECT, so this doesn't work unless I remove some of the structs being dumped. The Script in application.cfc: cffunction

RE: The beginnings -- YahooAPI for BBAuth and YahooPhotos

2006-10-04 Thread Rick Faircloth
I went over to the http://developer.yahoo.com/photos/ page just to have a look at what it was all about and couldn't help noticed that there are the following Developer Central menu items: JavaScript Developer Center ..NET Developer Center Flash Developer Center PHP Developer Center Python

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Cutter (CFRelated)
I'm not a SQL expert, by any means, but wouldn't it run faster if you optimized your 'JOIN's a little bit? Seems like you're leaving it up to SQL, right now, to determine on the fly whether you need an INNER, OUTER, LEFT or RIGHT JOIN? You know your data structure, so you should be able to

Re: The beginnings -- YahooAPI for BBAuth and YahooPhotos

2006-10-04 Thread Peter Boughton
My guess is that nobody has specifically asked for one yet? Check the lsat question of the FAQ though - at least they are aware that CF exists. I went over to the http://developer.yahoo.com/photos/ page just to have a look at what it was all about and couldn't help noticed that there are the

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Smith
I'm not a SQL expert, by any means, but wouldn't it run faster if you optimized your 'JOIN's a little bit? Seems like you're leaving it up to SQL, right now, to determine on the fly whether you need an INNER, OUTER, LEFT or RIGHT JOIN? You know your data structure, so you should be able

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Dave Watts
If I remove the DISTINCT constraint it returns 2732 rows in under a second. How can it posibly take so long to remove the duplicates? This kind of operation is almost always significantly slower. Your query can take advantage of indexes, but DISTINCT requires an examination of individual

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Smith
What makes this silly is that if I run the query without the DISTINCT it takes a fraction of a second to return a couple of thousand rows. I can then do a... cfquery name=getGenres dbtype=query SELECT DISTINCT GenreDisplayName,GenreDisplayID FROM getGenres /cfquery In CF and that takes about a

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Snake
OK perhaps I got lost in the thread then, you and Dave were giving it some there. What exactly are you saying that can be done ? Russ -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: 04 October 2006 00:50 To: CF-Talk Subject: RE: Break it down for n00bs:

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Snake
Well you could always use the ploy that is being used with spoofed bank sites. User thinks they are going yo www.barclaysbank.co.uk But your really sending them to www.barclayswank.co.uk which has a valid SSL, so nothing looks amis. Russ -Original Message- From: Dave Watts

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Ben Forta
Have you tried defining an index on GenreDisplayName? --- Ben -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 7:08 AM To: CF-Talk Subject: RE: Another MSSQL issue, why is DISTINCT so slow? What makes this silly is that if I run the

Re: Subversion and Subclipse

2006-10-04 Thread Denny Valliant
On 10/4/06, Stephen Barton [EMAIL PROTECTED] wrote: ... Error validating location: org.tigris.subversion.javahl.ClientException: Network connection closed unexpectedly svn: Connection Closed Unexpectedly after a long wait. Sounds like svnserve wasn't running. Generally, a long wait when

Re: CFIF statement in query

2006-10-04 Thread Jim Wright
Aaron Rouse wrote: He wants it when the ucDescription contains that value and is not just equal to it or was that a typo in his CFIF? The case when then method may not work depending on what DB he is using and the version of it. Use a CASE statement in your SQL... cfquery

CFHTTP Authentication

2006-10-04 Thread Rob Wilkerson
This is probably a simply yes/no question for those of you that are more knowledgable of web server authentication schemes, but if you could help me understand I'd appreciate it. I'm trying to retrieve an RSS feed from an Apache web server. The feed is secured by htdigest authentication. My

Re: Bounce Management

2006-10-04 Thread George Owns
Well, this is a very good solution, I think. But I don't develop this mailing system just for fun. I have to do it for the company I'm working at. It will be used not just by my company but by many of our customers. So this bounce management solution must be reliable and stable. And I need a

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Doug Brown
It is really easy for CF using QoQ, since the heavy lifting was already done by sql. The results of your first query was already there for CF to play with, and it did not have to go back to sql for more results. Anyway, that is why is is faster for CF sometimes. - Original Message -

Re: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Denny Valliant
On 10/4/06, Snake [EMAIL PROTECTED] wrote: Well you could always use the ploy that is being used with spoofed bank sites. User thinks they are going yo www.barclaysbank.co.uk But your really sending them to www.barclayswank.co.uk which has a valid SSL, so nothing looks amis. Russ I think

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Jochem van Dieten
James Smith wrote: SELECT DISTINCT gd.GenreDisplayName, gd.GenreDisplayID FROM ProductData.dbo.t_PI_GenresDisplay gd JOIN ProductData.dbo.t_PI_L_GenresGenresDisplay lggd ON (gd.GenreDisplayID = lggd.GenreDisplayID) JOIN ProductData.dbo.t_PI_Genres

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Dave Watts
Well you could always use the ploy that is being used with spoofed bank sites. User thinks they are going yo www.barclaysbank.co.uk But your really sending them to www.barclayswank.co.uk which has a valid SSL, so nothing looks amis. Yes, that'll certainly work. And I enjoyed your example

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Denny Valliant
On 10/4/06, James Smith [EMAIL PROTECTED] wrote: In CF and that takes about a second, so why is it taking 1:15 for MSSQL do do it in one operation? Theoretically, that's what query analizers are for. Shooting from the hip, I'll second the index suggestion. Shooting from the head, I'll second

Re: CFHTTP Authentication

2006-10-04 Thread Jochem van Dieten
Rob Wilkerson wrote: I'm trying to retrieve an RSS feed from an Apache web server. The feed is secured by htdigest authentication. My CFHTTP call is failing even with the username and password I'm passing (which are correct). In reading the docs, I can see that this method of using cfhttp

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 12:05, Dave Watts wrote: If I remove the DISTINCT constraint it returns 2732 rows in under a second. How can it posibly take so long to remove the duplicates? This kind of operation is almost always significantly slower. Your query can take advantage of

Re: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Tom Chiverton
On Tuesday 03 October 2006 23:00, Bobby Hartsfield wrote: The only thing left to give you away would be the actual IP address. If someone saw that... say... supersecureremotesite.com was a 10.10.10.10 or 192.168 address (and knew what they were looking at) they might get a You could get around

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
Yes the word router has a specific meaning and this IS it. When you actually accomplish a simple mitm, let me know which one you think it is then. You take over for the gateway/router to 'outside' of the network that you are on and ROUTE traffic in it's place. If that's not a router I don’t know

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
What exactly are you saying that can be done? You're kidding me right? -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.407 / Virus Database: 268.12.12/462 - Release Date: 10/3/2006 ~|

RE: CFIF Statement

2006-10-04 Thread Bobby Hartsfield
HA! Maybe it was a bad install too so how can we check for the existance of cfif? h -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 11:16 PM To: CF-Talk Subject: Re: CFIF Statement Are you insane? I am just supposed to assume that

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Jim Wright
James Smith wrote: In CF and that takes about a second, so why is it taking 1:15 for MSSQL do do it in one operation? One thing to keep in mind is that the SQL you write and send to SQL Server is being interpreted by their query optimization code...which is written by humans and

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-04 Thread Matthew Lesko
Going to try Dan's suggestion. If that still doesn't work I will post some code. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

FlashPaper vs PDF

2006-10-04 Thread RichL
I've got to provide a downloadable and printable form to fill in. I am wondering which route to go down between flashpaper and pdf. Is there any generally accepted preference about at the moment? Are there any known stats for percent users with Adobe Reader vs MacrAdobe Flash installed ? From

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Dave Watts
Does MSSQL not support unique indexes ? Yes, it does. However, it's unlikely that a unique index covers all the fields used by the query in this case, I think. I didn't read the original query too closely - I'm checking mail using a portable device - but it appears that the two columns are a

Re: CFIF Statement

2006-10-04 Thread Aaron Rouse
Oh, I am sure with a little Java we could somehow check for existance of CF tags which brings up a good point, what if some rogue developer somehow removed tags from the language ;) On 10/4/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: HA! Maybe it was a bad install too so how can we check for

Re: FlashPaper vs PDF

2006-10-04 Thread Robertson-Ravo, Neil (RX)
I would say that I have barely ever come across or used a Flashpaper doc (in its swf guise). Stick with PDF and geneate it before hand and provide a link to download and fill in. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United

Re: CFIF statement in query

2006-10-04 Thread Aaron Rouse
I know it has broad support but just felt that disclaimer should be put in since never know what someone is using on here. I'd never put it past a single person to be using Access for example but heck they could even be using an old FoxPro system just never do know. My primary point though was

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Smith
Have you tried defining an index on GenreDisplayName? --- Ben That was the first thing I tried, no improvement. -- Jay ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Re: FlashPaper vs PDF

2006-10-04 Thread Peter Boughton
Is there a reason you can't give the choice to the user? Just have a pair of icons and let them choose the one they want. I've got to provide a downloadable and printable form to fill in. I am wondering which route to go down between flashpaper and pdf. Is there any generally accepted

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Aaron Rouse
My idea of testing is loading it up on a box that is not mission critical ;) On 10/4/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 04 October 2006 06:58, Aaron Rouse wrote: not stop me from testing out CF7 as soon as MACR made it available to me, Ahh, testing is different - if I

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Dave Watts
Yes the word router has a specific meaning and this IS it. No, it isn't. When you actually accomplish a simple mitm, let me know which one you think it is then. I sincerely doubt that I will ever accomplish a real attack, since I would have to be either a pen tester or a trespasser to do

Re: Quicky question re: cfdocument and fonts

2006-10-04 Thread Peter Boughton
What about if you try using span style=font: Whatever;../span ? Howdy -- I'm making my first use of cfdocument (no jokes about being behind the times, please -- I've been busy with other things), and it seems that no matter what I specify in the font tag inside the cfdocument, the

Re: FlashPaper vs PDF

2006-10-04 Thread RichL
It is a good point and one that should be considered I think but if I as a developer don't really know the merits of either this makes me feel that it could potentially open the way for a bit of confusion for the user? some of them may not know what flashpaper is and without some explanatory text

Re: OT: CFEclipse Installation Woes

2006-10-04 Thread Trey Rouse
On 10/3/06, Justin Holzer [EMAIL PROTECTED] wrote: I had a similar problem with Eclipse a while back. For me, I had the Oracle 9i client tools installed, which comes packaged with JRE 1.3, and even though I had the JDK 1.5 directory in my path, the directory for 1.3 was in my path before

RE: FlashPaper vs PDF

2006-10-04 Thread Dave Watts
I've got to provide a downloadable and printable form to fill in. I am wondering which route to go down between flashpaper and pdf. Is there any generally accepted preference about at the moment? I think PDF is much more common for this kind of thing. Are there any known stats for

Re: FlashPaper vs PDF

2006-10-04 Thread Peter Boughton
Depends who your average users are, but yeah, it's certainly nice to be able to know the differences so you can write a short explanation. Unfortunately I don't know enough to fairly compare them, but the overview pages are probably good places to start with:

cfinvoke throwing jsp compiler error

2006-10-04 Thread Les Mizzell
Tested locally this works great: cfinvoke webservice=http://www.myURL.com/components/myCFC?wsdl; method=getEMPLOYEES returnvariable=getSTAFF When put out to the host, I get: coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler:

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
I sincerely doubt that I will ever accomplish a real attack, since I would have to be either a pen tester or a trespasser to do so sarcasm Yeah, because you know... those are the only 2 reasons that anyone would try any such thing... /sarcasm Routing is not routing Uhh... ok... is it

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Jacob
Same here. I will play with it on a test server. But will not go into production for a few months. Usually when the first hotfix comes out. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 10:18 PM To: CF-Talk Subject: Re: CF 8 Upgrade

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Tony
dive right in!!! why not. makes for a fun time :) jk of course. laptop dev server, test all apps, backup webserver test again, if all goes well, go live from there! On 10/4/06, Jacob [EMAIL PROTECTED] wrote: Same here. I will play with it on a test server. But will not go into production

Re: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 13:49, Bobby Hartsfield wrote: Yes the word router has a specific meaning and this IS it. When you actually accomplish a simple mitm, let me know which one you think it is then. Are you (trying to) claim that proxies like Squid are routers ? -- Tom Chiverton

Re: FlashPaper vs PDF

2006-10-04 Thread Casey Dougall
Is there any generally accepted preference about at the moment? Outside of the amount of people who have one of these two installed programs, my main gripe with flashpaper is you can't print using File Print I recomend pdf if the main pourpuse is to print the document. I recomend FlashPaper

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 14:50, Tony wrote: laptop dev server, test all apps, backup webserver test again, if all goes well, go live from there! .. get hit by an obscure bug that has a simple work around, once someone else has spent a week of late nights on it :-) -- Tom Chiverton

Re: Break it down for n00bs: security problems of non-SSL intranet?

2006-10-04 Thread Tom Chiverton
On Monday 02 October 2006 20:02, Bobby Hartsfield wrote: VPN is your friend. :-) Typically, a VPN isn't any more reliable from a security PoV than SSL, and most of the time is overkill anyway. -- Tom Chiverton Helping to completely grow market-driven environments

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
I'm not the one who brought up proxies. And there is no need for squid (or the like) in a common mitm. So no? I'm not? Even remotely? -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 9:52 AM To: CF-Talk Subject: Re: Break it down for

RE: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread Andy Matthews
Have you indexed the GenreDisplayName column? That should make a huge difference in query times. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message-

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Andy Matthews
Is it expected to be released that soon that we're talking about it already? Senor Forta? Can you provide any input on when it might be ready for beta? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Andy Allan
No .. it's in Alpha just now so sometime after 2006 ;) On 04/10/06, Andy Matthews [EMAIL PROTECTED] wrote: Is it expected to be released that soon that we're talking about it already? Senor Forta? Can you provide any input on when it might be ready for beta? !//-- andy

Re: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 15:19, Bobby Hartsfield wrote: I'm not the one who brought up proxies. And there is no need for squid (or the like) in a common mitm. So no? I'm not? Even remotely? Right. So what are you claiming ? -- Tom Chiverton Helping to collaboratively engineer cross-media

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Mc
Try this: SELECT DISTINCT gd.GenreDisplayName, gd.GenreDisplayID FROMProductData.dbo.t_PI_GenresDisplay gd JOINProductData.dbo.t_PI_L_GenresGenresDisplay lggd ON gd.GenreDisplayID = lggd.GenreDisplayID JOINProductData.dbo.t_PI_Genres g ON

Re: Another MSSQL issue, why is DISTINCT so slow?

2006-10-04 Thread James Mc
Sorry about that. Try this SELECT gd.GenreDisplayName, gd.GenreDisplayID FROMProductData.dbo.t_PI_GenresDisplay gd JOINProductData.dbo.t_PI_L_GenresGenresDisplay lggd ON gd.GenreDisplayID = lggd.GenreDisplayID JOINProductData.dbo.t_PI_Genres g ON

Re: CFC question

2006-10-04 Thread Mike H
If this change is made just make sure and var myReturnVar first. On 10/3/06, Alan Rother [EMAIL PROTECTED] wrote: ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information

Re: CFC question

2006-10-04 Thread Mike H
Thanks, All. I wanted to make sure I was on the right track... Seems like this is a way to do it. I would suggest, without tetsing it... that instead of doing this cfif getTestCount() lt 2 cfreturn TRUE / cfelse cfreturn FALSE / /cfif Do this... cfif getTestCount() lt 2 cfset

RE: Break it down for n00bs: security problems of non-SSL intranet?

2006-10-04 Thread Bobby Hartsfield
You are right... sort of. VPN and SSL aren’t the same thing at all so it's a bad comparison. I wasn't comparing the two or saying use one OVER the other. I did just sort of throw that in there though so sorry for not clarifying. Using VPNs on the local network (and to tunnel to offsite machines

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
That in a mitm, you route traffic in place of the router and that makes you NOT a proxy but more so a router? It doesn’t much matter it was a stupid argument and I shouldn't have bit... You aren't TECHNIALLY either so who cares. -Original Message- From: Tom Chiverton [mailto:[EMAIL

Re: FlashPaper vs PDF

2006-10-04 Thread Paul Hastings
Dave Watts wrote: I think PDF is much more common for this kind of thing. depends. i once had to stitch together an app that would do some geographic calculations for some folks surveying in the boonies. they used this as they moved around, in whatever small town internet cafe they could find

RE: CFIF Statement

2006-10-04 Thread Bobby Hartsfield
LOL! Good stuff. But said Rogue developer may have sabotaged the java installation as well... We may have to take a risk and just stick with the other 7 ways of validating whether or not qry.record is 0 or something other than... -Original Message- From: Aaron Rouse [mailto:[EMAIL

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Andy Matthews
Ah...okay. I'm hoping that with the merger of Macr and Adobe, there'll be some good image manipulation built right into CF. We're talking about upgrading to CF7 soon, but it's been months since our boss said that. I wonder if it would be worth waiting until CF8 comes out.

RE: FlashPaper vs PDF

2006-10-04 Thread Brad Wood
I've figured Adobe will consolidate their technologies and make a flash-based PDF viewer. That would be handy. Anyone know if that will ever happen? ~Brad they very often found no readers in the cafes the owner's usually weren't keen on installing it. but they found flash everywhere.

RE: FlashPaper vs PDF

2006-10-04 Thread Ian Skinner
I've figured Adobe will consolidate their technologies and make a flash-based PDF viewer. That would be handy. Anyone know if that will ever happen? ~Brad According to Ben Forta last Wednesday, SOON! PDF, Flash, Flash Paper, Flex and HTML and will work on and off line. -- Ian

Re: Quick! Gimme a hotel reservation system...

2006-10-04 Thread Jeff Small
Oh, it's not a quick decision, I just need *several* to go thru before we give the client the option. We just didn't wanna have only one or two that we've looked at, and I wanted specifically to ask out there about any CF-Friendly ones. -- Jeff Small LHWH Advertising Myrtle Beach, SC 29577

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 16:35, Andy Matthews wrote: We're talking about upgrading to CF7 soon, but it's been months since our boss said that. I wonder if it would be worth waiting until CF8 comes out. How are you gonna upgrade it without waiting ?!? -- Tom Chiverton Helping to

Re: Placing a pointer in cfchart

2006-10-04 Thread Richard White
lol, thanks james is it that easy? thanks ill give it a go :) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a

Re: CFIF Statement

2006-10-04 Thread Aaron Rouse
I am so glad that we can successfully over validate things in this great language. On 10/4/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: LOL! Good stuff. But said Rogue developer may have sabotaged the java installation as well... We may have to take a risk and just stick with the other 7

Re: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 16:12, Bobby Hartsfield wrote: That in a mitm, you route traffic in place of the router and that makes you NOT a proxy but more so a router? A router takes packets from one network, and passes them to another, possibly rewriting the headers on the way. A router

Re: Break it down for n00bs: security problems of non-SSL intranet?

2006-10-04 Thread Tom Chiverton
On Wednesday 04 October 2006 16:09, Bobby Hartsfield wrote: bruteforce of the complete login criteria. So yeah, you are right in that it may not be very reliable. But I wouldn't call it overkill since it's more reliable than say... nothing. Well, it's always a trade off :-) When I'm on public

RE: FlashPaper vs PDF

2006-10-04 Thread Kevin Aebig
Flash has limited string manipulation strengths and even less for encoded data. I think it would be quite a stretch to pull all the features from one plugin into another without a lot of bloat. PDF plugin 10 MB Flash plugin 1 MB Cheers, !k -Original Message- From: Brad Wood

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Andy Matthews
I meant upgrade straight from 6 to 8 instead of going to 7. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Tom Chiverton [mailto:[EMAIL

Re: CF 8 Upgrade Cycle: What''s yours?

2006-10-04 Thread Ali Awan
We are only now talking about upgrading to MX7 from CF 5. Once our codebase is stable and the necessary conversions have been implemented after the upgrade, we will have to determine how cost-effective the upgrade to CF 8 will be. Basically, I have to be able to sell CF 8 to my bosses. If the

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Ben Forta
Mid-2007 is what we've said publicly. -- Ben -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 10:22 AM To: CF-Talk Subject: RE: CF 8 Upgrade Cycle: What's yours? Is it expected to be released that soon that we're talking about it

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-04 Thread Bobby Hartsfield
LMAO!! Warriors of the net!! Yeah, unfortunately I have seen that lol.. wow flashback. How about don’t copy that floppy? lol ok ok... No one ever said anything about rewriting the content of packets (that I remember)... but it only helps support the theory that your computer is more of a router

RE: CF 8 Upgrade Cycle: What''s yours?

2006-10-04 Thread Ian Skinner
greater Flex-like features which could replace some AJAX stuff we are doing) How about Ajax integration? CF 8 is supposed to have that as well. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | |

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Bryan Stevenson
ditto...1st stable beta Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: Michael Dinowitz [EMAIL

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread John C. Bland II
I am in no way doing research for Adobe and am in no way affiliated with Adobe (well, other than being a UG manager). This post is purely out of my own desire. On 10/4/06, Andy Matthews [EMAIL PROTECTED] wrote: Is it expected to be released that soon that we're talking about it already?

Re: Quick! Gimme a hotel reservation system...

2006-10-04 Thread John Blayter
Good deal. I would start with the CRS/PMS integration and work from there on your options. On 10/4/06, Jeff Small [EMAIL PROTECTED] wrote: Oh, it's not a quick decision, I just need *several* to go thru before we give the client the option. We just didn't wanna have only one or two that we've

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Alan Rother
Uhh... You mean I'm not supposed to be running it in production now? Be right back. -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Andy Matthews
Mid-2007? Is that the beta or the full release? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent:

Re: CFHTTP Authentication

2006-10-04 Thread Rob Wilkerson
On 10/4/06, Jochem van Dieten [EMAIL PROTECTED] wrote: Rob Wilkerson wrote: I'm trying to retrieve an RSS feed from an Apache web server. The feed is secured by htdigest authentication. My CFHTTP call is failing even with the username and password I'm passing (which are correct). In

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-04 Thread Ben Forta
We have publicly said that Scorpio is slated for a mid-2007 release, but we have not been any more specific. And mid is very open ended, I guess any time between Jan 2nd and Dec 30th would qualify. ;-) --- Ben -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent:

How do I disable view source?

2006-10-04 Thread Will Tomlinson
Hey, Now I'm tryin' to disable the view source in the browser. I don't want anyone to see my generated html. Anyone have any ideas on this one? Thanks, Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

  1   2   3   >