MX and Javabean tutorials?

2002-07-16 Thread Jon Hall
Anybody know where I can find some good How to integrate Javabeans with MX type tutorials? I've written and integrated some of my own java classes in MX, but there are a few issues I am still fuzzy on and the docs leave me wanting more. I do hope that there is a nice big section on this

Re: MX and Javabean tutorials?

2002-07-16 Thread Jon Hall
/mx/coldfusion/articles/java.html JC HTH, JC JC JC -Original Message- JC From: Jon Hall [mailto:[EMAIL PROTECTED]] JC Sent: Tuesday, July 16, 2002 11:48 PM JC To: CF-Talk JC Subject: MX and Javabean tutorials? JC Anybody know where I can find some good How to integrate Javabeans JC

cfscript for in vs cfloop collection...

2002-07-15 Thread Jon Hall
Perhaps someone else can see what I am doing wrong here (cf5). I've had this problem in the past, and just included the code inline with a cfloop around my cfscript, but now I want to convert the code to a UDF... Here is the code. This works fine: cfloop

Re: cfscript for in vs cfloop collection...

2002-07-15 Thread Jon Hall
/activity and use that as your counter. mark -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, July 15, 2002 2:56 PM To: CF-Talk Subject: cfscript for in vs cfloop collection... Perhaps someone else can see what I am doing wrong here (cf5). I've had

Re: cfscript for in vs cfloop collection...

2002-07-15 Thread Jon Hall
Tried it...wont work. It says it's not a valid CF structure, which it isn't...but I was hoping that they were equivalets. Seems strange for CF to not use the same cfloop-collection code when implementing for-in. Maybe Allaire wasn't into code reuse, or the code was really really nasty :) jon

Re: cfscript for in vs cfloop collection...

2002-07-15 Thread Jon Hall
No...it's a COM object. Which I am sure is the problem. - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 15, 2002 3:53 PM Subject: RE: cfscript for in vs cfloop collection... Is transDOM.selectNodes(/TrackResponse/Activity)

Re: cfscript for in vs cfloop collection...

2002-07-15 Thread Jon Hall
then? I'm gathering that's an XML object? Have you looked into the proper xml functions? What does Allaire have to do with your code below btw? ~Todd On Mon, 15 Jul 2002, Jon Hall wrote: Tried it...wont work. It says it's not a valid CF structure, which it isn't...but I was hoping

Re: OT: ActiveX Treeview in a web page Help?

2002-07-15 Thread Jon Hall
This has happened to me not to long ago, all was working fine for a while. Then I had the client who had never used the program, go to the url and it didn't work. I had changed the directory that the program had run in but forgot to update the code, but since the ActiveX control was still

Re: MX debug layout

