SQL: hierarchical view of parent child categories

2004-04-22 Thread Dowdell, Jason G
Hi all, Here's s sql stumper, well, not really.But I haven't been able to figure out the best way to do it yet so I'm posting here.I know it's sql but it does have CF implications. Scenario: I have a table called CATEGORY with the following columns ID PK for table PARENT_ID If populated it's

RE: SQL: hierarchical view of parent child categories

2004-04-22 Thread Dowdell, Jason G
there! Finally you might consider Xindice (an open source XML database) as an option -- by its nature XML is hierarchical, and a better fit for hierarchical structures HTH Dick On Apr 22, 2004, at 6:42 AM, Dowdell, Jason G wrote: Hi all, Here's s sql stumper, well, not really.But I haven't

RE: CSS and Cloaking Search Engine question...

2004-03-31 Thread Dowdell, Jason G
First off, a search engine spider only reads the text on a fully rendered html page and it will not read external css files.So if you have your css in an external file it's not going to get read into the spider's memory.The spider will read the list of links below as if it were actually on the

IE 6 CFCookie

2004-02-12 Thread Dowdell, Jason G
Hi All, I have an application that sets 3 cookies using cfcookie using the following syntax cfcookie name=UserID expires=NEVER value=#Request.CookieInfo# The syntax is the same for all 3 cookies except for the fact that they have different names. I'm using _javascript_ to redirect the user to

RE: Any other (java) HTTP tags besides CFX_RawSocket?

2003-08-15 Thread Dowdell, Jason G
I've had good success with www.petdance.com/cf/ Download the cfx_http tag there and your woes should be fixed. ~jason -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 1:10 PM To: CF-Talk Subject: Re: Any other (java) HTTP tags besides

RE: Host Headers vs. CGI vars (was IIS Domain Naming Question)

2003-08-01 Thread Dowdell, Jason G
I would have two concerns with the CF script doing a task that's specifically designed for IIS. 1. Will take more processor for CF that it would for IIS because you're requiring a cf template to load as well as the IIS request instead of just the IIS request. 2. What happens if you move from

RE: anyone from florida

2003-07-31 Thread Dowdell, Jason G
I'm located in Cape Canaveral. -Original Message- From: Ewok [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 11:02 PM To: CF-Talk Subject: Re: anyone from florida Originaly yes : ) - Original Message - From: Kevin Langevin [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Form Building software

2003-03-28 Thread Dowdell, Jason G
Me too! -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 8:49 AM To: CF-Talk Subject: Re: Form Building software At 07:47 AM 03/28/03 -0600, Clint wrote: You just point it at a table and it generates a form. If anyone is interested I will

RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
If you want a fully qualified opinion from a developer's perspective you should contact James Ang. He works there as a developer and will give you an unbiased opinion of the product. Email me offlist if you want his email addr. ~Jason -Original Message- From: Bruce Sorge

RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
Quit your whining and develop some applications. This is petty. ~Jason -Original Message- From: charlie griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 12:03 PM To: CF-Talk Subject: Re: MedSeek If you want a fully qualified opinion from a developer's perspective you

RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
. Also, how is it that my opinion is biased? I do NOT work for MedSeek. I have been evaluating CMS applications for a while now, so I think that my opinion is qualified and unbiased. This is all I have to say. Bruce From: Dowdell, Jason G [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF

RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
My apologies to Charlie for calling him whiney sp? Thanks to all for ignoring this OT thread. ~Jason -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 1:25 PM To: CF-Talk Subject: RE: MedSeek Quit your whining and develop some

RE: WOT-Website Marketing

2003-03-20 Thread Dowdell, Jason G
I am the owner and this is a shameless plug. CF_ShamelessPlug GlobalPromoter.com has several free tools designed to help those that want to optimize their site themselves. I've developed all of these tools (as well as the site) myself in CF. Here's a link to the

RE: WOT-Website Marketing

2003-03-20 Thread Dowdell, Jason G
Marketing Do Meta Tags really matter anymore with regards to positioning a website within search engines? Does Google even look at Meta Tags? And what is a Meta Spider? :) -Gel -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] I am the owner and this is a shameless plug

TSQL Script to replicate a db?

