RE: Shopping Cart

2000-12-20 Thread Nick Betts
Try www.webmonkey.com. I used their code and rehashed it to suit my requirements successfully -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: 19 December 2000 18:28 To: CF-Talk Subject: RE: Shopping Cart might as well start your own code. hard to re-code someone

RE: [Compress HTML output]

2000-12-20 Thread Orlando Correa \(ITSC\)
Just check the cgi.http_accept_encoding for the existance of "gzip" CFDEFAULTCASE CFIF listcontainsnocase(cgi.http_accept_encoding,"gzip")!--- AND NOT dev_server --- CF_GZipPage LEVEL="7" CFINCLUDE TEMPLATE="myheavypage.cfm" /CF_GZipPage CFELSE CFINCLUDE

RE: WAY OT: C++

2000-12-20 Thread JustinMacCarthy
The best place to start is a simple console Hello World example!! The complicating factor in C/C++ is that there are a lot of different "Toolkits" to learn for different Platforms (MFC-Windows,Gtk-Gnome,ncurses;ptreads-Unix,QT-Kde etc...) mostly for GUI development, so it depends on what you

Re: Structures?????

2000-12-20 Thread jeffc
Thank's for the responses. I couldn't quit get a structure to do what I wanted. Structures apparently will not sort. So I am trying it will an array. I was working on generating automatic forms from a table query. I had figured out how to create the input type="text, checkbox, radio... But trying

RE: LOCKING revisited...

2000-12-20 Thread mherbene
And those of us still on 4.0x don't (I think) have that option. -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 3:16 PM To: CF-Talk Subject: LOCKING revisited... Ok, given that we all agree: ** Access to shared variables should

Page Tracking hits :: User Movments on an Intranet

2000-12-20 Thread Paul Ihrig
hello all! i know this has been asked befor, but i cant find the email. What software or utilities do you guys use to track user movments on your site? i need to see what parts of our intranet are really being utalized what isnt. so i can do a rebuild. any helpp would be great! thank you

Refreshing images without refreshing page

2000-12-20 Thread Paul Sinclair
I'm putting together an application for a client that includes banner ads. They are interested in setting it up so that an ad rotates every 30 or 45 seconds on a page while a viewer is reading it. So that in the span of 5 minutes or so, a banner would rotate 8 or 9 times without any refresh of

RE: Refreshing images without refreshing page

2000-12-20 Thread Bernd VanSkiver
Could use an iframe and just refresh the banner in the iframe. Bernd VanSkiver [EMAIL PROTECTED] ICQ #: 916324 -Original Message- From: Paul Sinclair [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 8:15 AM To: CF-Talk Subject: Refreshing images without refreshing page

RE: Refreshing images without refreshing page

2000-12-20 Thread DeVoil, Nick
You can do this quite easily in JavaScript so long as you don't mind having to wait for all the images to load when you first open the page. I thjink you would use a timeout which reassigns the SRC attribute of the IMG element every n seconds, looping over an array of the image names. Nick

Help with Error Message please

2000-12-20 Thread Vance_Duke
We are running a scheduled event after midnight to trigger indexing of our sight. I will admit our site is large. But after running for a while, the error that is written to the error log is "Cold Fusion 4.0, 'unknown exception condition CFMLInterpreterImp::executePCode". Has anyone seen this

(ot) Domain Name Database

2000-12-20 Thread Eric Dawson
Where can I get a domain name database? Can't seem to find a good source. www.netcraft.com is great but it is currently a little out of date. :( Curious Eric ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Fusebox

2000-12-20 Thread paul smith
Some like it, some don't. I find it very helpful in an app I'm developing. For example, when I add a new functionality, the list of CFINCLUDed files is the same as similar functions, except for the one of two that are different. This is a WHOLE lot easier than cutting and pasting the right

Re: [RE: WAY OT: C++]