2002-07-12 Thread Jon Hall
Somewhere in a subdir under cfusionmx, there is a directory called debug. It contains the unencrypted templates that display the debug. You can customize them however you want. jon - Original Message - From: Ritter, Scott [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July

Re: removing spaces and carriage returns w/ efficiency

2002-07-12 Thread Jon Hall
Will that do carriage returns as well? If not I'd imagine something like this would be a little more effeicient than doing a regex... cfset myNewString = stripCR(replace(string, , , ALL)) jon - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: Querying 1 million records

2002-07-12 Thread Jon Hall
If each record is even a decent size, then even if CF was able to handle a query that size, the machine would run out of memory and start swapping like crazy, and then you are thinking about looping over cfquery 1,000,000 times? Egads...don't do it, for the sake of your server :) If you have a

Re: Back end tools for WEB search engine

2002-07-11 Thread Jon Hall
The front end will be Cold Fusion but the backend needs to be something more robust. I need a server based engine to process and juggle multiple search engine searches; catalog their result sets; save them to a database; and eliminate duplicates. You should investigate Googles SOAP interface.

OT: Sybase TOP equivalent?

2002-07-11 Thread Jon Hall
Is there an equivalent to SQL Server TOP command in Sybase? jon __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: Sybase TOP equivalent?

2002-07-11 Thread Jon Hall
Yeah I am using that now, but the connection to the database is across the internet using a VPN. The less bandwidth necessary the better. I've always been under the assumption that the entire recordset is returned to CF, no matter what you put in maxrows...so the recordset may look the same, but

Re: Accessing a dll on client machine

2002-07-09 Thread Jon Hall
If the dll is a COM object, use CreateObject in VBScript or new ActiveXObject from Javascript to instantiate the object. If the com object doesn't have any networking methods to get the data back to the server, you are still going to need to write that part...you could use msxml or maybe wininet,

Re: OT: SSL

2002-07-09 Thread Jon Hall
*ahem* https://www.openssl.org/ - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 09, 2002 2:53 PM Subject: Re: OT: SSL www.openssl.org You can make your own for free. The only reason you would buy one is to show the websurfer you

Re: CFMX CFDUMP / Stylesheets.

2002-07-08 Thread Jon Hall
Why not change the debug stylesheets that MX uses? They are in the CFusionMX directory somewhere. You could try sticking iframe tags around the debug output as wellthat might do it. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 08, 2002

Re: nuther lockin Q?

2002-07-08 Thread Jon Hall
Previous to MX, I'd definitely user a readonly lock. Might as well be safe...and since there really isn't a performance penalty with readonly locks, there isn't a downside. jon - Original Message - From: Critter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 08, 2002

Re: Re[2]: nuther lockin Q Redux

2002-07-08 Thread Jon Hall
Anyone remember the most awesome of all DOS term program's ever imho, Terminate, where you had to enter Joshua into the address book I think, and you would get the games menu? My all time favorite easter egg. jon - Original Message - From: Critter [EMAIL PROTECTED] To: CF-Talk [EMAIL

CFMX Null pointer error?

2002-07-06 Thread Jon Hall
I'm getting this odd error when running a template that I am working on. I was making some basic changes, nothing complex, and all of the sudden this error pops up at the bottom of the page right before the debugging info. The page doesn't stop executing, and everything seems to be

Re: CFMX Null pointer error?

2002-07-06 Thread Jon Hall
Actually to follow up, I was mistaken...it has not gone away. I am currently backtracking what I have done to see if I can find the cause. -- jon Sunday, July 7, 2002, 12:42:52 AM, you wrote: JH I'm getting this odd error when running a template that I am working JH on. I was making some

Re: Dedicated Hosting

2002-07-02 Thread Jon Hall
I have no experience with these guys, and I don't know how they are charging these prices and staying profitable, but RackShack has unbeatable pricing. Dedicated server with an _unmetered_ 10Mb link for $399/Month? Wow. http://www.rackshack.net jon - Original Message - From: SoW [EMAIL

Re: Refresh clicking

2002-07-01 Thread Jon Hall
If you are refreshing the source of a page or a frame src, it's going to click. No programmatic way around it. Either use Flash, Java, Activex, or use one of the javascript server communication methods to get your data. This chat program uses setInterval to change a script src every 2.5

OT: Flowchart program

2002-06-27 Thread Jon Hall
Recently I have found myself wanting to use some kind of flowchart program to visualize my application logic, but I haven't been able to find any decent lightweight flowchart software anywhere. I know I could use Visio, but I'd like stay away from it if there is an alternative. Any ideas? jon

Re: Objected Oriented Design ( was RE: )

2002-06-26 Thread Jon Hall
Makes perfect sense to me, I do think you are overthinking it a bit though :). Seems to me it would be as simple as storing the document id in the content record in the database. The way I'm seeing it, your getDocument method would return the content. The query would look something like this...

Re: Javascript, form input colors and Netscape

2002-06-26 Thread Jon Hall
http://www.mako4css.com/cssforms.htm - Original Message - From: Brian Scandale [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 26, 2002 7:29 PM Subject: Javascript, form input colors and Netscape Does anyone know how to use javascript to change the background

Re: CFMX not reading .html files like CF5! Very bad!

2002-06-26 Thread Jon Hall
FYI, We do it for one customer that had 2,000+ pages of html content, and he edits the html pages on his system, then uploads them. He came to us to implement a banner program for his site. Well back in the day, before I knew what the heck I was doing, I implemented the banner program as a custom

Re: Javascript, form input colors and Netscape

2002-06-26 Thread Jon Hall
Sorry, it's definitely not possible, I've tried. Actually iirc if you do try and set it, NS4 will act funny, so you should do a check for NS4 when you set it. This is from a script I use for validation... if (!document.layers) vField.style.backgroundColor = '#cc'; BTW that link is imo the

remove from last occurence of char?

