RE: Slightly OT: DB Object Naming Conventions

2002-07-15 Thread Mark A. Kruger - CFG
Mike, I append vw to views and inx to tables. You should NOT append SP_ to a stored procedure. MSSQL will assume this is a system stored proc and check system tables for it first - before checking user tables. That's additional overhead. I usually use spProcedureName (no underscore). As for

RE: Get rid of session variables when browser closes

2002-07-15 Thread Mark A. Kruger - CFG
Mike, I'm not sure why this would work? Isn't it simply setting the values of cookie.cfid and cookie.token to themselves? Mark -Original Message- From: Haggerty, Mike [mailto:[EMAIL PROTECTED]] Sent: Monday, July 15, 2002 2:48 PM To: CF-Talk Subject: RE: Get rid of session variables

RE: cfscript for in vs cfloop collection...

2002-07-15 Thread Mark A. Kruger - CFG
Yep... the for loop expects a counter (for (i = 1; i le Len(somevar); i = i + 1) ) There is no in key word for it. sorry. You will have to determine the number of childnodes in /trackresponse/activity and use that as your counter. mark -Original Message- From: Jon Hall [mailto:[EMAIL

RE: cfscript for in vs cfloop collection...

2002-07-15 Thread Mark A. Kruger - CFG
is the Force, and a powerful ally it is. - Yoda -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, July 15, 2002 4:00 PM To: CF-Talk Subject: RE: cfscript for in vs cfloop collection... Yep... the for loop expects a counter (for (i = 1; i le Len(somevar

RE: cfscript for in vs cfloop collection...

2002-07-15 Thread Mark A. Kruger - CFG
=== Raymond Camden, ColdFusion Jedi Master for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED

RE: Counter Function

2002-07-14 Thread Mark A. Kruger - CFG
no problem (been thereg) -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 10:01 PM To: CF-Talk Subject: RE: Counter Function Thanks for the great suggestions :o) Thanks, Mark -Original Message- From: Mark A. Kruger - CFG [mailto

RE: Storing Queries in Application Scope

2002-07-13 Thread Mark A. Kruger - CFG
doing it that way requires trips to the database for every request. the whole point of using the application scope is to avoid this - especially for large lookup type queries. -Original Message- From: Joe Bastian [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 2:51 PM To:

RE: Counter Function

2002-07-13 Thread Mark A. Kruger - CFG
Mark, First - let the DB do the work for you. If you are using access, MS SQL or MySQL there is a column type with a property that does this for you. In the case of access its called autonumber (or counter if you are doing DDL), in the case of Mssql it's an identity property that you set in EM

RE: CFmail can only deliver to our domain name...

2002-07-12 Thread Mark A. Kruger - CFG
None of our mail servers have audio cards hence none of them relay aloud (they are all silent)... g -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 10:04 AM To: CF-Talk Subject: RE: CFmail can only deliver to our domain name... You are

RE: Web Services and CF5

2002-07-11 Thread Mark A. Kruger - CFG
Well - this is a web service in genral terms, but the amount of code you have to write makes it more kludgy compared to doing it in cfmx. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:57 AM To: CF-Talk Subject: RE: Web Services and CF5

RE: Stock quotes in XML format?

2002-07-11 Thread Mark A. Kruger - CFG
www.finwin.com p.s. they carry canadian. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 12:16 PM To: CF-Talk Subject: Stock quotes in XML format? Anybody know of a place that provides stock quotes in XML format?

RE: RE: Stock quotes in XML format?

2002-07-11 Thread Mark A. Kruger - CFG
To: CF-Talk Subject: Re: RE: Stock quotes in XML format? Where is it on finwin? Also, I need it in a non-wddx format. - Original Message - From: Mark A. Kruger - CFG [EMAIL PROTECTED] Date: Thursday, July 11, 2002 11:34 am Subject: RE: Stock quotes in XML format? www.finwin.com p.s

RE: Internal Server Error

2002-07-11 Thread Mark A. Kruger - CFG
Yes - check to see if you've specified any - unassigned IP addresses, each site should be specified as a separate ip in IIS properties - either that or you should use host headers. -Original Message- From: Critter [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 2:50 PM To:

RE: Re[2]: Internal Server Error

2002-07-11 Thread Mark A. Kruger - CFG
So - you took out the host headers, assigned them to separate IPs and now it works? -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 5:36 PM To: CF-Talk Subject: Re[2]: Internal Server Error oi Mark!! It did previously say any unnasigned, but I

RE: How do I do a SQL insertion attack?

2002-07-11 Thread Mark A. Kruger - CFG
why not cfqueryparam ? cfqueryparam cfsqltype=CF_SQL_CHAR value=#url.name# As I understand it, this creates a Local sql variable with a char datatype out of your url variable. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:35 PM

RE: [whitehat] SQL Injection MS-SQL

2002-07-10 Thread Mark A. Kruger - CFG
What about injection attacks involving non character type fields? How about checking for semi-colons? greater than or less than? SQL key words? Personally, I use Cfqueryparam to give me strict datatyping and a measure of security (plus it really boosts performance). -mk -Original

RE: SSL

2002-07-09 Thread Mark A. Kruger - CFG
I use Geotrust - 278.00 for a 2 year cert (128bit). Also easy purchase and install. -mk -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 12:28 PM To: CF-Talk Subject: OT: SSL Is Verisign the only company you buy a 128bit certificate from?

RE: CMemoryException

2002-07-09 Thread Mark A. Kruger - CFG
Yeah - this is one of the lovely messages I've seen coming from query of a query - informative eh? Something is wrong with your query syntax I'll wager. -mk -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 3:05 PM To: CF-Talk Subject:

RE: Anyone use this email Verifier?

2002-07-08 Thread Mark A. Kruger - CFG
There's a web service for this (free). You can find it at www.xmethods.net. I wouldn't expect ANY approach to be terribly reliable though. Mark -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 12:35 PM To: CF-Talk Subject: RE: Anyone use

RE: Application vs Request........

2002-07-08 Thread Mark A. Kruger - CFG
I'm guessing no - since all the sets are compiled to Java byte code, it would not make sense for one kind of assignment to be coded differently from another kind of assignment. -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 4:46 PM To:

RE: Naming Convention choice

2002-07-05 Thread Mark A. Kruger - CFG
Paul, I use the underscore and mixed case for tags. The most important thing is to find a style that makes sense to you (and your team) and conform to it throughout your projects. I hate doing application mods where the coding is inconsistent. Of course with the case-insensitive nature of CF,

RE: Cold Fusion Marking Information

2002-07-03 Thread Mark A. Kruger - CFG
Matt, You have a child named cold fusion? Bound to grow up to be scientist - or a serial killer (with my apologies to general mills)ha. -mk -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 10:11 AM To: CF-Talk Subject: RE: Cold Fusion

RE: Listing Current Activity (Stored Procedure??)

2002-07-03 Thread Mark A. Kruger - CFG
James, Stored procs are great - and a great idea, but why for this specific thing? Couldn't you do it in a query? select blah blah. WHERE month(columname) = month(gedate()) -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 12:27 PM

RE: Listing Current Activity (Stored Procedure??)

2002-07-03 Thread Mark A. Kruger - CFG
my two cents... We've found that SP's are much much quicker than queries. So even if you could do it in a query, you may want to consider a stored proc. At least do some performance testing on both. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: DevCon 2002 info

2002-07-02 Thread Mark A. Kruger - CFG
Ditto to that Paul. I took the whole family for 8 days of fun (only 4 for me though g). -Mk -Original Message- From: Wille, Paul [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 3:38 PM To: CF-Talk Subject: RE: DevCon 2002 info As per Macromedia's site

RE: Firewall configuration for CF and SQL (sort of OT)

2002-06-29 Thread Mark A. Kruger - CFG
Dave, Can you speak to the possible vulnerabilities involved with setting up a separate web resource domain for the hosts in the DMZ and using trust relationships to specify access to internal resources? I have a client set up this way. I thought the arrangement was fairly elegant with good

RE: What is the best variable scope?

2002-06-27 Thread Mark A. Kruger - CFG
You are correct - CF does cache includes and it uses a FIFO buffer that is configurable as to size in the cf administrator. CF does check to see if the file has been modified before using the cached template and that is technically a low everhead disk access. If you have a site on a single

RE: WDDX in Session Variables

2002-06-27 Thread Mark A. Kruger - CFG
Dwayne, Ok - if you use the application scope you don't need to serialize it. You can store it directly as a structure - removing that step. However, you would still have to lock it (on cf 5) when you read it. The client scope WILL require you to wddx it. I have a couple of application where

RE: Re: WDDX in Session Variables

2002-06-27 Thread Mark A. Kruger - CFG
You would still probably store the packet in the application scope - for all the reasons already mentioned. -mk -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 10:46 AM To: CF-Talk Subject: Re: Re: WDDX in Session Variables I think the

RE: MX and SQL2000 on same 2 CPU Box

2002-06-26 Thread Mark A. Kruger - CFG
I don't think so. You will need a way to specify to MX to use only the first cpu. I do not believe sql2000 will lock the second cpu exclusively. -mk -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 12:01 PM To: CF-Talk Subject: MX and

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
The host header is a required part of ANY http request. A typical HTTP request might start like this: GET /ws/ProcessSoapReq.cfm HTTP/1.1 Content-Type: text/html Referer: *some refer address Content-Length: 779 User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows.NT.5.0) Host:

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
Tom, This do not think this is the case. I use virutal sites with SSL and it does seem to work. -mk -Original Message- From: Tom Nunamaker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 3:02 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP The other

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
Ah... I see what you mean. Yeah - I do have to have a cert that is specific to the host header - NOT just the IP address. -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 3:23 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
90013 Tel 213.244.5205 Email [EMAIL PROTECTED] Hello Stupid, and welcome to your crappy computer. - Strong Bad, HomestarRunner.com -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 1:00 PM To: CF-Talk Subject: RE: Pointing

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
: Pointing multiple sites to the same IP You ought to tell Microsoft then. Read this: http://support.microsoft.com/default.aspx?scid=kb;EN-US;q187504 Tom -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 3:27 PM To: CF-Talk Subject: RE

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
to determine which one to use. But that is not the case if I only have one cert - right? I think that is why my virtual site works. Mark -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 4:17 PM To: CF-Talk Subject: RE: Pointing multiple

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
domains with SSL that are using multiple certificates. Tom -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 4:41 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP Ok - here's a thought based on a reading of your

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

2002-06-26 Thread Mark A. Kruger - CFG
I've seen it done to convert a site to CF without the necessity of duplicating all the files. The files can be edited directly and CFML added as needed. It is also done as a way to implement obscurity - to sheild users from seeing what technology is being used. -Original Message-

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

2002-06-26 Thread Mark A. Kruger - CFG
live!! -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, 27 June 2002 9:38 AM To: CF-Talk Subject: RE: CFMX not reading .html files like CF5! Very bad! I've seen it done to convert a site to CF without the necessity of duplicating all the files

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

2002-06-26 Thread Mark A. Kruger - CFG
: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, 27 June 2002 9:38 AM To: CF-Talk Subject: RE: CFMX not reading .html files like CF5! Very bad! I've seen it done to convert a site to CF without the necessity of duplicating all the files. The files can be edited directly and CFML

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

2002-06-26 Thread Mark A. Kruger - CFG
! No No No please dont flame me Mark. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Mark A. Kruger - CFG [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 26, 2002 4:50 PM Subject: RE: CFMX not reading .html files like CF5! Very bad! Hey Andrew

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

2002-06-26 Thread Mark A. Kruger - CFG
] - Macromedia Associate Partner www.macromedia.com - Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Mark A. Kruger - CFG [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

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

2002-06-26 Thread Mark A. Kruger - CFG
- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 6:54 PM To: CF-Talk Subject: RE: CFMX not reading .html files like CF5! Very bad! *Smile* Point taken.. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, 27 June 2002

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

2002-06-26 Thread Mark A. Kruger - CFG
prod, You might hear some clucking as I run!! Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Mark A. Kruger - CFG [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 26, 2002 4:56 PM Subject: RE: CFMX not reading .html files like CF5! Very bad! Ok I'm

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
sure - www.necfug.com is one example. This is a small server that hosts about 5 sites. Mark -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 7:51 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP On 6/26/02, Mark A. Kruger - CFG

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
-Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 7:51 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP On 6/26/02, Mark A. Kruger - CFG penned: Tom, ha... maybe I should. Here is an example of a secure site that is virtually hosted

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
-Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 8:03 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP Bud, We kinda figured out why this works in spite of the MS article (or I guess as additional information

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
: Pointing multiple sites to the same IP they probably have a custom 403.3 error setup in IIS for www.necfug.com. it most likely redirects to secure.cfwebtools.com. i did that for a site i did for DOD. co. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Pointing multiple sites to the same IP

2002-06-26 Thread Mark A. Kruger - CFG
to the site so your clients won't get that message. co. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 11:31 PM To: CF-Talk Subject: RE: Pointing multiple sites to the same IP Chris, ha You give me too much credit. This is my

RE: Getting datatype before SELECT

2002-06-20 Thread Mark A. Kruger - CFG
Shannon, You can run sp_columns *tablename* on the table. It returns a query with a datatype column. Here's a sample UDF that may help a little. It uses the DATA_TYPE column from the stored proc. It could just as easiy be written to use the TYPE_NAME column (that would have made it more

CF Chart question

2002-06-20 Thread Mark A. Kruger - CFG
I'm trying to get CF Chart to work on a CFMX installation with Apache (windows XP). When it calls the tag it simply hangs the and the page doesn't finish loading. Does Anyone have any tips for setting up cf chart? I'm using a disk cache. Mark Mark A. Kruger, MCSE, CFG www.cfwebtools.com

RE: Need help with CFMX/ASP.NET comparison...

2002-06-18 Thread Mark A. Kruger - CFG
with 100,000+ clients each that are going to make use of my Web service. Are you suggesting assigning each one of them their own port, so that my firewall can properly tell them apart? -Matt -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, June 17, 2002 2:51

RE: SSL COM Objects (WAS: Need help with CFMX/ASP.NET comparison. ..)

2002-06-18 Thread Mark A. Kruger - CFG
Dave, You wrote: As I understand it, you can write your own HTML generation code, and use CFIMPORT to invoke that code when an HTML tag is parsed. For example, you can create a page called form.cfm, and use CFIMPORT within the page to instruct the page to run form.cfm whenever

RE: Improve Query

2002-06-18 Thread Mark A. Kruger - CFG
index the date and possibly the page and/or page_count column (not to get too carried away). You could even consider making one of those 3 a candidate for a clustered index (depending on the other queries that are run against this table). -mk -Original Message- From: Michael Ross

RE: Coldfusion Apps You've Built

2002-06-14 Thread Mark A. Kruger - CFG
just afraid to do it before the last chapter ha. In fact, a good part of our business is in modifying, upgrading or optimizing broken or crappy cf code (most of which we did not write... I said most). Mark A. Kruger, MCSE, CFG www.cfwebtools.com www.necfug.com ..no more brochures! -Original

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

2002-06-14 Thread Mark A. Kruger - CFG
..random idiocy... ouch Ok, I've got Dave with 3 points and Keith with 4 (mostly on that last barb . not bad - but pretty close to the belt so watch it). Now go to a neutral corner and skulk for 5 minutes (and Dave, get that eye bandaged up ok). : ) .hehe -Original Message- From:

RE: CFMX and SQL 2000 Views

2002-06-13 Thread Mark A. Kruger - CFG
Scott, There is a new settings to select directo or as a cursor in the advanced tab. My guess is that the cursor wouldn't work correctly. You should probably try the direct select (or maybe its the other way around ... hmm). -mk -Original Message- From: Van Vliet, Scott

RE: DNS Havoc!!

2002-06-13 Thread Mark A. Kruger - CFG
I'm getting the nw IP from both 207.x.x.x and 68.x.x.x -mk -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 1:47 PM To: CF-Talk Subject: SOT: DNS Havoc!! Hey guys i just switched to a new host for the website www.entelligence.com But for

RE: Alternative to CFMail

2002-06-13 Thread Mark A. Kruger - CFG
Duane, 2 things come to mind. You could use a COM object, a C++ or Java CFX tag, or (I've only heard of this) you can format files correctly and drop them in a directory monitored by an email service. There is no way to directly talk to an SMTP server (no native cf way to do it anyway). -mk

RE: Locking a record in database!!

2002-06-12 Thread Mark A. Kruger - CFG
You don't want to do this in the DB. DB locking is for tuning performance and concurrency. What you are referring to is more like application logic. I think I would flag the record in the table and check the flag before opening it for editing - then reset the flag when done. However, you must

RE: CF 5 and CFMX

2002-06-11 Thread Mark A. Kruger - CFG
hehe... yeah - I was amazed I got any COM to work on CFMX. It's really very quirky, especially when setting properties. I'm guessing the type matching isn't quite right. And it isn't going to be faster under any circumstances as far as I can see - since there is a middle layer now setting in

RE: OT: Backups

2002-06-11 Thread Mark A. Kruger - CFG
Ian, NT and win2k OS come with a a backup program that allows an administrator to schedule backups to tape. It's cheap and easy - but it has limitations, one of which is that it will NOT backup locked files. Sys admins who want to protect critical data usually install a 3rd party backup

RE: CF 5 and CFMX

2002-06-10 Thread Mark A. Kruger - CFG
Dave, CFMX uses a Java COM wrapper that was developed by a 3rd party and rolled into CFMX. The name of the company that built it escapes me at the moment. However, this added layer is probably not good news for COM centric CFML code. Mark -Original Message- From: David Jones

RE: IE Content Adviser

2002-06-10 Thread Mark A. Kruger - CFG
Yep... you have the words nudity, sex and violence.. all on the same line too (you rogue!). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 10:09 AM To: CF-Talk Subject: Re: IE Content Adviser Interesting, apparently there's an

RE: Oracle and SQL Server Licenses

2002-06-10 Thread Mark A. Kruger - CFG
Mike, So far we have never found an MS rep or an Oracle rep to give us a clear explination - in fact the explinations tend to vary from rep to rep (ha). It's pretty convuluted. However, if you are doing the SQL right and using the internet licensing option then your connection is (as I

RE: Help with EDI formats

2002-06-10 Thread Mark A. Kruger - CFG
Billy, Not really XML... more like the pre-cursor to XML. It's a widely used data exchange format where all the meta-data and structure is specified in the header. It's also not necessarily file-based, nor does it primarily use HTTP. Mark -Original Message- From: Cravens, Billy

MAC file upload

2002-06-10 Thread Mark A. Kruger - CFG
It seems like this was covered a few weeks ago but I can't find it. Can someone give me the quick low down on the trick for uploading files from a MAC? -mk *** I have a CFFILE question for you. I am comparing results from a Mac and a Windows machine. On the windows

RE: MAC file upload

2002-06-10 Thread Mark A. Kruger - CFG
- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 1:40 PM To: CF-Talk Subject: MAC file upload It seems like this was covered a few weeks ago but I can't find it. Can someone give me the quick low down on the trick for uploading files from a MAC? -mk

RE: MAC file upload

2002-06-10 Thread Mark A. Kruger - CFG
@ Vanderbilt University [EMAIL PROTECTED] -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 3:40 PM To: CF-Talk Subject: MAC file upload It seems like this was covered a few weeks ago but I can't find it. Can someone give me the quick low down

RE: CFMX-Linux won't initate Session-Scope

2002-06-07 Thread Mark A. Kruger - CFG
Patric, There is an Admin feature to use JSP type sessions ( .cfm;sessionid=adf090 .. etc.) Is it possible this is set? Mark -Original Message- From: Patric Stumpe [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 10:31 AM To: CF-Talk Subject: CFMX-Linux won't initate

RE: Dynamically Naming Applications

2002-06-06 Thread Mark A. Kruger - CFG
Ben, Not to say your stupid... but you are going to create a new application everytime someone hits any page inside of this directory - including the application scope and any application variables you have created. No user will be able to see any application variables from any other user

RE: query of query problem (again)

2002-06-06 Thread Mark A. Kruger - CFG
Ryan, Some problems (or nuances) are: The column names are case sensitive - make them all upper case. The SUM( ) feature does not work in tandem with the WHERE clause - it returns the sum of ALL, and does not apply the where filter. The same may be true of AVG() - but I'm not sure If you are

RE: CF MX works on WebSite Pro (was: RE: Ridiculous Problem!)

2002-06-06 Thread Mark A. Kruger - CFG
Dave, I'd say your on the money here. The DAY after the CEO of Oracle touted 9i as unbreakable Oracle bombarded with hacking attempts (some of which were successful leaving egg on the Oracle face). MS gets that kind of attack every day - and unlike Oracle, MS products run on the desktop of

RE: query of query problem (again) -- SOLVED???

2002-06-06 Thread Mark A. Kruger - CFG
in 0 records. Is this a bug? Does a query of query ignore the and clause if it's not capitalized? Ryan -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 10:13 AM To: CF-Talk Subject: RE: query of query problem (again) Ryan, Some

RE: CFMX and .NET on the same computer?

2002-06-06 Thread Mark A. Kruger - CFG
Shawn, I have the 2 on my XP machine. It was very frustrating getting IIS 6, CLR and CFMX to cooperate. I installed Apache and it runs fine no. No conflicts with CF or with .NET - IIS seems to have been the big issue. Mark -Original Message- From: Shawn Grover [mailto:[EMAIL

RE: Hacking a shared SQL server

2002-06-06 Thread Mark A. Kruger - CFG
hehe... see - now that is kinda mean -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 3:08 PM To: CF-Talk Subject: RE: Hacking a shared SQL server Who needs to hack a file system on a shared host? Just use cfmail to email other people's

RE: Stored Procedure Problem

2002-06-05 Thread Mark A. Kruger - CFG
Frank, Here's my experience: You must pass the parameters in the same order as they are declared in SQL. The named parameter feature (as I understand it) applies to Oracle - I also believe it to be deprecated in CFMX. The parameters must be in the same order - If you are assigning default

RE: Stored Procedure question

2002-06-05 Thread Mark A. Kruger - CFG
Phillip Yes and yes... however, like hitting queries within a loop, you should be careful or you will have a process that is slow and resource intensive - and therefore not maintainable in the long run. As far as the cfoutput query=... that's no problem - except if you subsequently try to do a

White papers and articles

2002-06-04 Thread Mark A. Kruger - CFG
Can anyone out there send me a few links to white papers or articles regarding CFMX. I've read several, but I do not have the links at the moment. I'm mostly interested in articles that mention (dare I say tout) the J2EE compliance and standards based integration of the new server product.

RE: Modified Browser Type

2002-06-04 Thread Mark A. Kruger - CFG
Dave, There's probably some Hack plugin for your browser that can modify the user_agent cgi variable. Do a google search. However, on the client side, the browser is determined (often) by detecting what it will support (layers for example). You probably can't change this - however, if you are

RE: CFFILE question

2002-06-04 Thread Mark A. Kruger - CFG
Only if you are using an account for cf server and you are logged into that server as that user. It's tricky. Unc paths are easier to work with. Just make sure you have permissions and use: \\servername\sharename\filename Mark -Original Message- From: phumes1 [mailto:[EMAIL

RE: CFFILE question

2002-06-04 Thread Mark A. Kruger - CFG
Yes.. we have found that the cf server must have permissions and running as that user AND That the user himself usually must be logged into the desktop to use a mapped drive. However, UNC mappings should work regardless of whether the user is logged into the desktop. Perhaps someone else has a

RE: Querying a table for its columns

2002-06-04 Thread Mark A. Kruger - CFG
Eric, If its mySql you can try describe tablename and it will return a query one of which is the column name. If it's SQL server, you can use sp_columns tablename. -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 2:15 PM To: CF-Talk Subject:

RE: Bottom Line

2002-06-03 Thread Mark A. Kruger - CFG
All of it... Dreamweaver is a code IDE and Cold fusion server is an application development platform : ) -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 3:24 PM To: CF-Talk Subject: Bottom Line Ok, this IS a newbie question but I think

RE: Emergency: Authorize. net woos

2002-05-24 Thread Mark A. Kruger - CFG
I'm confused. Ok - Why would anyone be using cfhttp with the ADC relay method? Doesn't everyone who use Auth.net with CFHTTP automatically use ADC Direct (the method that returns a comma delimited list). - Mark -Original Message- From: James Ang [mailto:[EMAIL PROTECTED]] Sent:

RE: Emergency: Authorize. net woos

2002-05-24 Thread Mark A. Kruger - CFG
Tony, If you are using ADC Direct Response (not relay - direct), the type of implementation where you get a comma delimited list in return for your post, then you are not yet required to use the refer URL. Here's a snippet from the integration doc that Auth.net published.

RE: Setting CGI.REMOTE_ADDR

2002-05-22 Thread Mark A. Kruger - CFG
If you are using CF_authorize - or any other tag that uses ADC direct response, the skinny is that you will not be affected by the change in Authorize.net's new format. Here's a note from Big O: Dear CF Authorize Customer, AuthorizeNet is now requiring all Merchants who connect to the

RE: Macromedia Forums (aka FuseTalk)

2002-05-20 Thread Mark A. Kruger - CFG
neil neil... tsk tsk tsk g -Original Message- From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 2:19 PM To: CF-Talk Subject: RE: Macromedia Forums (aka FuseTalk) Blow what? Neil Clark Team Macromedia http://www.macromedia.com/go/team Announcing

RE: Apology

2002-05-20 Thread Mark A. Kruger - CFG
Yes! ... for 2 reasons. Those who are actually trying to make money wouldn't be lumped together with all those freebies g. -Original Message- From: Eric Mathews [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 3:25 PM To: CF-Talk Subject: RE: Apology I'll see your vent and raise

RE: Seeking ColdFusionMX Training in Boston, MA

2002-05-18 Thread Mark A. Kruger - CFG
a page that you can search by location. Good luck! Mark A. Kruger, MCSE, CFG www.cfwebtools.com ..no more brochures! -Original Message- From: David Fafard [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 18, 2002 5:02 PM To: CF-Talk Subject: Seeking ColdFusionMX Training in Boston, MA

RE: Subquery from the same table: Is it possible??

2002-05-16 Thread Mark A. Kruger - CFG
James, You wrote ** whereIN (select fullname from tbl_users where username = '#session.username#') AND role LIKE 'key_user%' *** Where WHAT ?you have to specify a column with the same data type for

RE: GetTickCount()

2002-05-16 Thread Mark A. Kruger - CFG
Shawn, One caveat to gettickcount( ). It does NOT return any values below 10 miliseconds. I surmise that it is a limitation of the process that tracks execution (perhaps where it is first initialized in the execution thread). -mk -Original Message- From: Shawn Regan [mailto:[EMAIL

RE: GetTickCount()

2002-05-16 Thread Mark A. Kruger - CFG
Dave, It must be able to tell values in increments of less then 10 - otherwise I would never see 35 or 16 or 18 mils. I would only see 30, 20 or 10 right? Isn't it just for processes that tick below 10 mils (like a query that runs for 8 mils) that it has a problem? I see variance in the

RE: Client var problem

2002-05-15 Thread Mark A. Kruger - CFG
This error occurs when you fail to offer the services of your shiny sql server to list manager g. -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 9:10 AM To: CF-Talk Subject: Client var problem We've got a shiny new SQL 2000 server storing

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

2002-05-15 Thread Mark A. Kruger - CFG
One good reason is that CFMX will automatically play nice with .NET and with J2EE - which are the 2 technologies competing fiercely for the same share. CFMX is sort of like switzerland during the war g. -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL

RE: [admin] List status

2002-05-15 Thread Mark A. Kruger - CFG
Ok - Michael, send the details for giving you money via paypal (are there details)? CFWT will send some payola to you g. Mark -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 9:37 AM To: CF-Talk Subject: Re: [admin] List status Allow

RE: Verity (was: [admin] List status)

2002-05-15 Thread Mark A. Kruger - CFG
As an aside - Could you not use Q of a Q to cache a verify search (and not have to fool with persistant variables)? -mk -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 10:38 AM To: CF-Talk Subject: RE: Verity (was: [admin] List

RE: [admin] List status - A CHALLENGE

2002-05-15 Thread Mark A. Kruger - CFG
Already gave at the paypal office - in for 75. -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 11:15 AM To: CF-Talk Subject: RE: [admin] List status - A CHALLENGE Ok.. Putting on my board of directors hat... So, if I read things properly,

RE: [admin] List status - A CHALLENGE

2002-05-15 Thread Mark A. Kruger - CFG
Yeah - I usually pledge along about Wednesday, just so they will get back to the news ha. -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 11:43 AM To: CF-Talk Subject: RE: [admin] List status - A CHALLENGE I was just going to say that this

RE: [admin] List status - A CHALLENGE

2002-05-15 Thread Mark A. Kruger - CFG
can get a t-shirt, coffee mug, or license plate with a 'Swirly Thing' on it? -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 10:08 AM To: CF-Talk Subject: RE: [admin] List status - A CHALLENGE Yeah - I usually pledge along about

<    2   3   4   5   6   7   8   9   10   >