Re: HTTP POST operation

2002-06-14 Thread Kurt Ward
iables. > > Hope that helps > > Regards > > Stephen > > - Original Message - > From: "Kurt Ward" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Friday, June 14, 2002 1:52 PM > Subject: HTTP POST operation > >

HTTP POST operation

2002-06-14 Thread Kurt Ward
I need to send an HTTP POST to a CF template from a Java application. How do I access the posted data? Or can I? CF version is 4.5 Thanks __ This list and all House of Fusion resources hosted by CFHosting.com. The place for

RE: Datatypes

2002-02-19 Thread Kurt Ward
http://www.sd81.k12.wa.us/dev/MSSQLdata.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 4:43 PM To: CF-Talk Subject: Datatypes What are the equivalents of Accesses "text" and "number" datatypes in SQL Server? _

RE: free CF hosting - is available!

2002-02-14 Thread Kurt Ward
Amen, brother. -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 14, 2002 1:31 PM To: CF-Talk Subject: RE: free CF hosting - is available! Oh come on now, if people can discuss broadband issues, bitch about open source, and discuss the post on fuc

RE: Just wanna bitch

2002-02-13 Thread Kurt Ward
ey that's great - how do I sell my clients on these. oh wait... -Original Message- From: Kurt Ward [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 4:18 AM To: CF-Talk Subject: RE: Just wanna bitch Open Source The best thing to hit software development in the last

RE: Just wanna bitch

2002-02-13 Thread Kurt Ward
mention www.sourceforge.net, and many other hosts of Open Source projects. I realize you specifically are talking about end-user apps (ie. message boards), but I think it fits the same foot. Kurt Ward -- Insert Fancy Footer Here -- This space intentionally left blank ;-) -Original

RE: Bug in CF 5's FirstDayOfMonth?

2002-02-06 Thread Kurt Ward
Skip .Net, go open source ;-) Check this out: http://www.go-mono.com -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 10:27 AM To: CF-Talk Subject: RE: Bug in CF 5's FirstDayOfMonth? No you are right, read my follow up email on this.

RE: Content Management

2002-02-05 Thread Kurt Ward
CVS is a great tool; Most if not all Open Source projects use CVS (ie. Sourceforge, etc.). There are some GUI apps for CVS, and some IDE's have "built in" access such as Forte. Having never used VSS, I can't comment on it. But knowing who produces it would lead me to believe it probably has som

RE: Best way to store credit cards in database?

2002-01-28 Thread Kurt Ward
Depends on how the transactions are set up and how complicated you want to make it. A project I had in the past that wanted return customers to have the ability to store CC numbers. Card transactions were not real-time, so what we had was a bit field indicating whether or not the customer had a

RE: OT PMS

2002-01-25 Thread Kurt Ward
0,83,141 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 10:25 AM To: CF-Talk Subject: OT PMS can anyone give me the rgb for pantone 541U? __ Why Share? Dedicated

RE: Dealing with inventories

2002-01-17 Thread Kurt Ward
VERY true. For our situation (and I would guess most),we are only concerned with clearance items because there may not be any additional product due to discontinued items, etc. As far as "regular" items, we only keep track of inventory in order to display an estimated ship time, and not whether o

RE: Dealing with inventories

2002-01-17 Thread Kurt Ward
We do this for clearance items to keep from overselling stock. If a clearance product is added to a basket, we flag the qty as "hold". If the items are purchased within one hour, we decrement the inventory. We have a stored proc running every 15 minutes that removes any unpurchased items from bask

RE: Viewing Schema diagrams? sourceforge?

2002-01-03 Thread Kurt Ward
We have always used Visio in the past for this. Dave, I'm not sure what version of Visio you are talking about, but 5.0 has the capabilities to save/export to a variety of formats (HTML, gif, jpg, png, etc.) -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Using XML to Document Projects

2001-12-18 Thread Kurt Ward
There is something similar to JavaDoc already in the works: http://cfdoc.sourceforge.net/ -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 11:29 AM To: CF-Talk Subject: SOT: Using XML to Document Projects Hey folks, this one is k

RE: XLS as a DSNless Connection

2001-12-12 Thread Kurt Ward
Excel ODBC: ConnectionString="Driver={Microsoft Excel Driver (*.xls)}; DriverId=790; Dbq=c:\somepath\mySpreadsheet.xls; "DefaultDir=c:\somepath;" Excel OLEDB via MS Jet ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0; Da

Apache Xindice Project

2001-12-12 Thread Kurt Ward
The XF_Xindice Toolkit is now available through the developers exchange. The admin application will follow in a couple of days. The project is hosted on SourceForge if anyone is interested in contributing. Kurt ~~ Structure your ColdFusion code wit