2002-06-21 Thread Jon Hall
I have an interesting problem, I need to remove the last part of a string from the last occcurance of a character. The only solution I can think of is to reverse the string, do a find for the first occurance, remove the part, then reverse it back (I've coded this)...it just seems like there

Re: AOL Problems

2002-06-21 Thread Jon Hall
Where did you get that information? AOL 8.0 is in public beta right now, which uses the Mozilla engine. Compuserve has made the switch already... -- jon Friday, June 21, 2002, 12:55:17 PM, you wrote: j Yup. It does use IE... j .. and for awhile it looked like they were going to make the

Re: AOL Problems

2002-06-21 Thread Jon Hall
could've sworn I saw something more definitive on slashdot a few weeks ago, but I can't find it again. Maybe I just imagined it... At any rate, I could be totally confused here. -- jon -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, June 21, 2002 1:35 PM

Re: Heavy CF Load

2002-06-21 Thread Jon Hall
Have you checked out the server log? That's usually my first stop when I see performance problems...you can ususally narrow the problem down to the template/templates that are causing the problem. - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Fw: remove from last occurence of char?

2002-06-20 Thread Jon Hall
This didn't go through the first time. Apparently every other language under the sun has a find last occurance of function...except CF. Argh - Original Message - From: Jon Hall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 20, 2002 2:50 PM Subject: remove from last

Re: Java for beginners?

2002-06-20 Thread Jon Hall
I second this reccomendation, I went through 3 Java books before I found this one. Also check out the IBM tutorials. - Original Message - From: Tony Carcieri [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 20, 2002 2:08 PM Subject: RE: Java for beginners? I have

Re: Coldfusion Apps You've Built

2002-06-14 Thread Jon Hall
Amen, every app I've ever written could have been better if they weren't such cheapskates, and just told me what they wanted and when, then disappeared until I called them. :) jon - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002

Re: RE: Application Slow Down was RE: Absolutely necessary to cflock session variables

2002-06-14 Thread Jon Hall
Except when it's not necessary of course ;-) jon - Original Message - From: James Ang [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002 6:09 PM Subject: RE: RE: Application Slow Down was RE: Absolutely necessary to cflock session variables My bad. Sorry. I

Re: Structure vs. array

2002-06-14 Thread Jon Hall
In a way structures are nothing more than nested arrays, but don't think about them that way, thats not the point. Since PHP is an object oriented language, just think of structures as objects which contain properties of the object, having said that, don't think of objects as objects either.

Figleaf on TechTv

2002-06-14 Thread Jon Hall
Everyone's favorite CF shop got mentioned by the lovely Megan (m) on TechTV today! How groovy, and congrats to the Figleaf guys. They rerun the show at 10pm if anyone wants to catch it. http://www.techtv.com/screensavers/downloadoftheday/story/0,24330,3384033,00.html -- mailto:[EMAIL

Re: DNS Havoc!!

2002-06-13 Thread Jon Hall
The reason you are still resolving the old ip is that your computer (most likely), or your dns server have the old ip address lookup cached. Both your primary and secondary dns servers are responding with the new ip. Couple of things you can do. Clear your IE cache. If you are running Win2k

Re: cfhttp equivalent in ASP

2002-06-13 Thread Jon Hall
You know, there are ASP forums out there... ;-) Anyway, MSXML is not just for xml, and it's free and very reliable, and it let's you set http headers, and doesn't urlencode everything even *cough*. http://www.microsoft.com/xml A nasty VBScript example. %@ Language=VBScript % % Dim objSvrHTTP

Re: Backups

2002-06-12 Thread Jon Hall
Faster with just one concurrent user no? If a web site has just one concurrent user, performance really isn't something that needs to be worried about in the first place... How many users before Access starts to crap out? 5? 10? With that few people online it's not going to matter either, and the

Secure Flash?

2002-06-11 Thread Jon Hall
Does Flash have a way to tranport data across SSL? I've looked and couldn't find anything, which usually means no, but just in case... jon __ This list and all House of Fusion resources hosted by CFHosting.com. The place for

Re: Secure Flash?

2002-06-11 Thread Jon Hall
, this is discussed in the: Macromedia Flash MX Security Whitepaper http://www.macromedia.com/desdev/mx/flash/whitepapers/security.pdf hope that helps... mike chambers [EMAIL PROTECTED] -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 3:17

Re: CF Talk list problems?