2003-03-18 Thread Dowdell, Jason G
Hi All, I have a SQL2K db in a shared hosting environment at CFDynamics.com. Each time I need to duplicate the db (intranet db) for my clients I just use the export tool and export it to another client's db. The problem is that each time I do this I have to go back and set up the autonumber

RE: TSQL Script to replicate a db?

2003-03-18 Thread Dowdell, Jason G
the DB right click, and select Script DB, this gives you the necessary wizard to get everything, SP's, tables, Indexes etc. Jason Lees Development Team Leader National Express Systems. -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: 18 March 2003 14:47 To: CF-Talk

Includes within cfmail

2003-03-11 Thread Dowdell, Jason G
Is it acceptable to make include calls from within a cfmail tag? Here's a code snippet... cftry cfmail to=#form.email# from=#form.my_email# subject=#form.subject# cc=#form.cc_email#

RE: Linkpoint

2003-03-07 Thread Dowdell, Jason G
I'm curious about linkpoint's processing because it appears they have a subscription based system included with their API (even for the CFX) but it says nothing about how much it costs to set up an account with them? Do users need a merchant account before they can begin using linkpoint's API?

RE: Payment Gateway

2003-03-07 Thread Dowdell, Jason G
I don't think they do subscription billing though, do they? I'm looking for a processor, other than paypal, that does subscription billing and is reliable and has an API already in place for CF. ~Jason -Original Message- From: Jeffrey Polaski [mailto:[EMAIL PROTECTED] Sent: Friday, March

Comparing two listvars and deleting dups

2003-03-06 Thread Dowdell, Jason G
Anyone have code off the top of their head to delete duplicate values from 2 lists. Here's an example. I want to delete all of the list items in ListVar1 that appear in ListVar2 ListVar1 = a,b,c,d,e ListVar2 = c,e Any suggestions? ~Jason

RE: Comparing two listvars and deleting dups

2003-03-06 Thread Dowdell, Jason G
Email: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 8:55 AM To: CF-Talk Subject

RE: Comparing two listvars and deleting dups

2003-03-06 Thread Dowdell, Jason G
(ExistingUsers, x, ,) cfset newlist = ListDeleteAt(newlist, ListFindNoCase(newlist, x, ,), ,) /cfif /cfloop CurrentlyActiveUsers: #CurrentlyActiveUsers#br ExistingUsers: #ExistingUsers#brbr Cleaned List: #newlist#br /cfoutput -Original Message- From: Dowdell, Jason G

RE: Comparing two listvars and deleting dups

2003-03-06 Thread Dowdell, Jason G
: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:21 AM To: CF-Talk Subject: RE: Comparing two listvars and deleting dups Here's the solution I came up with... thanks for everyone's help. Maybe this should be a UDF :) cfset CurrentlyActiveUsers = a,b,c,d,e cfset

Concatenate columns in SQL Server

2003-03-06 Thread Dowdell, Jason G
Hi Guys, Just can't seem to remember how to concatenate columns in sqlserver. I thought it was double pipes, || then I thought it was a plus sign +. Just can't seem to stick these query columns together. Thanks, jason ~|

RE: globalpromoter.com

2003-03-05 Thread Dowdell, Jason G
That would be me... you can email me directly at [EMAIL PROTECTED] ~Jason -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 1:56 PM To: CF-Talk Subject: globalpromoter.com i know someone on here does this site. does anyone know who it is?

Subscription billing management

2003-03-03 Thread Dowdell, Jason G
Hi all, I have looked into building a subscription management application and have all of the basics covered. Payment Type, Subscription Length, Subscription Amount, Invoice, Invoice Items, Customer Info, Customer Billing Info, etc... I was wondering if anyone has something like this out there

Billing Mgmt System

2003-02-28 Thread Dowdell, Jason G
Hi All, I am going to build a billing system that is just like all the others out there and wanted to know if there is a freeware system or something another developer is willing to share. Here are the requirements. Execute a scheduled process daily to calculate totals for a monthly,

cfhttp errors

2003-02-07 Thread Dowdell, Jason G
Hi All, I have several tools on a site that utilize cfhttp. Often times I'll receive an IIS error Location Code 26 Server is too busy to fulfill your request... I'm wondering what methods of error trapping are available with cfhttp and if anyone knows what specifically causes it to bomb IIS