2000-12-20 Thread Alex
learn java instead. its easier and "hotter". also if you already know how to program then learning a new language isn't that hard. also there is a huge difference between C and C++ (most unix apps are written in C). "JustinMacCarthy" [EMAIL PROTECTED] wrote: The best place to start is a simple

RE: How can I find the date of the Monday of the week containing a given date?

2000-12-20 Thread Larry Juncker
Try this Brent: the code below will give you the date for Monday based on the date you enter cfset date = "12/18/2000" CFSET diff = 7 - dayofweek(date) CFIF diff is 1 CFSET diff = -4!-- Today is Fri -- cfelseif diff is 2 CFSET diff = -3!-- Today is Thu -- cfelseif diff is 3

RE: LOCKING revisited...

2000-12-20 Thread Bud
On 12/20/00, [EMAIL PROTECTED] penned: And those of us still on 4.0x don't (I think) have that option. -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 3:16 PM To: CF-Talk Subject: LOCKING revisited... Ok, given that we all agree: **

List field been used as a retrieval argument

2000-12-20 Thread Perez, Bismark
Hello list, I have a problem I can't see to find the answer... I have a list field I want to use as a retrieval argument of a query, but some how the database don't like the way I'm defining the retrieval... for the life of me I can't see where the error is, maybe you guys can help... the

Re: Fusebox

2000-12-20 Thread Joe Sheble aka Wizaerd
Fusebox methodologies are analogous to an event handler in any sort of Windows programming. The event model is not new to developers, and is a tried and true practice. Moving that methodology to CF apps makes more than enough sense to me. I use FB methodologies in my CF apps, and they're

Re: Page Tracking hits :: User Movments on an Intranet