2002-06-11 Thread Jon Hall
I saw one duplicate today...I haven't really noticed any others. First one was recieved: Mon, 10 Jun 2002 16:16:02 -0400 Second one received: Tue, 11 Jun 2002 17:27:32 -0400 Shawn Regan [EMAIL PROTECTED] Subject RE: DIV question The Date header on both was exactly the same: Mon, 10 Jun 2002

Re: OT: url param seperator

2002-06-11 Thread Jon Hall
amp -- jon Wednesday, June 12, 2002, 12:09:24 AM, you wrote: DB Is there another character besides that html will recognize as a url DB parameter seperator other then ? DB Thax DB Duane DB __ Structure your ColdFusion

DW MX template locked?

2002-06-09 Thread Jon Hall
I doing my best to like Dreamweaver, but I keep running into problems. I can deal with really poor layer support, but I'm hoping there is a switch somewhere for this one... This is bizarre, but I was designing an html page in DW and then started adding some CF bits, well all went well

Re: Directory permission bitwise operation help needed

2002-06-07 Thread Jon Hall
These help? http://www.swynk.com/friends/policht/Art042602.asp http://www.swynk.com/friends/policht/Art050602.asp http://www.swynk.com/friends/policht/Art051602.asp I've been wanting to play with this code forever, but I haven't had the chance yet...at least I got to polish off the bookmark. :)

Re: CFMX and COM

2002-06-06 Thread Jon Hall
I tested a few COM objects and had some problems, but FYI MX uses JIntegra for it's Java/COM bridge. The answers may be there. http://www.intrinsyc.com/products/bridging/jintegra.asp There is a program called com2java in the CFusionMX\jintegra\bin that makes a java stub for the com object that

Re: unscoped variables

2002-06-04 Thread Jon Hall
Sorta relates to this thread...one of the neatest things to do in MX is: cfdump var=#variables# Awesome for debugging. jon __ Structure your ColdFusion code with Fusebox. Get the official book at

Re: unscoped variables

2002-06-04 Thread Jon Hall
variables cfdump was also in CF5 :-) but yes, it is awesome... Neil Clark Team Macromedia http://www.macromedia.com/go/team Announcing Macromedia MX!! http://www.macromedia.com/software/trial/ -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: 04 June 2002

Re: File Browse buttons with input type=file

2002-06-03 Thread Jon Hall
Yes, but it's such a pain that I usually write it off as not worth it. A file input object in IE (only IE, there is an RFE for Mozilla support) has a click method that will simulate a user click and bring up the file browser.

Re: SQL2000 JDBC Driver and CFMX

2002-06-02 Thread Jon Hall
SQL Server's JDBC driver was licensed from a 3rd party...I suspect that may have something to do with it. Some linkage http://industry.java.sun.com/javanews/stories/story2/0,1072,42221,00.html -- jon Sunday, June 2, 2002, 6:24:36 PM, you wrote: DW The funniest detail about this is that MS is

Subscription downloads??

2002-05-31 Thread Jon Hall
Ok, so I'm looking at the subscription download email. It says I need: * Your subscription ID code:xx * Your ColdFusion Server 5 serial number, * A valid e-mail address, and * Your shipping address. All I have to do it click here...

Re: Subscription downloads??

2002-05-31 Thread Jon Hall
Actually I was about to say that i just worked, I kept clicking on the link every 5 minutes or so and just now a different page came up...but the text does need to be clearer. Quite confusing... jon - Original Message - From: Vernon Viehe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: Preventing user from going back

2002-05-30 Thread Jon Hall
The javascript wont excecute... :) Seriously though, another option is to run the wizard in a popup with no chrome. Then no back button will exist in the first place. However you should try to make the registration process back-button proof in the first place. jon - Original Message -

Re: OT: scrolling tables

2002-05-30 Thread Jon Hall
Couple different ways, most use the css overflow property, which doesn't work in NS4. If NS4 is necessary, I'd reccomend searching for the Beehive DHTML library. I can't remember the site, but it lets you do an inline scroll in NS4. Otherwise here is some example code...it's very rough, but it

Re: ColdFusion MX / Studio MX now available!

2002-05-29 Thread Jon Hall
When do subscription holders get our cd's? __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: inhibit form password cacheing

2002-05-29 Thread Jon Hall
In NS6+ use autocomplete=off in the form or input field, it may work in IE as well. It isn't a caching issue though, the password autocomplete is a feature of the browser... jon Wednesday, May 29, 2002, 10:44:10 PM, you wrote: BS How does one inhibit the password caching request that browsers