cfhttp error trapping

2003-02-07 Thread Dowdell, Jason G
Hi All, Hopefully the second post is a charm today since I got no replies on the first one. I have a site that uses cfhttp profusely. Often times it gets error messages like location code 26. I'm not sure why cfhttp is causing IIS to hang like that but it does. Does anyone know of ways to

RE: CF Hosting Suggestions

2003-01-22 Thread Dowdell, Jason G
I use CFDynamics.com for all of my hosting needs. Great space and features for the price. Support is always timely and accurate. They are customer centric and understand the intricacies of CF Hosting. Many hosts don't really understand how to administer a CF Server. Such was my experience with

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
I don't think it would be that difficult really. The weblog is going to have your ip address as well as the browser information for CFServer and the date/time as well as the accessed resource (page info). Then they just need to do a screenprint of your site if you're using it publicly. If you're

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
Well, I steal content from overture all the time. Although, I don't think it happens enough to raise a hair or even cause a hiccup in their server, I do it. And this tool is proof of it. I do put a disclaimer on the bottom of the page though stating that I don't own the information. This is

RE: Stealing content?

2003-01-20 Thread Dowdell, Jason G
- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 9:37 AM To: CF-Talk Subject: Re: Stealing content? Dowdell, Jason G wrote: I don't think it would be that difficult really. It is very easy. The weblog is going to have your ip address as well

Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
Hi All, What's the best way to delete a row from a query? I'd like to do it by referencing the primary key in the query but not sure how to go about it. Thanks, Jason - Jason Dowdell IM-AES Web Developer 321.799.6845 [EMAIL PROTECTED]

RE: Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 12:42 PM To: CF-Talk Subject: Deleting a row from a query? Hi All, What's the best way

RE: Deleting a row from a query?

2003-01-20 Thread Dowdell, Jason G
cfoutput query=qry1 #userID#br/ /cfoutput hr cfquery name=qry1 dbtype=query SELECT * FROM qry1 where userID != 'KSUH' /cfquery cfoutput query=qry1 #userID#br/ /cfoutput - Original Message - From: Dowdell, Jason G [EMAIL PROTECTED] Date: Monday, January 20, 2003 10:42

RE: URL Scope

2003-01-13 Thread Dowdell, Jason G
I wouldn't suggest client variables, nor any other type of session variable. Instead, once you complete your error checking on the action page you'll set a flag to true if there are any errors. I usually set Request.ErrorInd = 1 when there are errors encountered. Then check the value of

RE: URL Scope

2003-01-13 Thread Dowdell, Jason G
There is a limit to the amount of data that can be passed through a url in NS and it's 2k. That number was from v.4 so I don't know if it's still true. I've never passed that much data through the url so I don't really know. ~Jason -Original Message- From: Yves Arsenault

RE: Hosting and CFSchedule

2003-01-13 Thread Dowdell, Jason G
I use cfdynamics and I don't think there is a limit to the number of cfschedule's you can run within an hour. Give them a call though and find out. CFDynamics.com ~Jason -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 2:40 PM To: CF-Talk

RE: Search engine spider

2003-01-13 Thread Dowdell, Jason G
On one of my sites I have a script that cfhttp's a url and strips out all of the meta information, body and such and does calculations such as keyword density on them but it doesn't index an entire site. It just does one url at a time. I don't think it's what you're looking for but you can try it

RE: Search engine spider

2003-01-13 Thread Dowdell, Jason G
useful for small web dev firms in analyzing what keywords they want to optimize their sites for. http://www.globalpromoter.com/keyword_suggestion_tool.cfm Happy cfftp-ing!!! ~Jason -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 2:49 PM

CF_Authorize tag (repetitous)

2003-01-08 Thread Dowdell, Jason G
Hi All, Just wanted to know if anyone had an open source tag for posting transactions to Authorize.net. I know there are some available from devexchange but they're not free and this is for pro-bono work (trying to keep costs down). Any help would be greatly appreciated. I can give out the

RE: Random SQL statement

2002-12-18 Thread Dowdell, Jason G
This link goes into this in depth. http://www.aspalliance.com/stevesmith/articles/randomselect.asp ~Jason -Original Message- From: Chad [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 12:09 PM To: CF-Talk Subject: Random SQL statement I have a table with a Unique ID

