Re:Good way to search XML

2003-10-18 Thread Roger Benningfield
user-list
user username=barneyb
 nameBarney Boisvert/name
 passwordmyPass/password
/username
user-list

...If you want to search that same snip by name, you
have to use XPath to get the entire user list in a CF array, and then loop
the array and search.

Barney,

Any reason you wouldn't just use:

//user[name='Barney Boisvert']

--
Roger Benningfield
JournURL
community-powered weblogs  diaries
work: http://journurl.com/
blog: http://admin.support.journurl.com/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Merchant Account Suggestions

2003-10-18 Thread Mike Miessen
Chase Manhattan bank for your merchants number, verisign for your
gateway.

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 9:49 AM
To: CF-Talk
Subject: RE: Merchant Account Suggestions

paypal by far is the easiest. 

...tony

tony weeg
senior web applications architect
navtrak, inc.
www.navtrak.net
[EMAIL PROTECTED]
410.548.2337

-Original Message-
From: Ricky Fritzsching [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 10:30 AM
To: CF-Talk
Subject: Merchant Account Suggestions

I have a small business that I am doing an e-commerce application for
and
they are wanting to setup a merchant/gateway account for the website. I
have
not had any experience with setting up a this type of an account and I
am
wondering what are my options. 

Is there something that is not rather expensive that you have used?I
am
prepared for the monthly payments and %'s taken out, but there are just
so
many damn options.

All suggestions are welcome.Thank you!

---
Ricky Fritzsching



_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Verity on Linux

2003-10-18 Thread Yves Arsenault
Hello,

I've been looking at the live docs and see that the Verity engine in
CFMX doesn't run on any recent RH system and also doesn't on Suze..

Does anyone run MX on Linux with the Verity engine working well?

Also, I have been looking into Lucene
(http://jakarta.apache.org/lucene/docs/index.html).

Are there any other solutions out there?

TIA,

Yves Arsenault
Carrefour Infotech
5, Acadian Dr.
Charlottetown, PEI
C1C 1M2
[EMAIL PROTECTED]
(902)368-1895 ext.242

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.528 / Virus Database: 324 - Release Date: 16/10/2003

 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: (Admin) Respect

2003-10-18 Thread Andy Ousterhout
Michael,
When I click on this link, I get a blank page.Same if I copy and past into
IE.Any thoughts as to why I can't access it?I am logged in to the site

Andy
-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 3:42 PM
To: CF-Talk
Subject: Re: (Admin) Respect

 What SS event? Could you tell more?

http://www.houseoffusion.com/lists.cfm?link=m:5:3044:43245
It has all the details and most of the relevant links. Any further
discussion on
the event should be moved to CF-Community.
Thanks


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:Card swiper interface?

2003-10-18 Thread Andrew Spear
I made an interface using _javascript_.There is no actual form field on the page, so you don't have to worry about focus.The _javascript_ on the page grabs the keystrokes, throws them in a hidden form, and then submits the form.It was used for a time clock app using a Drivers License.I don't have the code with me, but I could dig it up if you're interested.Email me off list...

Andrew ([EMAIL PROTECTED])

Hi all,

Anyone out there have any experience connecting a credit card swiper to 
a ColdFusion application? We have a POS that we built for a client. 
Right now they enter CC numbers by hand. But they're busy (that's a 
good thing) so they want to ease the process.

Ideas?

Thanks in advance,

Ian Lurie

Portent Interactive
An Internet Marketing Agency
http://www.portentinteractive.com
http://www.searchengineoptimization.cc

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




anyone no what i do with this?

2003-10-18 Thread cf
im trying to convert an asp site to cfm and im going through an xml output
and i come across this code

Response.Write reply![CDATA[
		Response.Write rs(reply)
		Response.Write ]]/reply

not sure what the CDATA is??

what do i do with it?

is it ok to just do this?

reply
![CDATA[#recordset.reply#]]
/reply

or can i take it out?
ty


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Card swiper interface?

2003-10-18 Thread Jim T
I would be interested
-Original Message-
From: Andrew Spear [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 18, 2003 9:23 AM
To: CF-Talk
Subject: Re:Card swiper interface?

I made an interface using _javascript_.There is no actual form field on
the page, so you don't have to worry about focus.The _javascript_ on the
page grabs the keystrokes, throws them in a hidden form, and then submits
the form.It was used for a time clock app using a Drivers License.I
don't have the code with me, but I could dig it up if you're interested.
Email me off list...

Andrew ([EMAIL PROTECTED])

Hi all,

Anyone out there have any experience connecting a credit card swiper to
a ColdFusion application? We have a POS that we built for a client.
Right now they enter CC numbers by hand. But they're busy (that's a
good thing) so they want to ease the process.

Ideas?

Thanks in advance,

Ian Lurie

Portent Interactive
An Internet Marketing Agency
http://www.portentinteractive.com
http://www.searchengineoptimization.cc


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




xml output

2003-10-18 Thread cf
what would be the proper way to output this to xml? see below

seems like ther is a tag u got to add
this is the code in flash that needs to load it off of my cfm page
var MsgList = new XML();
	MsgList.ignoreWhite=true;
	MsgList.>



!--- get  sort messages by the most recent ---
cfquery name=qMes datasource=gb
SELECT * FROM guestbook ORDER BY postdatetime DESC
/cfquery

cfoutput query=qMes
cfoutput
/threads
 message

		subject
		#qMes.subject#
		/subject

		number
		#qMes.number#
		/number

		email
		#qMes.email#
		/email

		url
		#qMes.url#
		/url

		body
		#qMes.message#
		/body

		sex
		#qMes.sex#
		/sex

		reply
		#qMes.reply#
		/reply

		icon
		#qMes.icon#
		/icon

		posted
		#qMes.postdatetime#
		/posted

		face
		#qMes.face#
		/face

		username
		#qMes.username#
		/username

		icq
		#qMes.icq#
		/icq

/message
/threads
/cfoutput
/cfoutput


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Verity on Linux

2003-10-18 Thread Johan Steenkamp
Yves

We have Verity, CF MX 6.1 running as normal on RedHat 9.x (with latest patches).

Johan
www.assetnow.com

- Original Message - 
From: Yves Arsenault 
To: CF-Talk 
Sent: Sunday, October 19, 2003 4:26 AM
Subject: Verity on Linux

Hello,

I've been looking at the live docs and see that the Verity engine in
CFMX doesn't run on any recent RH system and also doesn't on Suze..

Does anyone run MX on Linux with the Verity engine working well?

Also, I have been looking into Lucene
(http://jakarta.apache.org/lucene/docs/index.html).

Are there any other solutions out there?

TIA,

Yves Arsenault
Carrefour Infotech
5, Acadian Dr.
Charlottetown, PEI
C1C 1M2
[EMAIL PROTECTED]
(902)368-1895 ext.242

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.528 / Virus Database: 324 - Release Date: 16/10/2003


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Verity on Linux

2003-10-18 Thread Chris Kief
Can you explain how you got Verity running?

Macromedia issue number 50943 states Verity cannot index documents on
RedHat Linux versions 7.3 and later.
(http://www.macromedia.com/support/coldfusion/releasenotes/mx/mx61_known_pro
blems.html#verity)

chris


From: Johan Steenkamp [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 18, 2003 1:42 PM
To: CF-Talk
Subject: Re: Verity on Linux

Yves

We have Verity, CF MX 6.1 running as normal on RedHat 9.x (with latest
patches).

Johan
www.assetnow.com

  - Original Message - 
  From: Yves Arsenault 
  To: CF-Talk 
  Sent: Sunday, October 19, 2003 4:26 AM
  Subject: Verity on Linux

  Hello,

  I've been looking at the live docs and see that the Verity engine in
  CFMX doesn't run on any recent RH system and also doesn't on Suze..

  Does anyone run MX on Linux with the Verity engine working well?

  Also, I have been looking into Lucene
  (http://jakarta.apache.org/lucene/docs/index.html).

  Are there any other solutions out there?

  TIA,

  Yves Arsenault
  Carrefour Infotech
  5, Acadian Dr.
  Charlottetown, PEI
  C1C 1M2
[EMAIL PROTECTED]
  (902)368-1895 ext.242

  ---
  Outgoing mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.528 / Virus Database: 324 - Release Date: 16/10/2003



 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: xml output

2003-10-18 Thread Michael T. Tangorre
could you be a little more descriptive?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 18, 2003 2:07 PM
To: CF-Talk
Subject: xml output

what would be the proper way to output this to xml? see below

seems like ther is a tag u got to add
this is the code in flash that needs to load it off of my cfm page
var MsgList = new XML();
MsgList.ignoreWhite=true;
MsgList.>



!--- get  sort messages by the most recent ---
cfquery name=qMes datasource=gb
SELECT * FROM guestbook ORDER BY postdatetime DESC
/cfquery

cfoutput query=qMes
cfoutput
/threads
message

subject
#qMes.subject#
/subject

number
#qMes.number#
/number

email
#qMes.email#
/email

url
#qMes.url#
/url

body
#qMes.message#
/body

sex
#qMes.sex#
/sex

reply
#qMes.reply#
/reply

icon
#qMes.icon#
/icon

posted
#qMes.postdatetime#
/posted

face
#qMes.face#
/face

username
#qMes.username#
/username

icq
#qMes.icq#
/icq

/message
/threads
/cfoutput
/cfoutput

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: SQL Script Generation Tools

2003-10-18 Thread C. Hatton Humphrey
I know this isn't directly related to CF but it's something that I've seen
out there before and hopefully someone knows what I'm talking about.At my
last web job there was a stored procedure or extended stored procedure that
you could call and pass a database name, table name and action and it would
generate stored procedures to handle the action... for example if you had a
users table you could pass in the action insert and it would create a stored
procedure for inserting entries into the table.

Has anyone else heard of this and know where I can get it?

Thanks!
Hatton Humphrey

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: xml output

2003-10-18 Thread cf
yes
ok heres what im doing
look at this guestbook http://www.ssql.net/Guestbook/Guestbook.htm
they sent me the code but dont speak english  told me what i can figure
as good luck, lol

heres some code, i put it on web to have smaller message
here is the flash .as file that needs to recieve the xml and display the
guestbook
http://www.4best-friends.com/flashfile.txt

this is the original message.ASP code that goes with it
http://www.4best-friends.com/aspCode.txt

this is so quick cheesy cfm code that i can get to output the db query but
have no idea how to get it into the flashin xml
http://www.4best-friends.com/cffile.txt

the rest of it seems ok, just this one main page i cant get to go.

ty:)





 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Com Object not working in 6.1

2003-10-18 Thread Brook Davies
Hello Saturday Peoples,

I have aCOM object which I can create like this:

cfobject type=COM name=MyObj class=bBounceX.BoogieBounce 
action="">

But when I try to call one of the methods, the server hangs and never 
returns anything. Has any one seen this before?

Brook


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: Do you have a Wheel on you mouse? If so....

2003-10-18 Thread Brook Davies
Cool, useful trick if you have a wheel on your mouse:

When using IE6.0,'CNTRL + Mouse Wheel'changes the text size displayed 
on screen. Handy when your browsing the live docs at macromedia ;)

Brook


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:OT: SQL Script Generation Tools

2003-10-18 Thread Don
Yes, called CASE tool or Data Modeling Tool, products include ERwin, ERstudio etc. the former is more powerful while the later is easier to use.

Don Li
http://www.hegelsoftware.com

I know this isn't directly related to CF but it's something that I've seen
out there before and hopefully someone knows what I'm talking about.At my
last web job there was a stored procedure or extended stored procedure that
you could call and pass a database name, table name and action and it would
generate stored procedures to handle the action... for example if you had a
users table you could pass in the action insert and it would create a stored
procedure for inserting entries into the table.

Has anyone else heard of this and know where I can get it?

Thanks!
Hatton Humphrey

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




MySQL Heirarchies

2003-10-18 Thread techsoldaten
I am stumped on a MySQL query, it involves returning information sorted into a heirarchy.

There's this table with the following fields: item_id, parent_id, and comment. Item_id is the unique identifier of each record, and each record can be a child of another. Parent_id reflects this relationship.

I need to return a recordset sorted by parent_id, i.e.:

item_one
-- item_two
 item_three
-- item_four
 item_five
-- item_six
 item_seven
item_eight
-- item_nine
 item_ten

etc...

Help! I know how to do this in SQL Server and Oracle using temp tables, but am not finding the answer in MySQL.

M

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]