Forums software

2002-05-28 Thread Jon Hall
I am looking around for a good forums software with _excellent_ performance (no looped queries!), and isn't written in Fusebox. jon __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Re: Forums software

2002-05-28 Thread Jon Hall
You mean Allaire Forums? (/jon runs screaming!) Actually I'm looking at the CD right now on my shelf :), but this guy wants to migrate from that software to a newer forums software. We purchased a forums software last year and we weren't very happy with the performance for a different site, so

Re: Forums software

2002-05-28 Thread Jon Hall
I really like CF Forums http://www.cfcode.com, but my only problem with it is the database structure. Certain db schema decisions that were made while they were designing it, limit it's scalability. Other than that it's got a wonderful VBulliten style interface, and support is great. jon -

Re: Forums software

2002-05-28 Thread Jon Hall
I need something that can take 100,000 posts and crunch along happily...I am currently using Code2Go's software, and have the open source version. I had performance problems at first, then optimized their software. My optimizations actually halved the page excecution time, and I sent them the

Re: True Combobox for HTML?

2002-05-24 Thread Jon Hall
Here is one I made that works in IE5+ and Mozilla/NS/AOL/Compuserve... http://www.oztek.net/jon/combobox.htm It's not the best code, and I started working on a more OO version, but what code is there is pretty readable. jon - Original Message - From: Shawn Grover [EMAIL PROTECTED] To:

Re: Emergency: Authorize. net woos

2002-05-24 Thread Jon Hall
Just to cover the bases, you are using the Relay mode and not Direct Connect right? I don't think their new policy cover's ADC... Unfortunately, the url encoding problem is one of the worst features of cfhttp, and has caused me much grief. It makes cfhttp unworkable with some little

Re: page security using cfabort

2002-05-23 Thread Jon Hall
Personally I stay away from session variables, preferring client variables for stability reasons and you dont have to write additional logic to take care of session timeouts, but your solution looks fine to me. One solution to the cfabort problem is to put your html footer in an include and do a

Re: PKI

2002-05-22 Thread Jon Hall
PKI to my knowledge stands for public key infrastructure and it is just an overall blanket term like Web Services. Unless this is some companys marketing guys trying to co-opt a stardard acronym... Indiviual pki type standards include SSL, TLS, PGP, S/Mime, etc etc. So I guess the short answer to

Re: UPS shipping

2002-05-22 Thread Jon Hall
- Original Message - From: John Dowdell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 5:08 PM Subject: Re: UPS shipping At 8:19 PM 5/28/2, Eric J Hoffman wrote: There isn't a cold fusion based system currently that does UPS shipping stuff...ie, new

Re: Recent thread?

2002-05-22 Thread Jon Hall
Maybe one of these is it? http://www.ashleyit.com/rs/ http://developer.apple.com/internet/javascript/iframe.html http://www.dotvoid.com/article_condensed.php?itemID=137 jon - Original Message - From: Eric J Hoffman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May

Re: Recent thread?

2002-05-22 Thread Jon Hall
Subject: RE: Recent thread? perhaps www.fusionscript.com + Pete Freitag ([EMAIL PROTECTED]) CTO, CFDEV.COM ColdFusion Developer Resources http://www.cfdev.com/ -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent

Re: PKI

2002-05-22 Thread Jon Hall
guess my question is can have user (intranet only) fill out a CF form and then create a electronic version of it on the users PC so that the PKI software can then sign it? -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 2:30 PM To: CF-Talk

Re: Recent thread?

2002-05-22 Thread Jon Hall
Well the three links I posted have wonderful examples, but here is some extensively snipped bits of code from a chat application I threw together experimenting one night. This is an IE/Mozilla solution only though. style #pipeFrame { display: none; } /style script language=JavaScript

Re: Problems installing a cfx dll

2002-05-21 Thread Jon Hall
Doublecheck your permissions...make sure CF has access to the dll and directory. jon - Original Message - From: John McCosker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 21, 2002 12:29 PM Subject: RE: Problems installing a cfx dll Yep!! -Original

Re: Reading only part of a really big text file...

2002-05-21 Thread Jon Hall
My .02... Simply put, cffile previous to MX is not the right tool for parsing large text files. MX might not be great depending on if they used any of Java's io buffering. I haven't put cffile in mx through a torture test yet, and I had to reinstall my machine with the preview release on it. If