RE: E-Commerce, and Variations

2002-11-26 Thread Dowdell, Jason G
Actually, I just went through the exact same scenario. Basically you'll need to create an item table, a attribute_group table, an attribute table, and an item_attribute_lookup table. Store your basic attribute types in the attribute_group table... size, color, weight. Then in the attribute table

Verity result calculations

2002-11-25 Thread Dowdell, Jason G
Hi all, I've implemented a verity collection based on a query. How are the relevancy scores calculated though? Even if I type in the exact phrase from the column I'm indexing it doesn't go above 82% accuracy? Has anyone ever seen a score above 90% before? If there is an algorythm out there

CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Windows 2000 Professional CFStudio 5.0 The splash screen disappears and then the cpu utilization hits 99% and stays there. This just started happening and I have no idea what has caused this. Any ideas? Thanks, Jason - Jason Dowdell IM-AES Web

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
the app would fix it. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 9:24 AM To: CF-Talk Subject: CFStudio 5.0 takes up

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 9:32 AM To: CF-Talk Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization Yeah, restarting the app isn't working at all because it won't restart. I was using the ftp functionality within cfstudio

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
cured the problem. Ken -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 9:32 AM To: CF-Talk Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization Yeah, restarting the app isn't working at all because it won't restart. I

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
now. All I recall is that they were buried reeeaaalll deep in it but once found it was obvious what to change. Sorry not to be more specific. Ken -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:30 AM To: CF-Talk Subject: RE

Shopping Cart Attributes

2002-11-19 Thread Dowdell, Jason G
Hi all, This is a theory question with regards to shopping carts that allow for inventory maintenance of the items in they display. Suppose I have a customer that has items with different weights, colors and sizes and wants to keep inventory of each one of them. They also only want to

RE: Shopping Cart Attributes