RE: UPS Prices

2001-12-10 Thread Kurt Ward
I'm pretty sure that pulling rate quotes from the UPS site via the CGI gateway is still a violation of their site usage rules. Registering and using the XML tools was for the most part painless and the tools are very cool (address verification, tracking, rates, etc.). They also send email notifi

RE: How do people work around the current limited cfmail

2001-12-10 Thread Kurt Ward
We have battled this problem for 2 years. First there was the "bare LF" problem with Linux Qmail (and CFMail not building emails per the RFC), plus undeliverables of every nature, etc., etc.. We also tried ASPMail, which was configured per the docs and it worked sporadic at best. Our solution:

RE: alternatives to MS SQL

2001-12-06 Thread Kurt Ward
Jon- Check into this MySQL interface: http://www.dbtools.com.br/index.php It has some very powerful import/export routines (MS SQL import, export as XML, etc.). I haven't used anything since for MySQL... Kurt -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Thursday, Dece

RE: alternatives to MS SQL

2001-12-06 Thread Kurt Ward
PervasiveSQL is a good product. I have used it in the past with CF and liked it enough to say I'd use it again. The server is fairly easy to set up and speed is comparable to most RDBMS systems. If you don't need support for transactions, I would go with MySQL. There are plenty of resources on

Xindice (formerly dbXML) Client

2001-12-05 Thread Kurt Ward
Background: Xindice (formerly dbXML as it is being moved to the Apache Foundation) is an open source native XML database server intended to manage large numbers of small XML documents. The documents are stored in collections and the server provides the ability to query these collections using XPa

RE: CFX_Print - anybody have it?

2001-12-03 Thread Kurt Ward
If you are just printing text files, just create a batch file and use the copy command. Then use CFExecute to call the batch file and pass the params copy.bat: copy %1 %2 (%1 is the source argument, %2 is the destination) cf code: LPT1 would print to a printer connected to LPT1 on the CF ser

RE: Single user CF5 license available

2001-11-01 Thread Kurt Ward
I'll join in late ;-) Personally, I think this is gay as well. What if I have no interest in using CF Studio as my IDE? The more I see software requirements like this, the more I dig into alternatives like MySQL and PhP... Kurt -Original Message- From: Peter Tilbrook [mailto:[EMAIL PR

RE: OSX CF Port?

2001-10-03 Thread Kurt Ward
I am assuming you are referring to CF Server, not studio. Mac OS X is Unix based. I'm not sure if the *nix version of Cold Fusion has been tested, but there are people running *nix versions of MySQL, Apache, PhP, etc. on Mac OS X so I don't see why it wouldn't be possible... -Original Messa

RE: Printing reports on per page

2001-09-25 Thread Kurt Ward
This will work in IE only: -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 7:54 AM To: CF-Talk Subject: Printing reports on per page This must be a no-brainer but. I'm creating a report from a large recordset. How can I get

RE: cf and apache

2001-09-21 Thread Kurt Ward
Try IBM HTTP server. This IS Apache with 128 bit SSL support. Free since it's Apache, but costs for support (which is optional, we have never needed support and as a result have never paid anything. We have been running a load balanced farm of 5 servers for 2 years without a hitch. You'll find

RE: ImageMagick - anyone use with CF?

2001-09-18 Thread Kurt Ward
I have used it before without a hitch using cfexecute. Not my favorite way of doing things, but it works. Kurt -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 1:50 PM To: CF-Talk Subject: ImageMagick - anyone use with CF? I found som

RE: E-Commerce...? Duane Boudreau FIRED by client

2001-09-13 Thread Kurt Ward
Take it elsewhere children. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 10:35 AM To: CF-Talk Subject: RE: E-Commerce...? Duane Boudreau FIRED by client I hate to break the news to you Mike Randolph but I'm still employed by my cl

RE: real time processing

2001-09-12 Thread Kurt Ward
I wouldn't even attempt this in CF. You will have to use Java/ActiveX Control/etc. for real time or near real time data due to the need for a persistent connection. Take a look at LabView from National Instruments. Kurt -Original Message- From: Chase, John [mailto:[EMAIL PROTECTED]] Se

RE: Need decryptor tag for CFUG presentation

2001-06-08 Thread Kurt Ward
Simple solution: Don't offer encryption of the templates in the first place. If you want what the encryption TRIES to do, write compiled code in whatever flavor you like for COM/Java/CFX. -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08, 2001 12:5

RE: SQL Server 7 book(s) recommendation