Re: mySQL vs. Access or MSDE (worm note)

2002-05-21 Thread Jon Hall
What about Access 2002? Does it include MSDE and does it listen on port 1433 as a default? We started to see a lot of invalid logins to our SQL Servers last night I was thinking what kind of SQL Admin in their right mind would leave the sa password blank, certainly there can't be that many

Re: How to read from client's a: drive automatically??

2002-05-21 Thread Jon Hall
When you say automatically, do you mean other than a standard file upload field, and cffile action=upload? Users can select a file on their a: drive the same as any other file. jon - Original Message - From: JAIME HOI [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 21,

Re: Slightly OT: Change a stylsheet class via JavaScript?

2002-05-20 Thread Jon Hall
document.getElementById('textBoxId').className = 'class'; Dave Carabetta wrote: How can I programmatically change a stylesheet class via JavaScript? I'd like to change the background of a text box from white to red if some form validation fails. I've seen it done before, but haven't been

Re: deadlocks in CFGLOBAL

2002-05-20 Thread Jon Hall
Client variables use a cookie to look up the client value from the database, so it is possible and I imagine cfglobal table gets a lot of Update or Select/Insert (I'm not sure how CF handles updating that table) queries under load. You might want to go into the CF admin and just disable global

Re: CF vs. PHP email handling

2002-05-20 Thread Jon Hall
1) CF does not run in the command line, so everytime I invoke it, I have to go to a URL to send the mail. Even with the page timeout set to like 30 minutes, this is a somewhat dubious experience. PHP, on the other hand, can run right from the command line for an unlimited amount of time.

Re: Apology

2002-05-20 Thread Jon Hall
The key is to vent in the form of a question...sorta like Jeopardy :) jon - Original Message - From: Rick Walters [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, May 20, 2002 3:36 PM Subject: Apology I'd like to apologize for insulting the MM Forums. I'm quite sure I'm

Re: Random display of QUERY results

2002-05-18 Thread Jon Hall
Without modifying the query, here is one way. cfquery name=queryName dsn=#dsn# SELECT Col1, Col2, Col3 .. /cfquery cfset randRecordsList = '' cfloop from=1 to=4 index=i cfset randVal = randRange(1,queryName.recordCount) cfset randRecordsList = listAppend(randRecordsList , randVal)

Re: A Tip (maybe new, maybe not)

2002-05-17 Thread Jon Hall
, Mike Kear Windsor, NSW, Australia AFP WebWorks -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Subject: Re: A Tip (maybe new, maybe not) Go into the CF Admin and uncheck maintain database connections and your database wont lock at all unless it's actively being

Ways of securing email?

2002-05-17 Thread Jon Hall
I need to implement a secure email solution, and I know of 2 or 3 ways to do it. S/MIME POP3 over SSL PGP Are their any others that are worth looking into? jon __ This list and all House of Fusion resources hosted by

Re: is CFHTTP illegal?

2002-05-17 Thread Jon Hall
Read up on copyright law However, under the DMCA http://www.anti-dmca.org technically cfhttp probably is illegal...hehe :) Just wait though...the memory chips that cfhttp uses to store that copyrighted web site will be illegal soon too.

Re: Ways of securing email?

2002-05-17 Thread Jon Hall
would be ok... jon - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 17, 2002 1:32 PM Subject: Re: Ways of securing email? what part of the email process do you want to make secure? On Fri, 17 May 2002, Jon Hall wrote: I need

Re: Windows - pesky folders

2002-05-17 Thread Jon Hall
Find an old disk utility that does not rely on the Windows API to delete files...there is more than one around. If you are familiar with raw FTP commands, that would be the easiest way to get rid of them, since that was way they were created. Tis a bit of a black art though. Go here for way too

Re: WAY OT DTS PACKAGE

2002-05-16 Thread Jon Hall
From within the DTS Designer choose the Execute Process Task, and run an unzip program on your zip. jon - Original Message - From: Joshua Tipton [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 16, 2002 10:18 AM Subject: WAY OT DTS PACKAGE Does anyone know via DTS

Re: Running a query in javascript

2002-05-16 Thread Jon Hall
This is my preferred way, it can be made cross browser by using ilayers in NS4. Don't use the gif thing, it's very limited. However I think their article does link to a site that shows how to do it with ilayers/iframes. jon - Original Message - From: Shawn Grover [EMAIL PROTECTED] To:

Re: A Tip (maybe new, maybe not)

2002-05-16 Thread Jon Hall
Go into the CF Admin and uncheck maintain database connections and your database wont lock at all unless it's actively being accessed by CF. jon Paul Giesenhagen wrote: I don't know if any of you work with Access much as a database here and there, but I have been developing using an access

Re: MX speed vs. 5.0 speed

2002-05-15 Thread Jon Hall
In general, although I haven't got a real feeling for MX all around yet, I'd say it's much much faster for most things. Simple looping 1 times type tests show a huge increase in performance... After playing with it a bit, I do get the feeling that JDBC just isn't as fast as MS's drivers ODBC

Re: Help with why I shouldn't use ASP.NET

2002-05-15 Thread Jon Hall
You have to pay the developers more, because of the higher learning curve. Flash integration is going to be better in CF. Visual Studio is absolutely horrid at visual design unlike DW. So you have to pay for two IDE's...or have seperate designers and coders. Net Server has been delayed until next

Re: Help with why I shouldn't use ASP.NET

2002-05-15 Thread Jon Hall
Perhaps I should add that I actually like .Net...on the _client_ side of the equation (Win32 apps and the like). I think Java owns the server side and that's where most of the investment in Java is taking place these days. jon - Original Message - From: Jon Hall [EMAIL PROTECTED] To: CF

Re: Dependant Selects?

2002-05-15 Thread Jon Hall
Here is my snippet if you want to do it yourself. In this example the table has two columns, one being the state, and another with a region (like Southeast, West...). cfquery datasource=#dsn# name=getRegions SELECT State, Region FROM Locations /cfquery script language=JavaScript //sets up

Re: Reading extended file info

2002-05-15 Thread Jon Hall
Check out this tag. http://www.stopstaringatme.com/?action=codesnippet=cf_imageinfo You may be able to do something similar if the title is in a consistent place (open the image in a hex viewer), without having to use a cfx. jon - Original Message - From: Marlon Moyer [EMAIL PROTECTED]

Re: MS SQL vs MySQL WAS: [admin] List status

2002-05-15 Thread Jon Hall
I've heard about that article, but haven't read it. Could you provide a link? It is well known that MySQL is very very fast reading, however under load it's record locking is not up to par with the big guys, and it's write speed is well below the rest. What MySQL can not touch is MS SQL's stored

Re: [admin] List status - A CHALLENGE

2002-05-15 Thread Jon Hall
There is a new higher res version out now... :) - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 15, 2002 2:17 PM Subject: Re: [admin] List status - A CHALLENGE There was also a lot of bouncy bouncy at the community suite, if

Re: MS SQL vs MySQL WAS: [admin] List status

2002-05-15 Thread Jon Hall
Heh, this article truely cannot be used as ammunition for any anti-MS people. They do all this testing with beta JDBC drivers, and pronouce MySQL and Oracle winners, then they throw in one sentence on how under Win2k/ODBC/ASP outperformed all of them by over 300 page view per second but it really

Re: How does this work (cfheader+cfcontent)?

2002-05-15 Thread Jon Hall
All you need to get IE to render XML is to set the Content-type header to text/xml. That's it. Remove the cfheader tag and add cfsetting enablecfoutputonly=yes at the top to be safe, and I bet it works... FYI, Coolfusion has a really cool little utility called http analyzer that will get you all

Re: [admin] List status

2002-05-14 Thread Jon Hall
So what's the link to the Paypal thing? - Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 14, 2002 3:27 PM Subject: RE: [admin] List status Lets see. The lists are free for you. On my side they cost me time, effort and some

Re: CF_Two_Selects trouble all of a sudden....

2002-05-14 Thread Jon Hall
View the source on the page and make sure that the form is named CForm_Trans and the dropdown is named VTCode and the cases are correct. jon - Original Message - From: Larry Juncker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 14, 2002 3:48 PM Subject:

Re: CFHTTP Connection Failure (fwd)

2002-05-14 Thread Jon Hall
Same problem here, so it's not just you. My money is it's an SSL issue, since you've established that the server is up. There's a kb article on CF5's inabilty to do 128 bit ssl on the Macr site somewhere... CFHTTP sucks all around though in 5, and they didn't fix it all the way in MX so I'm very

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