2002-11-19 Thread Dowdell, Jason G
AM To: CF-Talk Subject: RE: Shopping Cart Attributes Are you looking for DB schema and/or screen/display formats? If looking for DB, does the customer assign unique product numbers to each product/weight/color/size combination? Andy -Original Message- From: Dowdell, Jason G [mailto

RE: Verity index of a query

2002-11-15 Thread Dowdell, Jason G
/verity/collections on the server. I don't think you are required to re-index a database verity collection everytime you reboot your server... -Gel -Original Message- From: Dowdell, Jason G [mailto:DowdelJG;usano.ksc.nasa.gov] Does anyone know how/where a Verity index

RE: Verity index of a query

2002-11-15 Thread Dowdell, Jason G
of a query Yeppers. CF4.5 before that. -Original Message- From: Dowdell, Jason G [mailto:DowdelJG;usano.ksc.nasa.gov] Sent: Friday, November 15, 2002 8:35 AM To: CF-Talk Subject: RE: Verity index of a query I'm assuming you're running CF5 with the out of the box Verity engine

RE: Verity index of a query

2002-11-15 Thread Dowdell, Jason G
records... 15 minutes is going some (333 records a second!) Regards Stephen - Original Message - From: Dowdell, Jason G [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, November 15, 2002 2:23 PM Subject: RE: Verity index of a query Very interesting. I'll make sure

RE: Verity index of a query

2002-11-15 Thread Dowdell, Jason G
I have two tables I'm pulling together in a query result set. I need to know what I have to do in order to make sure that the current results of the query are the same as is in the collection. I think I have to update the collection but that's my question. ~Jason -Original Message-

Verity index of a query

2002-11-14 Thread Dowdell, Jason G
Does anyone know how/where a Verity index of a query is stored on the box? I'm wondering if the server is restarted whether or not the indexed query will remain or if it's stored in the CFServer's memory until that box shuts down... At which point the index would need to be recreated. Points to

Deleting duplicate values in list

2002-11-05 Thread Dowdell, Jason G
Hi all, Does anyone know of an easy way to delete duplicate values from a list. For example: List = Jason, Jeremy, John, Jason, Jack Corrected_List = Jason, Jeremy, John, Jack - Jason Dowdell IM-AES Web Developer 321.799.6845 [EMAIL PROTECTED]

RE: Deleting duplicate values in list

2002-11-05 Thread Dowdell, Jason G
(): http://www.cflib.org/udf.cfm?ID=533 -Original Message- From: Dowdell, Jason G [mailto:DowdelJG;usano.ksc.nasa.gov] Sent: Tuesday, November 05, 2002 1:35 PM To: CF-Talk Subject: Deleting duplicate values in list Hi all, Does anyone know of an easy way to delete duplicate values

OT: A Developer that owns a Science Site

2002-10-28 Thread Dowdell, Jason G
Hi Guys, This is off topic but, a while back one of the guys responding to a question posted here owned a science website. At least I think it was a science website. As I remember it had articles and news about the scientific community. He ran the site himself but did offer some advertising

group by in cfoutput

2002-10-15 Thread Dowdell, Jason G
Hi all, Here's a bit of a challenge. I have a single table storing category information similar to any search engine. The table structure looks like this ID NameParentIDLevel 1 Computers 0 1 2 Laptop 1 2 3

RE: group by in cfoutput

2002-10-15 Thread Dowdell, Jason G
at the group attribute of cfoutput. Should do what you want. HTH, Sam - Original Message - From: Dowdell, Jason G [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 15, 2002 2:30 PM Subject: group by in cfoutput Hi all, Here's a bit of a challenge. I have

RE: group by in cfoutput

2002-10-15 Thread Dowdell, Jason G
Here is the secret language I was looking for... #ChildName[CurrentRow]# I needed to understand how the grouping actually worked in order to know what syntax I could use to access the CurrentIndex of the query. ~Jason -Original Message- From: Dowdell, Jason G [mailto:[EMAIL

RE: group by in cfoutput

2002-10-15 Thread Dowdell, Jason G
Can you put maxrows=3 in the innermost CFOUTPUT? -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 3:15 PM To: CF-Talk Subject: RE: group by in cfoutput It does a portion of what I want. I need to restrict the output of the group

Slightly OT: Emulation software

2002-09-27 Thread Dowdell, Jason G
Hi all, I have a client that needs an extremely low cost solution to allowing users to access an access database from remote locations using the web. My thought is that they could use emulation software to connect to the web server and open the access db directly. Since there are only 2 or 3

RE: Slightly OT: Emulation software

2002-09-27 Thread Dowdell, Jason G
. If not something like VNC which I think is free but be aware of the security risks.. John. -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 13:49 To: CF-Talk Subject: Slightly OT: Emulation software Hi all, I have a client that needs an extremely low cost

Array question...

2002-08-16 Thread Dowdell, Jason G
I have a single dimensional array that I want to duplicate into a 2 dimensional array. The first dimension are all odd numbers in the array and the second dimension are all the even numbers in the array. e.g. Array as it exists now... Array[1] = One Array[2] = Planes Array[3] = Twelve Array[4]

RE: Array question...

2002-08-16 Thread Dowdell, Jason G
Good point. Thanks, Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 10:28 AM To: CF-Talk Subject: Re: Array question... You could use MOD: cfloop from=1 to=#ArrayLen(aMyArray)# index=i cfset aNewArray = ArrayNew(2) ~cfif i

Flushing Application scoped vars

2002-07-23 Thread Dowdell, Jason G
Does anyone know of a good way to flush the vars stored in the application scope? I tried setting the applicationtimeout to CreateTimeSpan(0,0,0,0) and that didn't do anything. I'm not sure how cfflush works but I think that has to do with headers and not with ColdFusion cacheing. Anyway, if

RE: Flushing Application scoped vars

2002-07-23 Thread Dowdell, Jason G
or Datasource names). -mk Mark A. Kruger, MCSE, CFG www.cfwebtools.com www.necfug.com .no more brochures! -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 8:37 AM To: CF-Talk Subject: Flushing Application scoped vars Does anyone know of a good

RE: Flushing Application scoped vars

2002-07-23 Thread Dowdell, Jason G
Man I hate that, it was the data. There was data corruption in the database and that screwed it all up. thanks guys, Jason -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:05 AM To: CF-Talk Subject: Re: Flushing Application scoped vars

Can't deserialize cfttp.filecontent

2002-07-16 Thread Dowdell, Jason G
I'm getting an error stating... unknown element encountered When I try to deserialize a cfhttp.filecontent variable I received from a cfhttp call. Does anyone have any ideas on why this might happen? I'm running cf5 on w2k. Thanks, Jason !--- Jason Dowdell [EMAIL PROTECTED]

RE: Can't deserialize cfttp.filecontent

2002-07-16 Thread Dowdell, Jason G
Now I've used the IsWddx() function and determined that for some reason the value being returned in the cfhttp.filecontent variable is not a wddx object. I'm sure I'm missing something small here but not sure what. Any ideas? Jason -Original Message- From: Dowdell, Jason G [mailto

RE: Can't deserialize cfttp.filecontent

2002-07-16 Thread Dowdell, Jason G
Solved the problem. I had xmp/xmp tags surrounding my data for some reason. Reason being, I copied code from Hal Helm's site on how to cfwddx. After removing that data the problem was fixed. ~Jason -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Tuesday

Accessing a dll on client machine

2002-07-09 Thread Dowdell, Jason G
Hi All, I have a client that wants to access a dll on the client's machine via a web browser and return information from that dll. Does anyone know if this is possible? Thanks, Jason !--- Jason Dowdell [EMAIL PROTECTED] 321.799.6845 IM AES - Web Developer ---

RE: Accessing a dll on client machine

2002-07-09 Thread Dowdell, Jason G
it. Josh -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 12:13 PM To: CF-Talk Subject: Accessing a dll on client machine Hi All, I have a client that wants to access a dll on the client's machine via a web browser and return information

RE: Accessing a dll on client machine

2002-07-09 Thread Dowdell, Jason G
on one of the client's servers? Thank you, John M Stover II [EMAIL PROTECTED] -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 12:13 PM To: CF-Talk Subject: Accessing a dll on client machine Hi All, I have a client that wants to access

Logging user footprints

2002-05-24 Thread Dowdell, Jason G
Hi all, I'm currently working on an enterprise level (clusterable and such) security system and I'm working on the application logging aspect of it now. I've built several security systems in the past and have done logging before so it's no big deal. Typically I'll log the remote_address,

encrypt dir and sub dir .cfm templates

2002-05-23 Thread Dowdell, Jason G
Hi All, What is the fastest way to encrypt a directory with multiple subdirectories of .cfm templates? I've tried the command line approach but it often throws errors and is a little time consuming. I thought of just creating a project once I'm ready to encrypt and then encrypt the project and

RE: encrypt dir and sub dir .cfm templates

2002-05-23 Thread Dowdell, Jason G
Oh, that would definitely be nice to have. I hate giving clients apps that aren't encrypted but somtimes I have no choice. Thanks, Jason -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 9:35 AM To: CF-Talk Subject: RE: encrypt dir

RE: encrypt dir and sub dir .cfm templates

2002-05-23 Thread Dowdell, Jason G
This program is awesome. I'm shocked it's free. This is exactly what I was looking for. Thanks for the tip! ~Jason -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 9:58 AM To: CF-Talk Subject: RE: encrypt dir and sub dir .cfm

ie vs ns javascript issue

2002-05-16 Thread Dowdell, Jason G
Hi all, I have the following javascript on a popup window. if (navigator.appName == Netscape) { function CloseForm(theForm) { theForm.submit(); setTimeout(window.close, 2000); } }

RE: SOLVED! ie vs ns javascript issue

2002-05-16 Thread Dowdell, Jason G
I hate it when this happens. I had another site open that uses frames and the results were being put in that frameset instead of my frameset. All is well with this script. ~Jason -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 9:41

Voice XML parsers

2002-05-15 Thread Dowdell, Jason G
Has anyone out there done anything with voice xml and ColdFusion yet? I'm working on some applications that would require parsing an audio file (i.e. .wav) and putting the contents into an xml document. Of course there are dialects and other languages but a vanilla English engine would be fine.

RE: Voice XML parsers

2002-05-15 Thread Dowdell, Jason G
tutorials On Wed, 15 May 2002, Dowdell, Jason G wrote: Has anyone out there done anything with voice xml and ColdFusion yet? I'm working on some applications that would require parsing an audio file (i.e. .wav) and putting the contents into an xml document. Of course there are dialects

RE: Voice XML parsers

2002-05-15 Thread Dowdell, Jason G
links. noise: http://msdn.microsoft.com/vstudio/device/speech.asp http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?ur l=/msdn-files/027/000/781/msdncompositedoc.xml Eric From: Dowdell, Jason G [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED

Flash + CF + Video

2002-04-24 Thread Dowdell, Jason G
Hi All, I may need to post this to a flash list but I thought I'd bring it up with the old faithful first. I have about 15 video files (.avi) that range in size from 5 meg to 20 meg. I have heard that with flash mx it has the ability to compress the size of the video without buying any other

Flash + CF + Video

2002-04-24 Thread Dowdell, Jason G
Okay, so noone responded to my post earlier this morning and that's fine. I'm not upset :0) Actually, my pal over at DuoDesign (Shannon) helped me out with this one since he has flashMX already. Here are the results. We took a .avi video file with full audio that was originally 15 meg.

BIG VULNERABILITY

2002-04-22 Thread Dowdell, Jason G
Hi All, I found this on cfdjlist and found it very worth of posting here since this list is getting more traffic than cfdjlist these days. I've tried this test on several of our more well known CF sites and many of them failed. Good morning: I wanted to pass this one along from the

RE: BIG VULNERABILITY

2002-04-22 Thread Dowdell, Jason G
See what happens when you have your head in code. Thanks for the reply :) -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Monday, April 22, 2002 10:06 AM To: CF-Talk Subject: Re: BIG VULNERABILITY Hi All, I found this on cfdjlist and found it very worth of