2001-05-15 Thread Kurt Ward
Personally, I think the M$ books are too vague (rendering them useless), and a waste of money. The best book I've come across (and has since been referred to as "the bible") is "Transact-SQL Programming" from O'Reilly. It covers MS SQL 7 and certainly has more than just T-SQL. Kurt -Origina

RE: Outputting Raw CFML

2001-05-10 Thread Kurt Ward
#Doh# -Original Message- From: Kuehn, Matthew [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 3:18 PM To: CF-Talk Subject: Outputting Raw CFML I want to build an app that will traverse our directories and extract the text within ColdFusion comments. I will use this to build a

RE: Problems with forms in MSIE 5 Mac?

2001-05-08 Thread Kurt Ward
IE on the Mac is terrible about padding with spaces. You may also want to use the Trim() function on any form fields being passed. -Original Message- From: JB [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 1:25 PM To: CF-Talk Subject: RE: Problems with forms in MSIE 5 Mac? I'v

RE: cf AND fLASH iNTEGRATION

2001-05-03 Thread Kurt Ward
www.flashcfm.com -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 4:26 AM To: CF-Talk Subject: RE: cf AND fLASH iNTEGRATION Hi all, I need some advice on where to look for info on how to incorporate CF query info into dynamic flash files. For

RE: Passing back the ID field from an Insert

2001-04-27 Thread Kurt Ward
INSERT INTO Tablename(one,two,three) VALUES('a','b','c') DECLARE @MyId int SELECT @MyId = @@identity SELECT @MyId as NewId -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 2:51 PM To: CF-Talk Subject: Passing back the ID field from an Insert

RE: New CF5 Partner Hosting License

2001-04-26 Thread Kurt Ward
Hmm... good thing some of us know PhP and ASP... we may need those skills after all. -Original Message- From: Gordon Burns [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 3:01 PM To: CF-Talk Subject: Re: New CF5 Partner Hosting License At 14:19 26/04/01 -0400 Howie Hamlin said

RE: Sending mail with coldfusion

2001-04-26 Thread Kurt Ward
Bill, There are several other issues with CFMAIL that led us to abandon it (such as strict RFC compliant email servers like QMail, etc.). If you are on a Win32 setup, you may want to look at the AspMail COM object from www.serverobjects.com This component is heavy duty with a list of heavy hitt

RE: Carolina CF User Group (CCFUG)

2001-04-24 Thread Kurt Ward
I'd go, but Charleston SC is a bit too far from Chapel Hill... ;-) Kurt -Original Message- From: P@tty Ayers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 12:54 PM To: CF-Talk Subject: Carolina CF User Group (CCFUG) I'm wondering if anyone here has been part of this group,

RE: moving CF from Windows to HP-UX?

2001-04-18 Thread Kurt Ward
Case sensitivity. Application.cfm NOT application.cfm, OnRequestEnd.cfm NOT onrequestend.cfm, and ALL of your variable names will have to be consistent regarding case. Other than that, their are a few quirks but nothing really stands out that I can think of. Kurt -Original Message- From

COM Problem

2001-04-12 Thread Kurt Ward
or in a reproducible fashion you should contact Allaire technical support." The COM interface is ServerObject's ASPMail V4.0 I get the error when calling ANY method. Kurt Ward Senior Web Developer SailNet.com ~~ Structure your ColdF

RE: USPS API

2001-04-06 Thread Kurt Ward
Robert, We implemented USPS shipping via the XML/API for international shipping about 3 months ago. Pretty simple to work with. Let me know if you want any specifics. Kurt -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 3:09 PM To: CF-

RE: UPS/ FedEx shipping

2001-04-04 Thread Kurt Ward
Duane, This can be a tricky subject depending on what is being shipped. For example, some hazmat products can be shipped UPS ground, but not next day air or second day air (any materials that are combustable or are are fire hazard such as flares, etc.). We currently have ~160 out of 40,000 produ

RE: using for ASP?

2001-04-04 Thread Kurt Ward
Can't be done. Try ASPTear. -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 11:31 AM To: CF-Talk Subject: using for ASP? Can anyone tell me if it is possible to perform a with ASP as the template? If it is possible please also pro

RE: disabling RDS

2001-03-30 Thread Kurt Ward
Disable the RDS Service in the NT Service manager... -Original Message- From: William J Wheatley [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 10:53 AM To: CF-Talk Subject: disabling RDS so whats the best way to disable RDS if you dont want the boxes to have RDS ACCESS? if yo

RE: Win2k

2001-03-21 Thread Kurt Ward
We are have been running Win2k SP1 with Apache and CF 4.5.1 SP2 for several weeks without problems under pretty high traffic (~5m page hits/month). The server is a little more reliable, but I don't really see a speed improvement over NT 4. Kurt -Original Message- From: Thomas Chiverton

OT:XSLT sorting

2001-03-12 Thread Kurt Ward
Sort of off topic. I am recieving XML data via a CFHTTP POST and using Brett Suwyn's tag to process the results with an xsl transformation. The problem I am running into is when I try to sort a portion of the XML tree in the DOM. Here is a piece of the code: If I pr

CFHTTP Problem

2001-03-10 Thread Kurt Ward
Maybe you guys can help me out. On our production server and dev server (both running Apache and CF 4.5.1 SP2)I call an application on an external server via CFHTTP with POST as the method and one form variable that contains XML. I get the results back and take care of them accordingly. No probl

RE: email

2001-03-05 Thread Kurt Ward
Becky, You can send the email in HTML format (assuming the reader is using that option). You could also stick with plain text and use tabs (Chr(9)) and CRLF's to attempt a formated output. -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 2:5

RE: Dynamic state color

2001-01-16 Thread Kurt Ward
Ryan, Check out GeoChart at http://www.vdstech.com/geochart.htm If you are running on a win32 platform, this COM object is great. All of their demos, etc. are written in ASP. I am in the process of re-writing their demo apps in ColdFusion for them, and have had great results using it on a projec

RE: OT State Sales Tax Tables

2001-01-11 Thread Kurt Ward
Dan, Careful! There are alot more than 50 records for this as they are generally by county. For example, Florida sales tax rates may be 6%, 6.5%, 6.75%, and 7%; South Carolina rates are 5%, 6%, and 7%. Same thing with most states. I'm not sure of a single source for all states. I got the 2 me

RE: SSL

2001-01-09 Thread Kurt Ward
: CF-Talk Subject: RE: SSL Do you also use cfincludes in the ssl page? > -Original Message- > From: Kurt Ward [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, January 09, 2001 9:26 AM > To: CF-Talk > Subject: RE: SSL > > Not true. We are currently using 4-5 cus

RE: SSL

2001-01-09 Thread Kurt Ward
Not true. We are currently using 4-5 custom tags in templates that include everything from the header to the footer. Kurt -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 10:23 AM To: CF-Talk Subject: SSL I am told by my fellow develo

RE: CF in South Carolina??

2001-01-09 Thread Kurt Ward
Rick- No! There are 8 Coldfusion developers where I work- from senior to just learning! Also, Bosch Automotive in Charleston uses CF for some intranet type projects, and I can think of several other businesses or individuals who use CF. ;-) Kurt -Original Message- From: Richard L Smi

RE: Multiple Servers - Cluster Cats

2001-01-08 Thread Kurt Ward
I'm not sure what to expensive amounts to, but we use a hardware based load balancing system (Big IP www.bigip.com) that works very well for the web servers (a farm of three, with central data storage). For our SQL Servers, we also use a central data server for the DB's with the load between

RE: CFX CyberCash Question....

2001-01-05 Thread Kurt Ward
working version. Is this the case? Heath -Original Message- From: Kurt Ward [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 8:44 AM To: CF-Talk Subject: RE: CFX CyberCash Question Kevin, I use the CF_ CyberCash tag with no problems as follows: https://cr.cybercash.com/cgi

RE: CFX CyberCash Question....

2001-01-05 Thread Kurt Ward
Kevin, I use the CF_ CyberCash tag with no problems as follows: https://cr.cybercash.com/cgi-bin/" CCPS_HOST = "http://cr.cybercash.com/cgi-bin/" CYBERCASH_ID = "#CybercashID#" HASH_SECRET = "#Cybercash_Hash#" MERCHANT_KEY="#Merchant_Key#" MO_ORDER_ID="#GetOrder.ID#" MO_VERSION="3.2.0.2" MO_PRIC

RE: SQL SUM Question

2001-01-03 Thread Kurt Ward
Select Number from Tbl_Numbers SUM(Number) AS MyVar #MyVar# -Original Message- From: Kevin Queen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 03, 2001 4:36 PM To: CF-Talk Subject: SQL SUM Question List, If I run the following query: Select Number from Tbl_Numbers SUM(Number) h

RE: load-balancing (using radware solutions and cold-fusion)

2001-01-03 Thread Kurt Ward
you would probably want a failover file server with replicated data. It also makes it easier if you need to add another web server to the farm. Kurt Ward 8degrees-design http://www.8degrees-design.com -Original Message- From: Olivier Moulene [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Collection and Indexing question

2000-12-27 Thread Kurt Ward
Yes, a site can have multiple collections (actually, fewer smaller collections are better if you have a really large site). For dynamic pages, you index the collection from a query. Yes it can work with fusebox. -Original Message- From: mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, D