2000-12-20 Thread Eric Dawson
I would create some customized logging in the application.cfm The noise ... (or onrequestend.cfm yeah that's it ... thinking as I am writing.). Track LogID, UniqueSessionID, MemberID, FunctionalArea, templateName, QueryString, Page_specific, FunctionSpecific, Member_Specific As you build you

RE: List field been used as a retrieval argument

2000-12-20 Thread DeVoil, Nick
Try without the apostrophes SELECT ItemID, Description FROM Items WHERE ItemName IN (#ItemNames#) -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 2:55 PM To: CF-Talk Subject: List field been used as a retrieval argument Hello

RE: List field been used as a retrieval argument

2000-12-20 Thread Adkins, Randy
Remove the tickmarks from your where clause: WHERE ItemName IN (#ItemNames#) Which would look like this in SQL: WHERE ItemName IN '('Item1','Item2','Item34')' Thus your tickmarks are cancelling each other out. -Original Message- From: Perez, Bismark [mailto:[EMAIL PROTECTED]] Sent:

RE: CFFTP -- INVALID PORT COMMAND

2000-12-20 Thread John McKown
There is a thread on the Allaire Forums on the "Invalid Port Command" error where Allaire claims it is a bug and will not be fixed until Version 5.0. John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515

Re: List field been used as a retrieval argument

2000-12-20 Thread Dick Applebaum
Try WHERE ItemName IN (#ItemNames#) Dick At 9:54 AM -0500 12/20/00, Perez, Bismark wrote: Hello list, I have a problem I can't see to find the answer... I have a list field I want to use as a retrieval argument of a query, but some how the database don't like the way I'm defining the

Re[2]: OT: Does JavaScript have a Trim function?

2000-12-20 Thread Carol Bluestein
Nelson's response works in CF. In JS, just did this the other day... You could adapt this routine for yourself: And remove blanks from the front and back This just removes them from the front. I believe if you use -1 it will come off the back end. for (var i=0; ivarBuilder.length; i++){

RE: LOCKING revisited...

2000-12-20 Thread Peter Theobald
No offense, but that is nonsense. My Cold Fusion server is still multi-threaded and multi-processed. It is still handling every incoming request at the same time. The only time it will act "single threaded" is when two requests attempt to read an Application scope variable at the same time. And

Re: (ot) Domain Name Database

2000-12-20 Thread Bud
On 12/20/00, Eric Dawson penned: Where can I get a domain name database? Can't seem to find a good source. You mean a database containing all domain names? That would be one mean sucker. I'd hate to download it. -- Bud Schneehagen - Tropical Web Creations

RE: How can I find the date of the Monday of the week containing a given date?

2000-12-20 Thread Christoph Schmitz
Hi, actually you can put the calculation in a formula, this way you don't need the multiple cfelseif's should be faster. cfset myDate = "12/20/2000" !--- subtract the value of Monday from DayOfWeek(givenDate) --- cfset diff = DayOfWeek(myDate) - 2 !--- calculate Date of Monday --- cfset

RE: List field been used as a retrieval argument

2000-12-20 Thread Philip Arnold - ASP
cfset ItemNames = "'Item1','Item2','Item34'" cfquery SELECT ItemID, Description FROM Items WHERE ItemName IN '(#ItemNames#)' /cfquery... WHERE ItemName IN (#PreserveSingleQuotes(ItemNames)#) Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44

Re: List field been used as a retrieval argument

2000-12-20 Thread David E. Crawford
Try using the PreserveSingleQuotes() function in your Where clause. Ie: Select ItemId, Description from Items Where ItemName In (#PreserveSingleQuotes(itemnames)#) This will (theoretically) properly escape the single quotes in your list, when passed to the database engine. Dave - Original

RE: List field been used as a retrieval argument

2000-12-20 Thread Christoph Schmitz
Hi, because your list contains single quotes as item qualifiers, you don't need to put them around the whole list again. And you need to use the PreserveSingleQuotes() function because CF automatically escapes single quotes in SQL-Statements: cfset ItemNames = "'Item1','Item2','Item34'"

RE: Cool CF site - webos.org

2000-12-20 Thread Eric Fickes
Great, even you missed the point. I was hoping with all of the CF_expertise on this list, someone, maybe somebody who had worked on that site would be listening. I know that CF was not used to create all the effects that I think is "cool". Forget I even mentioned this. -Original

RE: [RE: WAY OT: C++]

2000-12-20 Thread Robert Everland
Well I figured if I learned C++ which is harder Java would be a snap since they are pretty much the same language just a little more dumbed down. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20,

Re: (ot) Domain Name Database

2000-12-20 Thread Todd Ashworth
Yes it is. You can download the daily files from Network Solutions after you sign up for some kind of 'partnership/membership' thing (it's free). Last I heard, the .com file alone was about 300 megs. Todd Ashworth - Original Message - From: "Bud" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL

Re: Cool CF site - webos.org

2000-12-20 Thread Dylan Bromby
Eric, I have code for what you're looking for: "windows" (they're really layers) that can be "opened" and "closed" and dragged around. Email me off-list if you're interested. There's nothing earth-shattering about what WebOS does. In fact, desktop.com (which was far more advanced than WebOS)

RE: Cool CF site - webos.org

2000-12-20 Thread Jon Gage
Eric, You asked what was used to develop it, and Todd told you on Monday. Yes it's a cool website, but don't freak on the group. -Original Message- From: Eric Fickes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 10:43 AM To: CF-Talk Subject: RE: Cool CF site -

RE: LOCKING revisited...

2000-12-20 Thread Evan Lavidor
Are you saying that if I do the following: cflock scope="application" timeout="30" type="readonly" cfset variables.myvariable = application.myvariable /cflock and then later on down the page I do the following: cfif variables.myvariable GT 10

Re: Fusebox

2000-12-20 Thread Sean Renet
Hmm well there isn't really a whole point to fusebox per say. The point really is to have a architecture methodology. Fusebox attempts to standardize a methodology. This standard however doesn't work for everyone. For instance, if you work at Figleaf I would imagine when you walk in the door

Re: CFFTP -- INVALID PORT COMMAND

2000-12-20 Thread Sean Renet
Were their any "work arounds" noted? What's odd is that the code runs fine on our development boxes which incidently are behind firewalls, but does not work on the public production box. Both production and development are on W2K servers using CF 4.5 SP2 and I cannot for the life of me figure

Re: (ot) Domain Name Database

2000-12-20 Thread JayB
At 10:29 AM 12/20/2000 -0500, you wrote: Where can I get a domain name database? Can't seem to find a good source. Do you mean a DNS Name Server Database? There ain't "one"...there's hundreds...it's a distributed hierarchical system. Each DNS Name server has a section of the whole. You can

Re: Refreshing images without refreshing page

2000-12-20 Thread Billy Cravens
There's an IE only solution (not ideal). IE supports looping through dynamic images, so you could point to a .cfm template that pulls a rotated image using CFContent. img border=0 alt="" dynsrc="img.cfm" loop=infinite start=fileopen loopdelay=30 Once again, this is an IE only solution. For

RE: LOCKING revisited...

2000-12-20 Thread Ben Lowndes
CF handles complex variables by reference, but simple variables by value... So if you want to move a structure out of the application scope you need to use the duplicate() function and not a direct reference. e.g. CFSET Application.TestStruct = "tructNew()" CFSET REQUEST.TestStruct =

RE: [RE: WAY OT: C++]

2000-12-20 Thread Peter Theobald
They are similar, but definitely not the same. Java implements "Object Oriented Programming" in a very clean way. C++ has a lot of idiosyncrasies in order to blend compatibility with C, a very low level language with access to the bits and pointers directly into memory, with Object Oriented

CF Wireless

2000-12-20 Thread Dylan Bromby
For those interested in developing wireless apps in CF: Some of you may recall the CF-WAP talk list I started some time ago. It's back as CF-Wireless and you can subscribe following the instructions at http://www.bromby.com/cfwireless. ~~

RE: LOCKING revisited...

2000-12-20 Thread Peter Theobald
You just did read locking by hand. Your code has one place where it accesses an Application variable, and you properly surrounded it with a lock. If you were to turn on automatic read locking of Application scope the server would put a read lock around the expression application.myvariable for

RE: List field been used as a retrieval argument

2000-12-20 Thread Perez, Bismark
Thanks everybody for your help... I guess I was just looking for a hard solution without even looking at the simple ones :-) Bismarck Perez ~~ Structure your ColdFusion code with Fusebox. Get the official book at

check with an OR

2000-12-20 Thread Robert Orlini
Hello, I have a CFIF statement that checks for certain IP addresses then emails appropriate parties: CFIF CGI.Remote_Addr is "200.00.11.XX" CFMAIL from="[EMAIL PROTECTED]" To="[EMAIL PROTECTED]" Subject="Oracle Connection with Home Page" The Oracle Connection with Home Page

RE: check with an OR

2000-12-20 Thread Adkins, Randy
You can turn it around, cfset IPList="200.22.22.22,200.111.11.11,) CFIF IPList CONTAINS #CGI.Remote_ADDR# blah blah blah /cfif -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 12:05 PM To: CF-Talk Subject: check with an OR

Re: check with an OR

2000-12-20 Thread Todd Ashworth
To answer your speciffic question though, you need something like this: CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" You need to tell it what to compare the second IP address to. Todd Ashworth - Original Message - From: "Robert Orlini" [EMAIL PROTECTED]

RE: Cool CF site - webos.org

2000-12-20 Thread Eric Fickes
I must have misworded my original question because nobody got it. The only reason that I "freaked on the group" is because all too often this group will take a thread and take it way OT instead of just ending and starting a new one. webos is done with HTCs, DHTML, IFRAMES, CF, and JS, maybe

RE: check with an OR

2000-12-20 Thread Mike \(CFTalk\) \(E-mail\)
You will need to do something like CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" HTH Mike -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 17:05 To: CF-Talk Subject: check with an OR Hello,

WAY OT: C++ now Java

2000-12-20 Thread Robert Everland
Ok then where are some good beginning java starters? Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 10:59 AM To: CF-Talk Subject: RE: [RE: WAY OT: C++] They are similar,

Re: check with an OR

2000-12-20 Thread Todd Ashworth
CFSWITCH EXPRESSION="#(CGI.Remote_Addr)#" CFCASE VALUE="200.00.11.99,200.00.13.99,xxx.xxx.xxx.xxx,yyy.yyy.yyy.yyy" delimiters="," Do your cfmail /CFCASE /CFSWITCH Todd Ashworth - Original Message - From: "Robert Orlini" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

RE: check with an OR

2000-12-20 Thread Stephen Moretti
Robert, QUESTION: How can I add additional IP addresses using an OR statement to the above? I tried CFIF CGI.Remote_Addr is "200.00.11.99" or "200.00.13.99" but it only sees the 1st IP. cfset iplist = "200.00.11.99,200.00.13.99" cfif iplist contains CGI.Remote_addr /cfif

RE: check with an OR

2000-12-20 Thread Duane Boudreau
Try CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" Duane Boudreau Sr Software Engineer e-Dialog http://www.e-dialog.com Lexington, MA -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 12:05 PM To:

RE: LOCKING revisited...

2000-12-20 Thread Richard Kern
OK gentlemen, I've done some research and modifiy my earlier post as follows: You can expect that a user's browser is hitting you with 4 simultaneous threads, AOL uses 2, and the CFSserver is handling these concurrently because it is mult-threaded. It is very possible that requests to shared

Re: check with an OR

2000-12-20 Thread Dave Hannum
Proper syntax is: CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524

Re: check with an OR

2000-12-20 Thread Sean Renet
well in the case you gave, it would be CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" but if yer gonna add a bunch of ip addresses you might want to consider using CFSWITCH instead. cfswitch expression="#CGI.Remote_Addr#" cfcase value="200.00.11.99,200.00.13.99"

RE: check with an OR

2000-12-20 Thread Garza, Jeff
You need to specify the criteria more explicitly: CFIF CGI.Remote_Addr is "200.00.11.XX" OR CGI.Remote_Addr IS "xxx.xxx.xxx.xxx" OR CGI.Remote_Addr IS "xxx.xxx.xxx.xxx" OR etc Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]

Looking for Unix Cold Fusion Admnistrator

2000-12-20 Thread Donovan Rittenbach
if you have experience configuring cold fusion for linux, and would be able to help us get set up and running quickly, we'd like to hire your services. Please contact me. Donovan Rittenbach -- Donovan Rittenbach, M.A. ph:

Re: WAY OT: C++ now Java

2000-12-20 Thread Todd Ashworth
I've been going through the "Teach Yourself Java 2.0 in 21 Days" book. So far, it's been good for getting a crash course in all the basics. It's not hard to follow at all. Todd Ashworth - Original Message - From: "Robert Everland" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

PDF Generator

2000-12-20 Thread Stephen Engels
I am having problems with my pdf generator for cold fusion. Does anyone know of an unbreakable Html to PDF generator? Steve Engels Find the best deals on the web at AltaVista Shopping! http://www.shopping.altavista.com ~~ Structure your

Re: check with an OR

2000-12-20 Thread Dylan Bromby
I think your syntax is wrong. You have: CFIF CGI.Remote_Addr is "200.00.11.99" or "200.00.13.99" But, try: CFIF CGI.Remote_Addr is "200.00.11.99" or CGI.Remote_Addr is "200.00.13.99" That will work for sure. --Dylan - Original Message - From: "Robert Orlini" [EMAIL PROTECTED] To:

Re: WAY OT: C++ now Java

2000-12-20 Thread dave fauth
Beginning Java2 looks like a great book. Haven't had much time to delve into it yet. There is a link at www.forta.com/cf/bookshelf/ as well as the help files in studio talk about developing CFX tags in Java. Some good samples in there. also www.ibm.com/developer/java/ dave At 11:27 AM

Re: [Re: WAY OT: C++ now Java]

2000-12-20 Thread Alex
Also keep in mind these languages (C, C++, Java) take a long time to get good at. They are not CF. Also if you really want to learn the language stay away from the visual editors (code generators) ...stick with a good text editor (I like ultraedit). "Todd Ashworth" [EMAIL PROTECTED] wrote:

Re: check with an OR

2000-12-20 Thread Bud
On 12/20/00, Robert Orlini penned: QUESTION: How can I add additional IP addresses using an OR statement to the above? I tried CFIF CGI.Remote_Addr is "200.00.11.99" or "200.00.13.99" but it only sees the 1st IP. You have to repeat the whole condition each time: CFIF CGI.Remote_Addr is

Re: (ot) Domain Name Database

2000-12-20 Thread Bud
On 12/20/00, Todd Ashworth penned: Yes it is. You can download the daily files from Network Solutions after you sign up for some kind of 'partnership/membership' thing (it's free). Last I heard, the .com file alone was about 300 megs. And is that ALL .coms, or just the ones registered through

Re: CFAS Scheduler - I Give Up

2000-12-20 Thread Billy Cravens
You can set up and delete AT commands using CFEXECUTE. Typically: Use CFFILE to create a .bat file Use cfexecute to run the following command: AT 13:00 c:\file.bat The exact contents of file.bat depend on what you're wanting to do. -- Billy Cravens [EMAIL PROTECTED] paul smith wrote:

RE: LOCKING revisited...

2000-12-20 Thread Bud
On 12/20/00, Evan Lavidor penned: Are you saying that if I do the following: cflock scope="application" timeout="30" type="readonly" cfset variables.myvariable = application.myvariable /cflock First, can you set anything inside of a read only lock? and then later

client variables, WDDX, and Oracle

2000-12-20 Thread Scott Weikert
Hey gang - Got a quandary here. We're working on a order placement system. The plan is to keep a running status of the order in a client variable, stored in WDDX. Top of each page, deserialize the packet, add/adjust the contents of the resulting structure based on the previous form's content,

RE: LOCKING revisited...

2000-12-20 Thread Bud
On 12/20/00, Ben Lowndes penned: CF handles complex variables by reference, but simple variables by value... So if you want to move a structure out of the application scope you need to use the duplicate() function and not a direct reference. e.g. CFSET Application.TestStruct = "tructNew()"

RE: WAY OT: C++ now Java

2000-12-20 Thread JustinMacCarthy
I think the the OReilly books are great for reference, the wrox books Starting Java and Java Server programming are good for beginners (no C needed :-) ) to intermediate levels Also the java.sun.com site is really good too. The hardest concepts for CF moving to Java ,I think, is the stronger

RE: Undo Delete

2000-12-20 Thread DeVoil, Nick
Views help with security and can simplify coding. I don't think using them will in itself help performance. I would say as a rule of thumb, if your data is at all dynamic then use SP's. If it's static then I agree, cacheing it on the client is a good technique. Nick -Original Message-

OT: JS equivalent to IsNumeric???

2000-12-20 Thread Duane Boudreau
Is there a JS equivalent to IsNumeric??? Also does anyone know the address to the JS-Jive email list? Duane Boudreau Sr Software Engineer e-Dialog http://www.e-dialog.com Lexington, MA ~~ Structure your ColdFusion code with Fusebox. Get

Re: (ot) Domain Name Database

2000-12-20 Thread Eric Dawson
yeah that's what I mean. like http://www.netcraft.com but up to date. FYI: 33,942,107 worldwide (20,499,906 dot coms) What I want is a listing of: www.*sport*.??? for domain names Eric From: Bud [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: (ot)

RE: LOCKING revisited...

2000-12-20 Thread Ben Lowndes
Is the duplicate() function supported in 4.01? -- er... unfortunatly not. StructCopy() will be sufficent so long as your not trying to copy a nested structure. Duplicate() is an undocumented feature only present in CF4.5 upwards. Ben. ~~

re: check with an OR

2000-12-20 Thread Robert Orlini
Thanks to all the helpful replies on this one! I don't work w/CF consistently for our website so its simplicity sometimes escapes my notice...especially on this one. Robert O. ~~ Structure your ColdFusion code with Fusebox. Get the

RE: [Compress HTML output]

2000-12-20 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks for the reminder on that one! I was going to do that... I even had RFC 2616 on my desk to look up how to do that, and I completely forgot... I've actually got some "real work" to do today (darn clients always interrupting my fun!), but

dynamically naming variables

2000-12-20 Thread Jay Brushett
Hi, I need to use the Evaluate function to dynamically name variables in a cfloop. Using the function on the right hand side of a cfset works fine of course but CF won't let me use it on the left hand side (i.e. the variable name). Any ideas would be greatly appreciated. TIA, Jay

AW: JS equivalent to IsNumeric???

2000-12-20 Thread Christoph Schmitz
Hi, the function is isNaN(variable) and returns TRUE if the variable is not a number. DOn't know about the email list though. Regards, Chris -Ursprüngliche Nachricht- Von: Duane Boudreau [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. Dezember 2000 18:50 An: CF-Talk Betreff:

AW: CFAS Scheduler - I Give Up

2000-12-20 Thread Christoph Schmitz
Hi, well, did you try to restart the CF server after adding another task? I remember that with CF 4.0 that was an issue at least with Solaris. Regards, Chris -Ursprüngliche Nachricht- Von: paul smith [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. Dezember 2000 17:29 An:

RE: WAY OT: C++ now Java

2000-12-20 Thread Dave Watts
You should learn C++ too, it's good fun..(pointers are your friend ;-) ) With friends like that, who needs enemies? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your

RE: LOCKING revisited...

2000-12-20 Thread Dave Watts
CF handles complex variables by reference, but simple variables by value... This is a bit of an oversimplification. Queries and structures are passed by reference, but arrays are passed by value. I thought that arrays were passed by reference before, but I was wrong. Here's a demonstration:

RE: Undo Delete

2000-12-20 Thread Dave Watts
So I have a dba question. What is the difference between using a view instead of a stored procedure. Now I am well aware that you cannot make views as complex as sp's. I am actually wondering what the performance or otherwise difference between making a stored procedure which is

RE: LOCKING revisited...

2000-12-20 Thread Dave Watts
Is the duplicate() function supported in 4.01? No, it's new to 4.5.x. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code with Fusebox. Get the official

RE: LOCKING revisited...

2000-12-20 Thread Dave Watts
cflock scope="application" timeout="30" type="readonly" cfset variables.myvariable = application.myvariable /cflock First, can you set anything inside of a read only lock? You certainly can. The point of the lock above is to prevent writes to the Application scope

RE: client variables, WDDX, and Oracle

2000-12-20 Thread Patricia Lee
Curious, I am. Is the error that you're getting: Oracle Error Code = 1704 ORA-01704: string literal too long I ask because I'm working with Spectra on an Oracle db and that error is beginning to be a big bug in my hide. I'd like to know if your problems and mine might be related.

Re: WAY OT: C++ now Java

2000-12-20 Thread Peter Theobald
And don't forget sometime next year we will have to ability to write Java code that interacts seamlessly with our CFML code in the new Cold Fusion server. That makes Java an important thing to know (among other reasons). At 12:03 PM 12/20/00 -0500, dave fauth wrote: Beginning Java2 looks like

How to update a local database and cf server database simultaneously

2000-12-20 Thread AustralianAccommodation.com Pty. Ltd.
I am wondering how I can go about being able to update my local database file and update the same file on the cf server host at the same time. This way the database on my laptop version of my cf site will be updated and then the same information will be simultaneously be updated the same

RE: WAY OT: C++

2000-12-20 Thread lsellers
and of course min's site for CFX examples :-) (www.intrafoundation.com) And for a pure C++ COM example with full source, http://www.intrafoundation.com/freeare/tcpclient2.zip. One of these days I'll finish that thing. :) --min ~~

Re: [RE: WAY OT: C++]

2000-12-20 Thread Yvette Ingram
I would also recommend learning Java first. Now I'm learning C++. I think I would have had a hard time with C++ without having learned Java first. Just my 2 cents. Yvette Ingram Brainbench Certified ColdFusion 4.5 Programmer Email: ingramrecruiting@erols or [EMAIL PROTECTED] ICQ: 21200397

RE: LOCKING revisited...

2000-12-20 Thread Peter Theobald
When I get the chance I will compare timings for: ! !--- manual locking. Automatic read locking for Application scope turned OFF in administrator --- cflock

RE: client variables, WDDX, and Oracle

2000-12-20 Thread Dan Haley
If you have the CF Enterprise you can get around the 4k limit by creating your own "client variables". Using native drivers and the cfqueryparam tag you can insert more than 4K into a long field. insert into test (id, testing) values ( cfqueryparam

Re: WAY OT: C++ now Java

2000-12-20 Thread Yvette Ingram
Just For Starters: Java Book Beginning Java 2 JDK 1.3 Edition by Ivor Horton Java Tutorial http://java.sun.com/docs/books/tutorial/?frontpage-spotlight Yvette Ingram Brainbench Certified ColdFusion 4.5 Programmer Email: ingramrecruiting@erols or [EMAIL PROTECTED] ICQ: 21200397 -

RE: LOCKING revisited...

2000-12-20 Thread Peter Theobald
At 12:19 PM 12/20/00 -0500, Bud wrote: First, can you set anything inside of a read only lock? Yes, you can do anything you like inside a lock. CFLOCK is "advisory locking" which means all it does is check a flag to see if anyone else has an EXCLUSIVE lock on the same resource. If so, it waits

COM and CFOBJECT - beginner problem

2000-12-20 Thread Joel Firestone
All: First, I apologize for the length of this message. I just want everyone to see all the code I'm dealing with. I'm currently setting up a WebAuthorize Hub. I was sent an ocx file and an ASP page to test with. So I've supplied the ASP code and the code I'm trying to write. So I registered

RE: cfloop help (new)

2000-12-20 Thread mikec
I beleive there is a tutorial for this on the www.cfvault.com under tutorials Mike Cartier #code.monkey# ** Original Subject: RE: cfloop help (new) ** Original Sender: "Warrick, Mark" [EMAIL PROTECTED] ** Original Date: Tue, 19 Dec 2000 19:21:32 -0500 ** Original Message follows...

Re: (ot) Domain Name Database (found it)

2000-12-20 Thread Todd Ashworth
Finaly found that link: http://www.crsnic.net/dns/dnsonli.html Todd Ashworth Where can I get a domain name database? Can't seem to find a good source. www.netcraft.com is great but it is currently a little out

Re: [RE: WAY OT: C++]

2000-12-20 Thread David Cummins
Personally, considering that Java probably has more direct relevance to you, I'd start at the bottom and work my way up... unless you're a super-genius and love tackling the steepest part of the learning curve! David Cummins Robert Everland wrote: Well I figured if I learned C++ which is

OT:JRun , WebLogic comparison

2000-12-20 Thread mmilosav
Sorry for the OT. I was wondering if somebody has any feature comparison between JRun and WebLogic. Pricing for WebLogic will help too. Thank You Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virual Help Desk (VHD) Demo www.scorpiosoft.com/vhd/login.cfm

RE: WAY OT: C++ now Java

2000-12-20 Thread lsellers
Ok then where are some good beginning java starters? As much as I look down on java (watch out for the spit when I say that word), giving your (lack of) previous programming experience and the primary fact cf's moving to the java arena, then I'd suggest learning that first instead of c

RE: Fusebox

2000-12-20 Thread Warrick, Mark
The fusebox methodology has many benefits, and I really don't think it adds any time to the development cycle. In fact, I'm pretty sure it helps speed up development. One of the greatest advantages of the style is that you can modularize you code, and in doing so, you can assign pieces of

  1   2   >