RE: ColdFusion based mass email module

2002-04-17 Thread Dowdell, Jason G
Justin, Do you have to do anything special if it's an html formatted message? Is there a failover in case the client's email client does not render html? Thanks, jason -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 9:57 AM To: CF-Talk

ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
Hi All, I have a customer who is running into page timeout errors while using the cfmail tag. The mailing list query contains about 5,000 records in it so we're looping through the cfmail tag that many times. I know I can set the requesttimeout attribute in the url but I'm looking for a more

RE: WAY OT: Lotus Notes Developers?

2002-04-16 Thread Dowdell, Jason G
My brother in law is a lotus notes/java/ColdFusion developer. What are you looking for? ~Jason -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 4:03 PM To: CF-Talk Subject: WAY OT: Lotus Notes Developers? Anyone here a Lotus Notes

RE: ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
for the to field. You will see better performance than with a loop, it might just be enough. jon Dowdell, Jason G wrote: Hi All, I have a customer who is running into page timeout errors while using the cfmail tag. The mailing list query contains about 5,000 records in it so we're looping

RE: ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
That sounds very interesting. Could you include a code snippet or example to show me how to do what you're proposing. I'm not sure the host will allow it but it's definitely worth looking into. Thanks, Jason -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent:

RE: ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
That's really interesting. I didn't know you could do anything like that. I think I'm going to experiment with that at home on my dev box first and then proceed from there. What particular mail server are you running? Thanks, Jason -Original Message- From: Justin Scott

RE: ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
Justin, Does the built in SMTP service of IIS need to be scheduled to run at certain intervals or does it normally already do that? Or should I write a .cfm template that does this? If I should write a cfm template to handle this... Have you done so... Can you point me in the right direction?

RE: ColdFusion based mass email module

2002-04-16 Thread Dowdell, Jason G
You answered my question. I thought I might have to write a coldfusion template and schedule it to run every so often or when I created the files in the spool dir. That's a pretty cool service of IIS, I had no idea you could use it. I'm going to put some code together and then test it. I'll

Clustered Client variable management

2002-04-12 Thread Dowdell, Jason G
I have a question regarding the application.cfm settings for client variable management when clustering. I'm working on an application that I need to maintain user state in. I want to use cfcookie to set a cookie on the user's machine that stores a unique key to identify this user by when his

RE: CF Web Hosting

2002-04-08 Thread Dowdell, Jason G
I have clients running on advances.net, media3.net and cfdynamics.com. My experience with advances.net is that they do not have enough experience hosting ColdFusion applications to keep the servers running at optimum speeds at all times. They are good people but I wouldn't recommend them. I

  1   2   >