Re: Another Rhetorical Whinge

2000-05-17 Thread David Cummins

Yeah, its just the zero thing. I don't quite understand why they did that. It's
standard to allow Left(string,0) in most other languages *sigh*

David

Michael Imhoff wrote:
 
 My bad, I just remember that it will still error on a zero so it looks like
 you are going to have to do something like.
 
 cfif Val(theChars) AND Val(theChars) GTE 1
  cfoutput#Left(theWord, abs(Val(theChars)))#/cfoutput
 /cfif
 
 Hope that helps...
 -Michael
 
 
 Michael Imhoff  www.omnicypher.com  icq: 10495667
 [EMAIL PROTECTED] (home)  (320) 255-4447 (home)
 [EMAIL PROTECTED] (cell)  (612) 247-8159 (cell)
 Allaire Alliance Consulting Partner
 
 - Original Message -
 From: David Cummins [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 17, 2000 3:28 AM
 Subject: Another Rhetorical Whinge
 
  Because it feels so good to get these things out of the system...
 
  Why does the ColdFusion Left() function only accept positive lengths, i.e.
 not
  length zero? I've got to put an if condition in now to check for every
 time a
  string is truncated to the empty string.
 
  Urgh.
 
  David
  --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



SOT: Aussies, daylight savings changes for Sydney 2000 Olympics

2000-05-17 Thread Peter Tilbrook

The Olympics 2000 are scheduled for September in Sydney and seven Australian
States and Territories will shift the Daylight Savings start date from the
last Sunday in October forward two months to the last Sunday in August. Find
out how this time change affects Microsoft products and get the new time
zone update for operating systems here:

http://www.microsoft.com/australia/support/timezone/2000.htm

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Formatting Table Join Output question

2000-05-17 Thread Michael Imhoff

I would double check your relationships in the db, if those aren't perfect
it can mess up a lot of your data.

Can you get your query working correctly in Access?  If not, then check the
relationships as I mentioned above but if you can, just call the query with
cfstoredproc.  It will be a lot faster plus it's cleaner and more reusable.

Hope that helps,
-Michael


Michael Imhoff  www.omnicypher.com  icq: 10495667
[EMAIL PROTECTED] (home)  (320) 255-4447 (home)
[EMAIL PROTECTED] (cell)  (612) 247-8159 (cell)
Allaire Alliance Consulting Partner


- Original Message -
From: Kurt Wiersma [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, May 16, 2000 10:57 PM
Subject: Formatting Table Join Output question


 Thank you for your help on this query below it is not working under
Access.

 I am now trying, with the code below, to output the results of this query
to
 an email. I need the audienceIDs to be joined to the audience name in the
 audience table but of course when I do this under this structure I get two
 records resulting. Both these records are the the same other then then
their
 audience names. I need some way to catch these two audience names out of
 there and display them in the email along with the rest of the email being
 intact. Perhaps I should store them in a local var and then output them?

 Anyone have a good way I can accomplish this?

 Thanks in advance,

 --KW

 CFQUERY NAME="fullentry" DATASOURCE="#application.DataSource#"
 SELECT calendar.*, audience.*, audevent.eventID, audevent.audienceID
 FROM calendar INNER JOIN (audience INNER JOIN audevent ON
 audience.audienceID=audevent.audienceID) ON
 calendar.eventID=audevent.eventID
 /CFQUERY

 CFMAIL QUERY="fullentry" MAXROWS=1 TO="#application.emailto#"
 FROM="#contactemail#" SUBJECT="Calendar Entry to be Approved" TYPE="HTML"

 This email was generated by fusion.acc.stolaf.edu!
 P
 CFOUTPUT
 The following calendar entry sent by #contactname# is waiting for
approval.
 P
 BEvent Name:/B #eventname#BR
 BStart Date:/B #DateFormat(startdate, "MM/DD/")#BR
 BEnd Date:/B  #DateFormat(enddate, "MM/DD/")#BR
 BTime:/B #TimeFormat(eventtime, "hh:mm tt")#BR
 BLocation:/B #location#BR
 BWebURL:/B #webURL#BR
 P
 BAudience:/B #name#
 P
 BCategory:/B #name#
 P
 BDescription:/BBR
 #description#


 --
-
 --
 BA

HREF="http://fusion.acc.stolaf.edu/calendar/admin/approve.cfm?id=#eventID#"
 Approve Entry/A/B
 BA

HREF="http://fusion.acc.stolaf.edu/calender/admin/editevent.cfm?id=#eventID#
 "Edit this Entry/A/B
 /CFOUTPUT
 /CFMAIL

 On 5/16/00 5:34 PM, Heather Haindel at [EMAIL PROTECTED] wrote:

  Based on the tables I gave below, I would use this:
 
  select e.eventname, e.eventdescription, a.audiencename
  from test_event e, test_audience_event ae,
  test_audience a
  where e.event_id = ae.event_id
  and ae.audience_id = a.audience_id
 
  This works in SQL Server 6.5...you may need to adjust
  for your needs.
 
  I would also consider setting this up as a view (a
  query in Access) and pulling the data to your web site
  from there.
 
  --- Kurt Wiersma [EMAIL PROTECTED] wrote:
 
 
 
  What would be the SQL query to join these tables so
  that I could display the names
  of the audiences for each event?
 
  Would something like this work?
 
  CFQUERY NAME="fullentry"
  DATASOURCE="#application.DataSource#"
  SELECT  c.eventID, c.startdate, c.enddate,
  c.eventname, c.eventtime,
  c.location, c.approved, c.webURL, c.description,
  c.contactname, c.contactemail
  FROM calendar c
  WHERE c.eventID IS IN (SELECT eventID, audienceID
  FROM audevent
  WHERE audienceID IN (SELECT
  audienceID, name FROM audience))
  /CFQUERY
 
  --
  From: Heather Haindel
  Reply-To: [EMAIL PROTECTED]
  Date: Mon, 15 May 2000 17:21:47 -0700 (PDT)
  To: [EMAIL PROTECTED],
  [EMAIL PROTECTED]
  Subject: Re: Database Structure Question
 
  Assuming I understand correctly, you have two
  entities...audience and event. Each event on your
  calendar can be classified under one to many
  audience
  (types). Each audience (type) can be a
  classification
  for zero to many events. That gives you a many to
  many
  relationship between audience and event.
 
  In order to normalize this, you need an intersection
  table. I would create these three tables:
 
  audience - audience_id (PK), audiencename
  event - event_id (PK), eventname, eventdescription
  audience_event - audevent_id (PK), audience_id (FK),
  event_id (FK)
 
 
  --- Kurt Wiersma  wrote:
 
  I have a database which is going to hold events
  for
  a calendar app. In it I
  have a table for audiences which has an audienceID
  and audience name. Inside
  the calendar table I have a field for audienceIDs
  where I was thinking of
  keeping a comma delimited list of audienceIDs.
 
  The problem is I cannot join the two 

Re: Getting only records with a date

2000-05-17 Thread David Cummins

Isn't the standard syntax "Where MyDate is not null"?

Hope that helps...

David

Chris Giminez wrote:
 
 I'm failing to write a query that will get all records from a table when they have a 
date entered
 into a particular field. I want to exclude Null values.
 
 This doesn't work. Still getting all the NULL records. What does work?
 
 CFQUERY NAME="dbname" DATASOURCE="dbsource"
 SELECT  MyDate
 FROM Table
 WHERE   (MyDate  NULL)
 /CFQUERY
 
 Chris Giminez
 Owner - Cyber Scriber Web Site Design
 831-728-4469
 ICQ# 2628000
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



encryption

2000-05-17 Thread Chad Jackson

Hi,

What is the best way to encrypt cfm files?
If I have 200 files that I want encrypted before I upload to the server what
is the best and fastest way to do this?

Is there a batch program out there that can do this quicly?

Also, it is possible to de-encrypt after I encrypt it?

thanks

chad


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: SQL ID

2000-05-17 Thread David Cummins

If that's what you're talking about (MSSQL Server), it can do autonumbers.

You just have to set it to non-null, identity seed=1, identity increment=1. Use
Enterprise Manager the first time.

David

"Sean M. O'Brien" wrote:
 
 I had the same problem when I imported data from Access to SQL. I fixed it
 by using the Upsizing Wizard in Access 2000. It took care of all that stuff.
 
 Sean
 
 -Original Message-
 From: Bill [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 16, 2000 9:42 PM
 To: [EMAIL PROTECTED]
 Subject: RE: SQL ID
 
 This may help.
 
 Bill Guttman
 http://www.katungroup.com/coldfusionlinks2.htm
 
 !--- Generic Routine for generating Random Database Keys ---
 CFSCRIPT
 DO  {Variables.RandomBig = 40 * RandRange(-5000,5000);
 Variables.RandomSmall = RandRange(1,40);
 Variables.RandomKey = Variables.RandomBig + Variables.RandomSmall;}
 WHILE (Variables.RandomKey IS 0);
 /cfscript
 
 -Original Message-
 From: Randy Adkins [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 12, 2000 11:15 AM
 To: [EMAIL PROTECTED]
 Subject: SQL ID
 
 Anyone know how to input a unique id within an SQL database?
 I have a field called Client_ID as uniqueidentifier and do NOT allow NULLS
 
 but it will not insert the ID as MS Access does.
 
 Thanks in advance.
 
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: what is ODBC 37000 error ??

2000-05-17 Thread David Cummins

I don't actually know the answer, but if you do find out, let me know.

One of our sites, the server (which is hosted by someone else) is chewing up 10k
of memory every second for no known reason. They recently installed Service Pack
6, or something like that.

Luckily its not our problem, but its good to know these things...

David

vincy wrote:
 
 hi,
 Im running my site on the coldfusion 4.0 server, with NT 4.0 and SQL 7.0
 The strangest thing has been happening the last few days, Ive been
 getting these
 ODBC 37000 errors quite often. It says that there is not enough memory to
 run the query.
 
 No one at the place that is hosting the site can figure out what page
 is causing this.
 They say that over a period of time the memory gets eaten up  until it the
 server runs out of memory.
 
 Im guessing that one of the pages that is used often is a page that has a
 number of queries and loops to the SQL server .
 
 Anyone have any ideas on this ...Im running out of time. I cant have the
 server crashing once in two days.
 
 regards,
 vince
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Getting only records with a date

2000-05-17 Thread paul smith

WHERE MyDate IS NOT NULL

At 08:26 PM 5/16/00 -0700, you wrote:
I'm failing to write a query that will get all records from a table when 
they have a date entered
into a particular field. I want to exclude Null values.

This doesn't work. Still getting all the NULL records. What does work?


CFQUERY NAME="dbname" DATASOURCE="dbsource"
SELECT  MyDate
FROM Table
WHERE   (MyDate  NULL)
/CFQUERY



Chris Giminez
Owner - Cyber Scriber Web Site Design
831-728-4469
ICQ# 2628000



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Image Roataion

2000-05-17 Thread Double Down, Inc

This is a multi-part message in MIME format.

--=_NextPart_000__01BFBF8D.C9A52300
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit

I have files of images that I want to rotate daily.  Does anyone know of a
custom tag that would do this? If anyone had any ideas on how I would go
about this I would like to hear them.

FYI these are not banners

TIA

DDINC


--=_NextPart_000__01BFBF8D.C9A52300
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns=3D"http://www.w3.org/TR/REC-html40"

head
meta http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252"
meta name=3DProgId content=3DWord.Document
meta name=3DGenerator content=3D"Microsoft Word 9"
meta name=3DOriginator content=3D"Microsoft Word 9"
link rel=3DFile-List href=3D"cid:[EMAIL PROTECTED]"
!--[if gte mso 9]xml
 o:OfficeDocumentSettings
  o:DoNotRelyOnCSS/
 /o:OfficeDocumentSettings
/xml![endif]--!--[if gte mso 9]xml
 w:WordDocument
  w:ViewNormal/w:View
  w:Zoom0/w:Zoom
  w:DocumentKindDocumentEmail/w:DocumentKind
  w:EnvelopeVis/
 /w:WordDocument
/xml![endif]--
style
!--
 /* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
{margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
span.EmailStyle15
{mso-style-type:personal-compose;
mso-ansi-font-size:10.0pt;
mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;
mso-bidi-font-family:Arial;
color:black;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.Section1
{page:Section1;}
--
/style
/head

body lang=3DEN-US style=3D'tab-interval:.5in'

div class=3DSection1

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'I have files of images that I want to rotate daily.span
style=3D"mso-spacerun: yes"=A0 /spanDoes anyone know of a custom tag =
that would
do this? If anyone had any ideas on how I would go about this I would =
like to
hear them.o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'FYI these are not bannerso:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoAutoSig!--[if supportFields]font color=3Dblackspan=20
style=3D'color:black'span =
style=3D'mso-element:field-begin'/spanspan=20
style=3D"mso-spacerun: yes"=A0/spanAUTOTEXTLIST \s quot;E-mail =
Signaturequot; span=20
style=3D'mso-element:field-separator'/span/span/font![endif]--f=
ont
size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:
12.0pt;font-family:Arial;mso-bidi-font-family:Arial;color:black'TIA/spa=
n/fontfont
size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:
12.0pt;font-family:Arial;mso-bidi-font-family:Arial;color:black;mso-color=
-alt:
windowtext'o:p/o:p/span/font/p

p class=3DMsoAutoSigfont size=3D3 color=3Dblack face=3D"Times New =
Roman"span
style=3D'font-size:12.0pt;color:black'![if =
!supportEmptyParas]nbsp;![endif]/span/fontfont
color=3Dblackspan =
style=3D'color:black;mso-color-alt:windowtext'o:p/o:p/span/font=
/p

p class=3DMsoAutoSigfont size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:
10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso-bidi-font-family:A=
rial;
color:black'DDINC/span/fontfont size=3D2 color=3Dblack =
face=3DArialspan
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso=
-bidi-font-family:
Arial;color:black;mso-color-alt:windowtext'o:p/o:p/span/font/p=


p class=3DMsoNormal!--[if supportFields]font color=3Dblackspan=20
style=3D'color:black'span =

Re: Subtracting 7 days less than Now() date?

2000-05-17 Thread David Cummins

What about #DateAdd("d",-7,Now())#?

I think that does it... hope it helps.

David

Michael Imhoff wrote:
 
 WHERE calendar_depositions.depodate  startdate
 
 Depending on what database you are using because they don't all handle dates
 the same way, you might want to create the data 7 days ago and then use the
 Year, Day, and Month function along with the CreateDate function so that
 your times are correct.
 
 Just a thought,
 -Michael
 
 
 Michael Imhoff  www.omnicypher.com  icq: 10495667
 [EMAIL PROTECTED] (home)  (320) 255-4447 (home)
 [EMAIL PROTECTED] (cell)  (612) 247-8159 (cell)
 Allaire Alliance Consulting Partner
 
 - Original Message -
 From: Tiffany [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 17, 2000 12:19 AM
 Subject: Subtracting 7 days less than Now() date?
 
  Using this:
 
  CFSET DATETODAY=DateFormat(Now(), ",  dd, ")
 
  How would I subtract 7 days from that date?  I'm making a query where
  data wont be displayed if it is 7 days less than that set date (above).
 
  Would something like this work?
  WHERE Datetoday LT Now(-7)
 
  Ugh, I'm a newbie =P
 
  Thanks,
 
  *~Tiffany~*
 
  --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



SPECTRA: Embed an object within itself...

2000-05-17 Thread Sean M. O'Brien

Hello all,

I asked this question at my CFUG meeting tonight and no one knew the
answer. I am creating a product catalog for a web site using Allaire
Spectra. I create a product object and an option object. So that each option
can have it's own SKU, price, etc. What I want to do is then make each
option have it's own set of options. So that a shirt that is red is only
available in large, etc. My problem comes when I try to embed the option
object within itself. I create a property using the option object and when I
go to edit the option object and try to add a new property, the option
property is not there. If I am totally going about this the wrong way,
please let me know, but this is the best way I could think of to accomplish
my goal. Here is a visual:

Product: T-Shirt
Option: BLUE
Option: SMALL
SKU: 001BS
PRICE: 3.25
Option: MEDIUM
SKU: 001BM
PRICE: 3.34
Option: LARGE
Option: RED
Option: MEDIUM
SKU: 001RM
PRICE: 3.99
Option: LARGE
SKU: 001RL
PRICE: 4.50

Does this make sense to everyone?

Any help would be greatly appreciated.

Thanks,

Sean O'Brien
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: SOT: Aussies, daylight savings changes for Sydney 2000 Olympics

2000-05-17 Thread Michael Kear

BLOODY OLYMPICS!!  This whole city is being turned up side down so rich
fat cats like the little spanish nazi** can strut about like potentates.

** Sorry.  His excellency
he-who-has-to-always-be-referred-to-by-his-middle-name

I'll be glad when they're over and we can get back to living our lives

Cheers,
Mike Kear
AFP Web Development
Windsor, NSW, Australia 


On Wed, 17 May 2000, Peter Tilbrook wrote:

 The Olympics 2000 are scheduled for September in Sydney and seven Australian
 States and Territories will shift the Daylight Savings start date from the
 last Sunday in October forward two months to the last Sunday in August. Find
 out how this time change affects Microsoft products and get the new time
 zone update for operating systems here:
 
 http://www.microsoft.com/australia/support/timezone/2000.htm
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
 

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SOT: Aussies, daylight savings changes for Sydney 2000 Olympics

2000-05-17 Thread Peter Tilbrook

I'll be glad when they're over and we can get back to living our lives

here, here!

--
Peter Tilbrook
SafetyWeb Internet Solutions Pty Ltd
31-37 Townshend Street
Phillip, ACT, 2602
AUSTRALIA

Tel: (02) 6273 9901
Fax: (02) 6273 9902

http://www.safetyweb.com.au
http://www.actcfug.asn.au
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: encryption

2000-05-17 Thread Sean Renet

I would so the best way to do it is not to bother doing it.
http://shroom.dv8.org/bmp/crypt.cgi
- Original Message -
From: "Chad Jackson" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, May 16, 2000 11:10 PM
Subject: encryption


 Hi,

 What is the best way to encrypt cfm files?
 If I have 200 files that I want encrypted before I upload to the server
what
 is the best and fastest way to do this?

 Is there a batch program out there that can do this quicly?

 Also, it is possible to de-encrypt after I encrypt it?

 thanks

 chad


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: SOT: Aussies, daylight savings changes for Sydney 2000 Olympics

2000-05-17 Thread Nick Slay

Hey... I hope you've booked your holidays for September.. and remember to 
get your bus/train passes in good time!!   :^)

Is there anything else that we're forgetting?   Should we hoard food in 
case of shortages due to the influx of all the visitors in 
September?  Should we stay out of the surf to make way for the Olympic 
Visitors?  Maybe we should all move to Tassie for September so as not to be 
a burden on Sydney



Sheesh!!   I'll be glad when it's all over too






At 16:40 17/05/00 +1000, you wrote:
BLOODY OLYMPICS!!  This whole city is being turned up side down so rich
fat cats like the little spanish nazi** can strut about like potentates.

** Sorry.  His excellency
he-who-has-to-always-be-referred-to-by-his-middle-name

I'll be glad when they're over and we can get back to living our lives

Cheers,
Mike Kear
AFP Web Development
Windsor, NSW, Australia


On Wed, 17 May 2000, Peter Tilbrook wrote:

  The Olympics 2000 are scheduled for September in Sydney and seven 
 Australian
  States and Territories will shift the Daylight Savings start date from the
  last Sunday in October forward two months to the last Sunday in August. 
 Find
  out how this time change affects Microsoft products and get the new time
  zone update for operating systems here:
 
  http://www.microsoft.com/australia/support/timezone/2000.htm
 
  
 --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit 
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk 
 or send a message to [EMAIL PROTECTED] with 'unsubscribe' 
 in the body.
 

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.


===
Nick Slay
Technical Director

Webbods Pty Ltd  (ACN 086 160 189)
PO Box 4047
Copacabana
NSW 2251

Tel:02 4381 0284
Mob:0414 810284

===
Join the BodNews mailing list for News/Announcements
and Offers from Webbods.  Send an email to
[EMAIL PROTECTED] with 'subscribe bodnews' in the
subject line.
===

Proud Sponsors of the Northern Eagles NRL Side 2000!!!

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SPECTRA: Embed an object within itself...

2000-05-17 Thread Sean M. O'Brien

UPDATE:

I've come to the conclusion that once an object contains an embedded
object, the parent object cannot be embedded in another object... Anyone
confirm this???

Sean

-Original Message-
From: Sean M. O'Brien [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 11:31 PM
To: [EMAIL PROTECTED]
Subject: SPECTRA: Embed an object within itself...


Hello all,

I asked this question at my CFUG meeting tonight and no one knew the
answer. I am creating a product catalog for a web site using Allaire
Spectra. I create a product object and an option object. So that each option
can have it's own SKU, price, etc. What I want to do is then make each
option have it's own set of options. So that a shirt that is red is only
available in large, etc. My problem comes when I try to embed the option
object within itself. I create a property using the option object and when I
go to edit the option object and try to add a new property, the option
property is not there. If I am totally going about this the wrong way,
please let me know, but this is the best way I could think of to accomplish
my goal. Here is a visual:

Product: T-Shirt
Option: BLUE
Option: SMALL
SKU: 001BS
PRICE: 3.25
Option: MEDIUM
SKU: 001BM
PRICE: 3.34
Option: LARGE
Option: RED
Option: MEDIUM
SKU: 001RM
PRICE: 3.99
Option: LARGE
SKU: 001RL
PRICE: 4.50

Does this make sense to everyone?

Any help would be greatly appreciated.

Thanks,

Sean O'Brien

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Boolean fields in Foxpro

2000-05-17 Thread Michael O Reilly

Bill,
That looks like it should be a great help. The Foxpro stuff doesn't mean
much to me, but I'll pass it on to the Foxpro programmer from the company
I'm working for.
There's a Tag in Nate's Tag gallery call CF_Waitfor which will wait for
certain condition's to be true before continuing.
When (if) I get the database packed, I can trigger one of said conditions.

Can I get back to you if I need any further assistance? In the meantime,
enjoy the vacation.

Regards
Michael O'Reilly
Analyst Programmer
TransAer
 

-Original Message-
From: Bill Grover [mailto:[EMAIL PROTECTED]]
Sent: 16 May 2000 19:26
To: [EMAIL PROTECTED]
Subject: RE: Boolean fields in Foxpro


I don't see why not.  To be honest I've never tried to execute an external 
application from CF.  One item I'm not sure of is if CF will wait for the 
application to finish.  If it does then I'd run with it.

Another way to accomplish this that should work as well would be to do the 
following.

1.  Create a FoxPro program that ends up being a COM object.
2.  In CF use the CFLock.
3.  Create your object using CFOBJECT
4.  Call a method on the object that does the pack.
5.  Release the object
6.  Release the CFLock.

The following code snippet should give you the basics of the COM object 
code.  This snippet needs to be placed in a program (.prg) and set as the 
main program of your project.  Then build your project when building the 
project you need to tell it to create a Win32 executeable/COM Server.  Also 
tell it to Regenerate Component ID's.  I've had my best success with FoxPro 
COM objects this way.

DEFINE CLASS MyPack AS custom OLEPUBLIC

PROCEDURE DoPack
*
* Here is where the code goes to pack your database
*
 OPEN DATABASE myDatabase Open your database

 SELECT 0 Select the next 
available workspace
 USE table1 EXCLUSIVE Open your table, it 
will become the selected table.
 PACK Pack the table just
opened
 USE  Close the table just 
packed.

 SELECT 0 Select the next 
available workspace.
 USE table2 EXCLUSIVE Open your table, it 
will become the selected table.
 PACK Pack the table just
opened.
 USE  Close the table just 
packed.

 RETURN

ENDPROC

ENDDEFINE

Let me know if I can be of any more help.

Bill Grover
Supervisor, IS
EU Services, Inc.
649 N Horners Ln
Rockville MD 20850

Phone:  301-424-3300 x396
FAX:301-424-3300 x1396#
E-Mail: [EMAIL PROTECTED]

At 12:15 PM 5/16/2000 +, you wrote:

Date: Tue, 16 May 2000 09:21:19 +0100
From: Michael O Reilly [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Boolean fields in Foxpro
Message-ID: ECE6504EA487D3118D8A00805F59102E7EB2D1@NT_BACKUP

Bill,
Don't worry about speed of reply's. I find that I don't have time to read
even a quarter of the stuff on this list. I wouldn't expect somebody to use
their vacation time to reply to post's.
Any reply's I receive are a bonus.
Anyway Foxpro.
I discovered last night the issue about requiring exclusive use of the DB
to
perform a PACK.
I records marked as deleted are not retrieved by SQL queries but they stay
in the DB.
I reckon some of the tables were planning to use will get pretty large so I
had to get rid of these redundant records.

Could I schedule a template to run at Midnight on Sunday which perform's a
CFLock and then executes an external app which pack's the DB?

Regards
Michael O'Reilly
Analyst Programmer
TransAer


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: image database

2000-05-17 Thread Stewart McGowan

Sounds cool Benjamin, How are you going to structure your directories for
these images? 
Has anyone done anything with LDAP and image libraries???

Stew

 -Original Message-
 From: Benjamin Smedberg [SMTP:[EMAIL PROTECTED]]
 Sent: 16 May 2000 23:22
 To:   [EMAIL PROTECTED]
 Subject:  Re: image database
 
  I want to setup a large commercial image database for a client.
  Like http://www.photodisc.com/
  I want to be able to easily add new images, be able to fully search
 images,
 
 I'm doing something similar, a "digital information museum/library" for
 the
 university. It has extensive metadata information about the images (and
 statistical datasets, and PDF files) in a database, but the actual data is
 stored in flat files. Depending on the load you expect, you can
 dynamically
 generate thumbnails using GIFGD when they are requested, or you can
 generate
 them when the image is first saved into the system, and save them as flat
 files as well. The rest is fairly simple coding.
 
 Because I am going to have upwards of a million slides in my system, it is
 tuned rather extensively in Oracle, but a smaller system could probably
 run
 quite succesfully in Access.
 
 +
 + Benjamin Smedberg
 + CUA Assistant Webmaster
 + [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
 +
 + He is risen, as He said! Alleluia!
 +
 
 
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: encryption

2000-05-17 Thread Aidan Whitehall

 What is the best way to encrypt cfm files?
 If I have 200 files that I want encrypted before I upload to the server
what
 is the best and fastest way to do this?
 
 Is there a batch program out there that can do this quicly?

Studio 4.5.1's deployment wizard has an "encrypt CF templates" checkbox.
Maybe investigate that (haven't used it yet).




-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopper UK Ltd
Advanced Web Solutions  Services

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Recall: Invalid expression format?

2000-05-17 Thread Aidan Whitehall

 Troy Johnson would like to recall the message, "Invalid expression
format?"..

I've seen a few of these "recall" messages sent to mailing lists over the
years.  Is this the way you prevent messages being distributed on a
moderated mailing list?



-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopper UK Ltd
Advanced Web Solutions  Services

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: encryption

2000-05-17 Thread pan



 Hi,
 
 What is the best way to encrypt cfm files?
 If I have 200 files that I want encrypted before I upload to the server what
 is the best and fastest way to do this?
 
 Is there a batch program out there that can do this quicly?
 
 Also, it is possible to de-encrypt after I encrypt it?
 

*copy* files-to-be-encrypted to a special directory
within that dir from a dos box issue the command
__cfencode *.cfm /v "2"__

this assumes that cfencode is either in your path or a copy
is in the encrypting directory



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF and Encryption

2000-05-17 Thread Justin MacCarthy

It would be quite easy to write a cjx or cfj tag to do des encrytpion, I
know that there is a cf_blowfish tag out there somewhere, but I can't
remember who did it ...

a quick look at counterpane tell me it's CFX_Encrypt by Jim Fuller @

http://www.ejim.co.uk/module/encrypt/index.cfm

Freeware ...

~ Justin MacCarthy
~Irish CFHead

Coming soon http://www.CFFAQ.org


- Original Message -
From: Chris Montgomery [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 5:04 AM
Subject: CF and Encryption


 Howdy folks,

 I am looking for info on what kind of encryption CF employs.  In
 particular, I am wondering about single DES encryption.  I've searched
 the docs and support forum at Allaire's site but found no specific
 mention on what algorithm CF uses for encryption.

 My reason for asking:  Am about to take on a project to write an app for
 issuing software licenses.  Developers at the company say that the
 actual license generation module will be done in Java, invoking single
 DES encryption to generate the license codes.  I know you can employ CF
 to encrypt strings and am thinking that if it uses single DES encryption
 then why not just use CF for the whole thing, including the license
 generation part.

 Any thoughts on this or pointers where I can find out more about how CF
 encryption works?

 Thanks,

 Chris Montgomery  [EMAIL PROTECTED]
 ::Web development/Consulting  http://www.astutia.com ::
 ::210-490-3249 / 888-745-7603 Fax 210-490-4692   ::
 ::Find a Job in San Antonio   http://www.sajobnet.com::

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Confounding SQL Server Error

2000-05-17 Thread Bud

Hi. Here I go, playing with SQL Server again. :)

OK, I have an Access database that I've upsized. In the Access db, I 
have 2 tables, Orders and Line_Items, with a related field, Order_ID 
in the 2 tables. I can't really rely on sessions for this app, 
because the nature of it is that the users may need to enter items 
over a couple days. So... I'm writing the items to the Line_Items 
table, and leaving the Order_ID field blank and adding a random 
number to a temp_order field. When they come back and enter the temp 
order number it searches Line_Items for that number and a NULL 
Order_ID. At checkout, the line items are tallied, an Order number 
generated and inserted into the 2 Order_ID fields. Great, works fine.

So, I upsize to SQL Server and when trying to enter an item, I get this error:

Referential integrity rules require a related record in table 'Orders'.

OK, I figure with SQL Server, you must have to populate the Order_ID 
fields of both tables if they are related. No problem, I'll just 
delete the relationship. So, I do that in the Diagram, but still get 
the error. I've restarted CF and SQL, and STILL get the error.

Am I missing something? Can that relationship still be there, even 
though in the diagram it says the only table related to Orders is 
Customers? If so, how do I delete it? Does SQL Server just decide on 
it's own that there SHOULD be a relationship because the fields are 
named the same and therefore act as though there is? Should I try 
deleting the relationship in the Access DB and upsize again?

Thanks.

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Confounding SQL Server Error

2000-05-17 Thread Bud

At 5:55 AM -0400 5/17/00, I wrote:

Referential integrity rules require a related record in table 'Orders'.

OK, I figure with SQL Server, you must have to populate the Order_ID
fields of both tables if they are related. No problem, I'll just
delete the relationship. So, I do that in the Diagram, but still get
the error. I've restarted CF and SQL, and STILL get the error.

AHAH! I found it. There was an Insert and an Update trigger on the 
Line_Items.Order_ID field. I deleted them and now it works.

Cool. Man, this is a whole new ballgame, eh?


Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Confounding SQL Server Error

2000-05-17 Thread Dave Watts

 Referential integrity rules require a related record in
 table 'Orders'.
 
 OK, I figure with SQL Server, you must have to populate the Order_ID
 fields of both tables if they are related. No problem, I'll just
 delete the relationship. So, I do that in the Diagram, but still get
 the error. I've restarted CF and SQL, and STILL get the error.

 AHAH! I found it. There was an Insert and an Update trigger on the
 Line_Items.Order_ID field. I deleted them and now it works.

 Cool. Man, this is a whole new ballgame, eh?

This isn't actually an SQL Server issue, but rather that the Access Upsizer
creates triggers, when in SQL Server all you need is a declarative
referential integrity rule. You're generally better off not using the Access
Upsizer to create your database, but rather creating the tables yourself
with a script or the Enterprise Manager GUI, then using Access to push the
data to the server. The Upsizer doesn't set up indexes the way you'd want
them, so you might want to take a look at them as well.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Image Roataion

2000-05-17 Thread Dave Hannum

CFIF
Images do NOT repeat, you could simply name them according to date (i.e. 
05-17-2000.jpg) then just do the following in your
image tag:
IMG SRC="/images/#DateFormat("#Now()#", "mm-dd-")#.jpg" and that would rotate 
them daily.

CFELSEIF
Images DO repeat, say weekly, you could name the files for the weekday (i.e. 
monday.jpg)
then do a DatePart to retrieve them:
CFSET today = #Now()#
IMG SRC="/images/#DatePart("w", "#today#")#.jpg"

CFELSE
Do something else I don't have time to show now 8-)

/CFIF

The new allergy meds are really making me feel kinda "out of body"  thismorning! ~

Dave

=
"Always Drink Upstream From The Herd!"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524



- Original Message -
From: Double Down, Inc [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 1:23 AM
Subject: Image Roataion


This is a multi-part message in MIME format.

--=_NextPart_000__01BFBF8D.C9A52300
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit

I have files of images that I want to rotate daily.  Does anyone know of a
custom tag that would do this? If anyone had any ideas on how I would go
about this I would like to hear them.

FYI these are not banners

TIA

DDINC


--=_NextPart_000__01BFBF8D.C9A52300
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns=3D"http://www.w3.org/TR/REC-html40"

head
meta http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252"
meta name=3DProgId content=3DWord.Document
meta name=3DGenerator content=3D"Microsoft Word 9"
meta name=3DOriginator content=3D"Microsoft Word 9"
link rel=3DFile-List href=3D"cid:[EMAIL PROTECTED]"
!--[if gte mso 9]xml
 o:OfficeDocumentSettings
  o:DoNotRelyOnCSS/
 /o:OfficeDocumentSettings
/xml![endif]--!--[if gte mso 9]xml
 w:WordDocument
  w:ViewNormal/w:View
  w:Zoom0/w:Zoom
  w:DocumentKindDocumentEmail/w:DocumentKind
  w:EnvelopeVis/
 /w:WordDocument
/xml![endif]--
style
!--
 /* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
{margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
span.EmailStyle15
{mso-style-type:personal-compose;
mso-ansi-font-size:10.0pt;
mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;
mso-bidi-font-family:Arial;
color:black;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.Section1
{page:Section1;}
--
/style
/head

body lang=3DEN-US style=3D'tab-interval:.5in'

div class=3DSection1

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'I have files of images that I want to rotate daily.span
style=3D"mso-spacerun: yes"=A0 /spanDoes anyone know of a custom tag =
that would
do this? If anyone had any ideas on how I would go about this I would =
like to
hear them.o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'FYI these are not bannerso:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoAutoSig!--[if supportFields]font color=3Dblackspan=20
style=3D'color:black'span =
style=3D'mso-element:field-begin'/spanspan=20
style=3D"mso-spacerun: yes"=A0/spanAUTOTEXTLIST \s quot;E-mail =
Signaturequot; span=20
style=3D'mso-element:field-separator'/span/span/font![endif]--f=
ont
size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:
12.0pt;font-family:Arial;mso-bidi-font-family:Arial;color:black'TIA/spa=
n/fontfont
size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:
12.0pt;font-family:Arial;mso-bidi-font-family:Arial;color:black;mso-color=
-alt:
windowtext'o:p/o:p/span/font/p

p class=3DMsoAutoSigfont size=3D3 color=3Dblack face=3D"Times New =
Roman"span

Re: Kind Of Off Topic

2000-05-17 Thread Brandon Whitaker

I was hoping that nobody would notice my mistake - thanks for proving me
wrong :-)

Howie

Actually, I wasn't doing it to point out a mistake so much as just passing
along the (vaguely) amusing idea it inspired.

No harm, no foul. ;)

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Cold Fusion Search tools

2000-05-17 Thread Brian P. Doyle

I'm looking for a decent search engine for our site.  I've looked into
both Ultraseek and SiteServer Search, but I was curious if there might be
one a bit more CF friendly.  Any suggestions would be greatly appreciated.


Brian P. Doyle
Developer
SMTnet.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Database/CF course in NYC

2000-05-17 Thread Jack Montealegre

You may want to check out http://www.winmill.com

Or check the allaire site for authorized Allaire classes in your area at;
http://www.coldfusion.com/developer/training.cfm

WinMill supports three different types of ColdFusion classes (Fast Track to
Cold Fusion, Advanced Cold Fusion Development and Cold Fusion Performance
Tuning) running just about every month, in some cases twice a month.
Locations for classes are in New York City, Princeton NJ, State College PA,
Boston MA, and Long Island.

Hope this helps,

Jack



- Original Message -
From: stäs [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, May 12, 2000 8:56 AM
Subject: Re: Database/CF course in NYC


 Thank you, Michael, please keep us updated.  I did check out Adelphi/SOHO,
 and their web programmer course is scheduled for October, I'd like
 something sooner. You can view the description of the course at NUY here:

 http://www.scps.nyu.edu/dyncon/inft/nyuscps_CMCWDS_X52.9403.html

 At 03:45 PM 05/11/2000 -0400, Michael Dinowitz wrote:
 I've never heard of a NYU course on this, but I was doing a course at
 Adelphi that was later canceled. I'm (again) trying to push CoreActive
into
 letting me teach CF stuff. If I can, then you'll have your course.


 I'd like to enroll into a course this summer that will give me a good
 introduction on programming CF against either Oracle or MS SQL - anything
 that's more advanced than Access. My only experience with Oracle has been
 through ODBC, which doesn't really utilize Oracle's power. I'd like a
 course that shows all the cool stuff you can do with DBs and interface it
 with CF. There was such a course offered at NYU, but it was cancelled. My
 budget is $3000-4000. Thanks for any pointers!

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: You have nice cookies .. mind if I have a look?

2000-05-17 Thread Paul Ihrig

Hello ALL.
all this talk of cookies got me to go poke arund through my own.

Not sure if i should really care or not.
but my bank has my ATM/Visa Number plain as day in one of its cookies on my
box.

should i bring it to theire attention?
Should i just disable cookies for that site?
i know that they use CF for most there stuff.
but the files always display as htm.

Thanks
-paul
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Re: what is ODBC 37000 error ??

2000-05-17 Thread joeug



What Sql server version are you using?
Are you overiding any Constraint violations?
Primary key, foreign key etc
Doing all the looping, i guess would slow down the transaction
and might fail.

If you are searching through large junks of data and have parameters
for this, it would be apt to do this with a Stored Procedure.
How big is your returned dataset, could you do subqueries ? or
Joins , thats might speed up things, 
but i guess it better to this using a Stored Procedure.




--- Original Message ---
vincy [EMAIL PROTECTED] Wrote on 
Wed, 17 May 2000 18:00:48 +0530
 -- 
hi,
yeah, well I've posting this problem all over the place, and
on one seems 
to be able to figure it out.
The thing is that part of the code in brief does this :
CFloop1
query
query
CFloop2
query
query
/lCFoop
/CFloop

Actually there are more queries. So, basically there are nested
loops and 
in that there are queries to the SQL server.
So, now if 500-700 people hit the site a day, I was wondering
if this kind 
of  CF coding would choke the
SQL server !

vince




At 06:23 PM 5/17/00 +1200, David Cummins wrote:
I don't actually know the answer, but if you do find out, let
me know.

One of our sites, the server (which is hosted by someone else)
is chewing 
up 10k
of memory every second for no known reason. They recently installed

Service Pack
6, or something like that.

Luckily its not our problem, but its good to know these things...

David

vincy wrote:
 
  hi,
  Im running my site on the coldfusion 4.0 server, with
NT 4.0 and 
 SQL 7.0
  The strangest thing has been happening the last few days,
Ive been
  getting these
  ODBC 37000 errors quite often. It says that there is not
enough memory to
  run the query.
 
  No one at the place that is hosting the site can figure
out what page
  is causing this.
  They say that over a period of time the memory gets eaten
up  until it the
  server runs out of memory.
 
  Im guessing that one of the pages that is used often is a
page that has a
  number of queries and loops to the SQL server .
 
  Anyone have any ideas on this ...Im running out of time.
I cant have the
  server crashing once in two days.
 
  regards,
  vince
 
  
 --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit 
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk

 or send a message to [EMAIL PROTECTED] with
'unsubscribe' 
 in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or 
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in 
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.



-
Sent using MailStart.com ( http://MailStart.Com/welcome.html )
The FREE way to access your mailbox via any web browser, anywhere!

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SOT: Aussies, daylight savings changes for Sydney 2000 Olympics

2000-05-17 Thread Hoffman, Joe (CIT)

It's all about money ... you're not alone, we have that problem too.

Hope you survive :)

Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services

-Original Message-
From: Nick Slay [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 3:06 AM
To: [EMAIL PROTECTED]
Subject: Re: SOT: Aussies, daylight savings changes for Sydney 2000
Olympics


Hey... I hope you've booked your holidays for September.. and remember to 
get your bus/train passes in good time!!   :^)

Is there anything else that we're forgetting?   Should we hoard food in 
case of shortages due to the influx of all the visitors in 
September?  Should we stay out of the surf to make way for the Olympic 
Visitors?  Maybe we should all move to Tassie for September so as not to be 
a burden on Sydney



Sheesh!!   I'll be glad when it's all over too






At 16:40 17/05/00 +1000, you wrote:
BLOODY OLYMPICS!!  This whole city is being turned up side down so rich
fat cats like the little spanish nazi** can strut about like potentates.

** Sorry.  His excellency
he-who-has-to-always-be-referred-to-by-his-middle-name

I'll be glad when they're over and we can get back to living our lives

Cheers,
Mike Kear
AFP Web Development
Windsor, NSW, Australia


On Wed, 17 May 2000, Peter Tilbrook wrote:

  The Olympics 2000 are scheduled for September in Sydney and seven 
 Australian
  States and Territories will shift the Daylight Savings start date from
the
  last Sunday in October forward two months to the last Sunday in August. 
 Find
  out how this time change affects Microsoft products and get the new time
  zone update for operating systems here:
 
  http://www.microsoft.com/australia/support/timezone/2000.htm
 
  


--
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit 
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk 
 or send a message to [EMAIL PROTECTED] with 'unsubscribe' 
 in the body.
 

---
---
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.


===
Nick Slay
Technical Director

Webbods Pty Ltd  (ACN 086 160 189)
PO Box 4047
Copacabana
NSW 2251

Tel:02 4381 0284
Mob:0414 810284

===
Join the BodNews mailing list for News/Announcements
and Offers from Webbods.  Send an email to
[EMAIL PROTECTED] with 'subscribe bodnews' in the
subject line.
===

Proud Sponsors of the Northern Eagles NRL Side 2000!!!


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Article on Slashdot about Allaire Forums

2000-05-17 Thread Cameron Childress

People were chatting about this in cf-community (where it belongs)
yesterday.  Please consider jumping user to that list before replying.

You can subscribe to cf-community at: [EMAIL PROTECTED]

Just stick "subscribe" in the body.

-Cameron


Cameron Childress
McRae Communications
770.460.7277 x.232
770.460.0963 fax

 -Original Message-
 From: Justin MacCarthy [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 17, 2000 8:52 AM
 To: [EMAIL PROTECTED]
 Subject: Article on Slashdot about Allaire Forums


 heads up

 http://slashdot.org/article.pl?sid=00/05/16/1512238mode=thread

 ~JustinMacCarthy

 Coming soon WWW.CFFAQ.ORG


 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
 _talk or send a message to [EMAIL PROTECTED] with
 'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Allaire Forum

2000-05-17 Thread Won Lee

Just read on slashdot that forums is now open source.  I havent had
time to read the licensing agreement on this bad boy - but I hope its
better than the old one.  

I guess the question is - is this too little too late?  
This is just my personal feeling - but I don't think Allaire has been
very supportive of the CF community.  Sure they are supportive of the
developers and want us to continue to use the product...but.

anyways...CF is still a great product and I still like programming in
it. 

If anyone comes up with a good use for forums please pass it on. +
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Re: what is ODBC 37000 error ??

2000-05-17 Thread vincy

hi Joe,
   Im using CF 4.0 enterprise server.
And not overriding any constraint violations.

The first part of the code  searches for the parent categories, then 
searches for child categories.
Then totals all the items for sale in each category
so on ...
--
So, these are the very basic of SQL queries that are involved.
But no doubt goes thru a series  of loops.

As far as stored procedure goes, I may implement that in sometime.

But what I wanted to know is what really causes that dreadful --
===
ODBC Error Code = 37000 (Syntax error or access violation)

[Microsoft][ODBC SQL Server Driver][SQL Server]There is insufficient system 
memory to run this query.

man!! I'm totally pissed getting that error ... and another one of those 
will make me explode..
Incidentally, the server crashes once in 3 days ... so there is one due any 
minute ! : )

VINCE


At 06:05 AM 5/17/00 -0700, [EMAIL PROTECTED] wrote:


What Sql server version are you using?
Are you overiding any Constraint violations?
Primary key, foreign key etc
Doing all the looping, i guess would slow down the transaction
and might fail.

If you are searching through large junks of data and have parameters
for this, it would be apt to do this with a Stored Procedure.
How big is your returned dataset, could you do subqueries ? or
Joins , thats might speed up things,
but i guess it better to this using a Stored Procedure.




--- Original Message ---
vincy [EMAIL PROTECTED] Wrote on
Wed, 17 May 2000 18:00:48 +0530
  --
hi,
yeah, well I've posting this problem all over the place, and
on one seems
to be able to figure it out.
The thing is that part of the code in brief does this :
CFloop1
query
query
CFloop2
query
query
/lCFoop
/CFloop

Actually there are more queries. So, basically there are nested
loops and
in that there are queries to the SQL server.
So, now if 500-700 people hit the site a day, I was wondering
if this kind
of  CF coding would choke the
SQL server !

vince




At 06:23 PM 5/17/00 +1200, David Cummins wrote:
 I don't actually know the answer, but if you do find out, let
me know.
 
 One of our sites, the server (which is hosted by someone else)
is chewing
 up 10k
 of memory every second for no known reason. They recently installed

 Service Pack
 6, or something like that.
 
 Luckily its not our problem, but its good to know these things...
 
 David
 
 vincy wrote:
  
   hi,
   Im running my site on the coldfusion 4.0 server, with
NT 4.0 and
  SQL 7.0
   The strangest thing has been happening the last few days,
Ive been
   getting these
   ODBC 37000 errors quite often. It says that there is not
enough memory to
   run the query.
  
   No one at the place that is hosting the site can figure
out what page
   is causing this.
   They say that over a period of time the memory gets eaten
up  until it the
   server runs out of memory.
  
   Im guessing that one of the pages that is used often is a
page that has a
   number of queries and loops to the SQL server .
  
   Anyone have any ideas on this ...Im running out of time.
I cant have the
   server crashing once in two days.
  
   regards,
   vince
  
  
  
 --
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk

  or send a message to [EMAIL PROTECTED] with
'unsubscribe'
  in the body.
 - 
 -
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
 send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
 the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.



-
Sent using MailStart.com ( http://MailStart.Com/welcome.html )
The FREE way to access your mailbox via any web browser, anywhere!

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Am I missing something? Calculations...

2000-05-17 Thread Kelly Matthews

actually evaluate is the way I went :) 
actually i did the evaluate within CFSETS and it worked just beautifully.

 -Original Message-
 From: Josh Black [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 16, 2000 5:11 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: Am I missing something? Calculations...
 
 Why is it bad to use Evaluate() for math calculations?  Is it just a speed
 issue from having to make a function call?  It certainly returns the
 correct
 results.
 
 Josh
 
 - Original Message -
 From: "Dick Applebaum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, May 16, 2000 2:03 PM
 Subject: RE: Am I missing something? Calculations...
 
 
  Um, no, don't use evaluate...
 
  Look at the CF math functions (Functions, not Tags!)
 
 cfset A = 3
 cfset B = 7
 cfset C = A / B 
 
 cfoutput
   br  A /  B = #C#
 /cfoutput
 
  HTH
 
  Dick
 
  At 2:23 PM -0400 5/16/2000, Kelly Matthews wrote:
  Ok i figured it out, use the evaluate tag...
  Kelly
  
-Original Message-
From: Kelly Matthews [SMTP:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 2:11 PM
To: '[EMAIL PROTECTED]'
Subject: Am I missing something? Calculations...
  
Ok I must be missing something I have not had to do this before
so never really had to worry about it.  I want to output a report
that does a couple things 1 is it takes 2 fields (field a and field
 b)
and divides them. I know how to do it in the SQL statement but I
 dont
 want
to I would rather do it on output.  I couldnt find any DIVIDE
 function
 in
CF.  So how would i do fielda/fieldb and have it output the RESULT.
  
Then I want to do the same thing but take airport1.fielda and
airport2.fielda and to the
AVERAGE of the 2.  Meaning airport1.fielda * airport2.fielda / 2.
Any suggestions on the CF syntax to make this output properly?
  
  
 Kelly
 
 --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Am I missing something? Calculations...

2000-05-17 Thread Kelly Matthews



 -Original Message-
 From: Josh Black [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 16, 2000 5:11 PM
 To:   [EMAIL PROTECTED]
 Subject:  Re: Am I missing something? Calculations...
 
 Why is it bad to use Evaluate() for math calculations?  Is it just a speed
 issue from having to make a function call?  It certainly returns the
 correct
 results.
 
 Josh
 
 - Original Message -
 From: "Dick Applebaum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, May 16, 2000 2:03 PM
 Subject: RE: Am I missing something? Calculations...
 
 
  Um, no, don't use evaluate...
 
  Look at the CF math functions (Functions, not Tags!)
 
 cfset A = 3
 cfset B = 7
 cfset C = A / B 
 
 cfoutput
   br  A /  B = #C#
 /cfoutput
 
  HTH
 
  Dick
 
  At 2:23 PM -0400 5/16/2000, Kelly Matthews wrote:
  Ok i figured it out, use the evaluate tag...
  Kelly
  
-Original Message-
From: Kelly Matthews [SMTP:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 2:11 PM
To: '[EMAIL PROTECTED]'
Subject: Am I missing something? Calculations...
  
Ok I must be missing something I have not had to do this before
so never really had to worry about it.  I want to output a report
that does a couple things 1 is it takes 2 fields (field a and field
 b)
and divides them. I know how to do it in the SQL statement but I
 dont
 want
to I would rather do it on output.  I couldnt find any DIVIDE
 function
 in
CF.  So how would i do fielda/fieldb and have it output the RESULT.
  
Then I want to do the same thing but take airport1.fielda and
airport2.fielda and to the
AVERAGE of the 2.  Meaning airport1.fielda * airport2.fielda / 2.
Any suggestions on the CF syntax to make this output properly?
  
  
 Kelly
 
 --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Newbie qts -

2000-05-17 Thread Jonathan McGuire

Another options is to change the query to
SELECT isnull(firstname,'') + ' ' + isnull(lastname,'') as fullname from
TABLENAME

Then just use #fullname#.  The isNulls are there because if one of the
fields is NULL, the entire fullname value will be NULL.

Jonathan McGuire
Impact Solutions, Inc.
- Original Message -
From: "Clint Tredway" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 8:39 AM
Subject: RE: Newbie qts -


When you output your query just put them side by side cfoutput
query="queryname"#fname# #lname#/cfoutput

HTH

-Original Message-
From: Dharmendar Kumar [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 5:23 AM
To: [EMAIL PROTECTED]
Subject: Newbie qts -


This is a multi-part message in MIME format.

--=_NextPart_000_003E_01BFC017.F515F160
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I am selecting two fields in a query - firstname and lastname.

I want to concatenate the two fields and display the fullname in a =
single column in a CFGRID. How do I do this.

Can anyone help me?

Dharmendar Kumar

--=_NextPart_000_003E_01BFC017.F515F160
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Dwindows-1252" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.2314.1000" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2I am selecting two fields in a query - =
firstname=20
and lastname./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I want to concatenate the two fields =
and display=20
the fullname in a single columnnbsp;in a CFGRID. How do I do =
this./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Can anyone help me?/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Dharmendar =
Kumar/FONT/DIV/BODY/HTML

--=_NextPart_000_003E_01BFC017.F515F160--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: You have nice cookies .. mind if I have a look?

2000-05-17 Thread Larry C. Lyons

Remember you can also use a datasource on your server to store the client
variables, like CFID and CFToken. So this is an alternative to using cookies
to enable Session Management.


regards,
larry

--
Larry C. Lyons
EBStor.com
8870 Rixlew Lane, Suite 201
Manassas, Virginia 20109-3795
tel: (703) 393-7930 x253
fax: (703) 393-2659
http://www.ebstor.com
http://www.pacel.com
email: [EMAIL PROTECTED]

Chaos, panic, and disorder - my work here is done.
--
"Owens, Howard" [EMAIL PROTECTED] wrote in message
9231D56B8281D211B8E400A0C9D60B828D0982@VSNT02">news:9231D56B8281D211B8E400A0C9D60B828D0982@VSNT02...

 Well, to me, the main issue isn't what CF does or doesn't do with cookies
 ... it's user perception.  This is one more feather in the cap of the
 anti-cookie maniacs.  What until the media reports this -- "Cookies Steal
 User Identities ... film at 11"  It could get ugly.

 My latest programming methodolgy has relied on cookies and my attitude has
 been anti-cookie fanatics be damned.  If you disable cookies you can't use
 my site!!!  This whole new security hole undercuts my primary argument:
 There is nothing wrong with cookies.  Well, now, we find out, there is.
I
 don't know if that's going to change much of what I'm doing because the
 actual value of exploiting this hack is rather slim, it seems to me.

 I like session vars.  I want to use session vars (not to mention client
 vars). I shouldn't  need to jump through the hoops of passing session vars
 through URLs and hidden input fields (sort of defeats the purpose, doesn't
 it?).  For now, I'm going to keep using cookies as I've been using them.

 However ... friggin' frackin' Microsoft!!!

 H.

 =
 Howard Owens
 Web Producer
 InsideVC.com
 mailto:[EMAIL PROTECTED]
 =

  -Original Message-
  From: Sharon DiOrio [SMTP:[EMAIL PROTECTED]]
  Sent: Tuesday, May 16, 2000 12:56 PM
  To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
  Subject: RE: "You have nice cookies .. mind if I have a look?"
 
  Because the web is "stateless", each http request is independent of the
  previous ones.  So the web server (any web server, not just CF) needs a
  way
  to establish that multiple http requests belong to the same user.
  Therefore, session state needs to be maintained either by setting
cookies
  or by passing a unique ID in URL variables.
 
  In Cold Fusion SESSION management, the temporary cookie only contains
CFID
  and CFToken, values that mean nothing except to the Cold Fusion server
  that
  set them, having them stolen is less of a security risk than setting
  discrete cookies with user specific information.
 
  Sharon
 
  At 12:44 PM 5/16/2000 -0700, paul smith wrote:
  Nope.  You only need session vars
  to maintain a session state.
  You need to set cookies on your
  visitor's 'puter if you want them
  to be able to login automagically.
  
  best,  paul
  
  At 03:04 PM 5/16/00 -0400, you wrote:
  I thought cookies had to be enabled for session scoping to work?
  
 
-
  --
  ---
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
  
 

 --
  
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Database/CF course in NYC

2000-05-17 Thread stäs

Thanks. I took the Fast Track course in NYC, and I found it very superficial :(


At 09:03 AM 05/17/2000 -0400, you wrote:
WinMill supports three different types of ColdFusion classes (Fast Track to
Cold Fusion, Advanced Cold Fusion Development and Cold Fusion Performance
Tuning) running just about every month, in some cases twice a month.
Locations for classes are in New York City, Princeton NJ, State College PA,
Boston MA, and Long Island.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Database/CF course in NYC

2000-05-17 Thread Jack Montealegre

No problem. Fast Track is really designed as more an introduction to
ColdFusion and probably doesn't work with the more advanced areas you are
looking to get into, from what I gather from your original email. You may
want to contact WinMill to see if they also offer other more personalized
courses for groups etc. If you have any questions don't hesitate to contact
WinMill directly.

HTH,

Jack
- Original Message -
From: stäs [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 9:46 AM
Subject: Re: Database/CF course in NYC


 Thanks. I took the Fast Track course in NYC, and I found it very
superficial :(


 At 09:03 AM 05/17/2000 -0400, you wrote:
 WinMill supports three different types of ColdFusion classes (Fast Track
to
 Cold Fusion, Advanced Cold Fusion Development and Cold Fusion Performance
 Tuning) running just about every month, in some cases twice a month.
 Locations for classes are in New York City, Princeton NJ, State College
PA,
 Boston MA, and Long Island.

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Formatted Joined Table

2000-05-17 Thread Kurt Wiersma

I am sorry, I do have have the query working in Access. What I need to be
able to do is not have it return two records which are the same except for
the audience name.

Perhaps I will have to capture the data in one of the records and then get
both names for output in the email.

Does this sound like a good idea? My current code is below!

Thanks,

--Kurt

On 5/17/00 7:15 AM, CF-Talk at [EMAIL PROTECTED] wrote:

 I would double check your relationships in the db, if those aren't perfect
 it can mess up a lot of your data.
 
 Can you get your query working correctly in Access?  If not, then check the
 relationships as I mentioned above but if you can, just call the query with
 cfstoredproc.  It will be a lot faster plus it's cleaner and more reusable.
 
 Hope that helps,
 -Michael
 
 
 Michael Imhoff  www.omnicypher.com  icq: 10495667
 [EMAIL PROTECTED] (home)  (320) 255-4447 (home)
 [EMAIL PROTECTED] (cell)  (612) 247-8159 (cell)
 Allaire Alliance Consulting Partner
 
 
 - Original Message -
 From: Kurt Wiersma [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Tuesday, May 16, 2000 10:57 PM
 Subject: Formatting Table Join Output question
 
 
 Thank you for your help on this query below it is not working under
 Access.
 
 I am now trying, with the code below, to output the results of this query
 to
 an email. I need the audienceIDs to be joined to the audience name in the
 audience table but of course when I do this under this structure I get two
 records resulting. Both these records are the the same other then then
 their
 audience names. I need some way to catch these two audience names out of
 there and display them in the email along with the rest of the email being
 intact. Perhaps I should store them in a local var and then output them?
 
 Anyone have a good way I can accomplish this?
 
 Thanks in advance,
 
 --KW
 
 CFQUERY NAME="fullentry" DATASOURCE="#application.DataSource#"
 SELECT calendar.*, audience.*, audevent.eventID, audevent.audienceID
 FROM calendar INNER JOIN (audience INNER JOIN audevent ON
 audience.audienceID=audevent.audienceID) ON
 calendar.eventID=audevent.eventID
 /CFQUERY
 
 CFMAIL QUERY="fullentry" MAXROWS=1 TO="#application.emailto#"
 FROM="#contactemail#" SUBJECT="Calendar Entry to be Approved" TYPE="HTML"
 
 This email was generated by fusion.acc.stolaf.edu!
 P
 CFOUTPUT
 The following calendar entry sent by #contactname# is waiting for
 approval.
 P
 BEvent Name:/B #eventname#BR
 BStart Date:/B #DateFormat(startdate, "MM/DD/")#BR
 BEnd Date:/B  #DateFormat(enddate, "MM/DD/")#BR
 BTime:/B #TimeFormat(eventtime, "hh:mm tt")#BR
 BLocation:/B #location#BR
 BWebURL:/B #webURL#BR
 P
 BAudience:/B #name#
 P
 BCategory:/B #name#
 P
 BDescription:/BBR
 #description#
 
 
 --
 -
 --
 BA
 
 HREF="http://fusion.acc.stolaf.edu/calendar/admin/approve.cfm?id=#eventID#"
 Approve Entry/A/B
 BA
 
 HREF="http://fusion.acc.stolaf.edu/calender/admin/editevent.cfm?id=#eventID#
 "Edit this Entry/A/B
 /CFOUTPUT
 /CFMAIL
 
 On 5/16/00 5:34 PM, Heather Haindel at [EMAIL PROTECTED] wrote:
 
 Based on the tables I gave below, I would use this:
 
 select e.eventname, e.eventdescription, a.audiencename
 from test_event e, test_audience_event ae,
 test_audience a
 where e.event_id = ae.event_id
 and ae.audience_id = a.audience_id
 
 This works in SQL Server 6.5...you may need to adjust
 for your needs.
 
 I would also consider setting this up as a view (a
 query in Access) and pulling the data to your web site
 from there.
 
 --- Kurt Wiersma [EMAIL PROTECTED] wrote:
 
 
 
 What would be the SQL query to join these tables so
 that I could display the names
 of the audiences for each event?
 
 Would something like this work?
 
 CFQUERY NAME="fullentry"
 DATASOURCE="#application.DataSource#"
 SELECT  c.eventID, c.startdate, c.enddate,
 c.eventname, c.eventtime,
 c.location, c.approved, c.webURL, c.description,
 c.contactname, c.contactemail
 FROM calendar c
 WHERE c.eventID IS IN (SELECT eventID, audienceID
 FROM audevent
 WHERE audienceID IN (SELECT
 audienceID, name FROM audience))
 /CFQUERY
 
 --
 From: Heather Haindel
 Reply-To: [EMAIL PROTECTED]
 Date: Mon, 15 May 2000 17:21:47 -0700 (PDT)
 To: [EMAIL PROTECTED],
 [EMAIL PROTECTED]
 Subject: Re: Database Structure Question
 
 Assuming I understand correctly, you have two
 entities...audience and event. Each event on your
 calendar can be classified under one to many
 audience
 (types). Each audience (type) can be a
 classification
 for zero to many events. That gives you a many to
 many
 relationship between audience and event.
 
 In order to normalize this, you need an intersection
 table. I would create these three tables:
 
 audience - audience_id (PK), audiencename
 event - event_id (PK), eventname, eventdescription
 audience_event - 

RE: Cold Fusion Search tools

2000-05-17 Thread Steve Bernard

I take it that Verity does not fit your needs??

Steve

-Original Message-
From: Brian P. Doyle [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 9:04 AM
To: CF-talk
Subject: Cold Fusion Search tools


I'm looking for a decent search engine for our site.  I've looked into
both Ultraseek and SiteServer Search, but I was curious if there might be
one a bit more CF friendly.  Any suggestions would be greatly appreciated.


Brian P. Doyle
Developer
SMTnet.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Philip Arnold - ASP

 I'm looking for a decent search engine for our site.  I've looked into
 both Ultraseek and SiteServer Search, but I was curious if there might be
 one a bit more CF friendly.  Any suggestions would be greatly appreciated.

What's wrong with Verity? We use it and it works fine...

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Brian P. Doyle

what is verity?

-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:12 AM
To: [EMAIL PROTECTED]
Subject: RE: Cold Fusion Search tools


I take it that Verity does not fit your needs??

Steve

-Original Message-
From: Brian P. Doyle [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 9:04 AM
To: CF-talk
Subject: Cold Fusion Search tools


I'm looking for a decent search engine for our site.  I've looked into
both Ultraseek and SiteServer Search, but I was curious if there might be
one a bit more CF friendly.  Any suggestions would be greatly appreciated.


Brian P. Doyle
Developer
SMTnet.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cold Fusion Search tools

2000-05-17 Thread Larry C. Lyons

Brian,

Have you tried the Verity search engine that's built into CF? That works
fairly well for most searches. Atomz.com also has a fairly nice and fast
search engine, and you cannot beat the price either for the free version or
the paid one.

hth,
larry

--
Larry C. Lyons
EBStor.com
8870 Rixlew Lane, Suite 201
Manassas, Virginia 20109-3795
tel: (703) 393-7930 x253
fax: (703) 393-2659
http://www.ebstor.com
http://www.pacel.com
email: [EMAIL PROTECTED]

Chaos, panic, and disorder - my work here is done.
--
"Brian P. Doyle" [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I'm looking for a decent search engine for our site.  I've looked into
 both Ultraseek and SiteServer Search, but I was curious if there might be
 one a bit more CF friendly.  Any suggestions would be greatly appreciated.


 Brian P. Doyle
 Developer
 SMTnet.com
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Small Project fix - Need good programmer

2000-05-17 Thread Stephen Guluk

Hi there, 
I have a small change to an existing project that is causing us problems.
We've added another category to our current list but can not seem to get the
new category to list and return entries. Granted, it does remember sub
categories as well and was written using some JavaScript.

If anyone that is of an advanced level has a bit of time to help sort out
this problem it will lead to more projects in the future. Yes, this is a
paying gig but I've had a couple people look at the code and not understand
how it is working


Please contact me at the number below or my email address if you are
interested.

Thanks, 

Steve Guluk
http://www.SGDesign.com
Ph  : (949) 661-9333



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Brian P. Doyle

ah, I'm an idiot.  It was sitting in front of me.

But does Verity support database searches?  All of the content that I want
to search are in databases.

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:21 AM
To: [EMAIL PROTECTED]
Subject: RE: Cold Fusion Search tools


 I'm looking for a decent search engine for our site.  I've looked into
 both Ultraseek and SiteServer Search, but I was curious if there might be
 one a bit more CF friendly.  Any suggestions would be greatly appreciated.

What's wrong with Verity? We use it and it works fine...

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: processor comparisons

2000-05-17 Thread Steve Bernard

On "to do" list but, not done yet. The biggest problem for me is finding the
resources to build two servers that are identical except for the CPUs. To be
fair it would be necessary to set the servers up as if they were in a
production environment. I just ordered a rack mounted dual-Xeon 550MHz
server and it came in at close to $15K. While that isn't a fortune, the cost
restricts my ability to not use it for it's intended purpose.

Steve

Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 8:59 AM
To: [EMAIL PROTECTED]
Subject: OT: processor comparisons


Anyone done benchmarking of CF apps on Xeons versus non-Xeons of same clock
speed?

thanks

---
Martin Herbener
[EMAIL PROTECTED]
Kentucky Department of Education



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Steve Bernard

Yes, Verity can search a database. All the Verity information is in the
documentation and/or CF Dev Kit.

Steve

-Original Message-
From: Brian P. Doyle [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:33 AM
To: [EMAIL PROTECTED]
Subject: RE: Cold Fusion Search tools


ah, I'm an idiot.  It was sitting in front of me.

But does Verity support database searches?  All of the content that I want
to search are in databases.

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:21 AM
To: [EMAIL PROTECTED]
Subject: RE: Cold Fusion Search tools


 I'm looking for a decent search engine for our site.  I've looked into
 both Ultraseek and SiteServer Search, but I was curious if there might be
 one a bit more CF friendly.  Any suggestions would be greatly appreciated.

What's wrong with Verity? We use it and it works fine...

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread paul smith

At 10:32 AM 5/17/00 -0400, you wrote:
ah, I'm an idiot.

Welcome to the club ;-)


But does Verity support database searches?

Yes.

See CFWACK4 (aka "bible") p 716

best,  paul

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cold Fusion Search tools

2000-05-17 Thread Chris Phillips

"Larry C. Lyons" wrote:
 
 Brian,
 
 Have you tried the Verity search engine that's built into CF? That works
 fairly well for most searches. Atomz.com also has a fairly nice and fast
 search engine, and you cannot beat the price either for the free version or
 the paid one.
 


I've been looking for an optimized text search engine and would be
interested in people's opinions on Verity vs. Microsoft Search. Verity
has some problems for me such as the default OR option, incremental
updates, and questions of scalability. I also question the lifespan of
this product since, I think, it's based on Verity '97 and verity has
since moved on and diversified it's product line.  Is verity dying and
Microsoft Search coming alive? Even so does verity currently work better
than Microsoft Search? The docs on Search portray it as an entry level
product, does anyone have any experience with big loads on it? Any input
on a high load, frequently updating database text search would be great.

bye
chris
phillips
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Session vars in a clustered environment

2000-05-17 Thread Michael Paulsmeyer

I have one question dealing with client variables.  The text at the end was
taken from CF Help.  I have a few questions...

1.  "If ID and token combinations already exist on each host in the cluster"
How does each server know of the existence of other cfid/cftoken
combinations on other servers?

2.  "common domain-level cookie"  Where exactly is this domain-level cookie
stored?  In the client variable repository? ie. registry or db

3.  If a client is smart enough to ask me if two servers can create the same
cfid/cftoken combination, am I supposed to say that CF 'magically' takes
care of it?

So, if anyone out there can explain exactly how this works I would greatly
appreciate it.

"ColdFusion 4.5 provides several client variable attributes in the
CFApplication tag that allow you to maintain application state across a
cluster when using server-side client variables. These attributes enable
client variable management and set CFID and CFTOKEN cookies at the domain
level (for example, .allaire.com). If ID and token combinations already
exist on each host in the cluster, ColdFusion migrates the host-level
cookies on each cluster member to the single, common domain-level cookie.
Following the setting or migration of host-level cookies to a domain-level
cookie, ColdFusion creates a new cookie (cfmagic) that tells ColdFusion that
domain cookies have been set.

This domain-level cookie allows a ColdFusion application to maintain
specific client information across a server cluster."


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Philip Arnold - ASP

 But does Verity support database searches?  All of the content that I want
 to search are in databases.

Check up CFIndex and CFSearch... it works on database, HTML, files of a
certain extension, etc.

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Brian P. Doyle

to further reveal my ignorance..
What is CFWACK4?

-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:44 AM
To: [EMAIL PROTECTED]
Subject: RE: Cold Fusion Search tools


At 10:32 AM 5/17/00 -0400, you wrote:
ah, I'm an idiot.

Welcome to the club ;-)


But does Verity support database searches?

Yes.

See CFWACK4 (aka "bible") p 716

best,  paul


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cold Fusion Search tools

2000-05-17 Thread Billy Cravens

Yes, it supports both database and file searches.  You can even do a
database search the hard way (in SQL).  I would recommend picking the Web
Application Construction Kit,
(http://shop.barnesandnoble.com/booksearch/isbnInquiry.asp?userid=3LR3PRUC3L
mscssid=A49JHLAW53S92NHF001PQJ9WME7DBNHEsrefer=salesurl=Rwww.bn.com/isbn
=078971809X)which should outline the specifications and implementation.

Billy Cravens

- Original Message -
From: Brian P. Doyle [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 7:32 AM
Subject: RE: Cold Fusion Search tools


 ah, I'm an idiot.  It was sitting in front of me.

 But does Verity support database searches?  All of the content that I want
 to search are in databases.

 -Original Message-
 From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 17, 2000 10:21 AM
 To: [EMAIL PROTECTED]
 Subject: RE: Cold Fusion Search tools


  I'm looking for a decent search engine for our site.  I've looked
into
  both Ultraseek and SiteServer Search, but I was curious if there might
be
  one a bit more CF friendly.  Any suggestions would be greatly
appreciated.

 What's wrong with Verity? We use it and it works fine...

 Philip Arnold
 ASP Multimedia Limited
 T: +44 (0)20 8680 1133

 "Websites for the real world"

 **
 This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please notify
 the system manager.
 **


 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFGRID CAB EXTRACT REDUNDANCY

2000-05-17 Thread Aron Malkine

Some people had problems setting up CFGRID due to the necessity of placing
the CFIDE directory and files in the domain root of the server. My problem
is that even with that directory and the files in the right place, every
time someone hits a CFGRID page, it attemps to re-download the CAB file and
an annoing window pops up that confuses them and then they have to wait for
it to dl and extract. Shouldn't you only have to do this once? Is there
something I am missing? Any info appreciated...

Aron G Malkine : PK Interactive Inc.
   : ph 212-273-9623
   : fx 212-273-9642

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF -- IRC

2000-05-17 Thread Billy Cravens

Seems that you can attempt to interface with mIRC's API if it's installed
and running on the server.. just an idea.. that'd be something fun to play
with.

Billy


- Original Message -
From: lsellers [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, May 16, 2000 9:16 PM
Subject: RE: CF -- IRC


  Hello all! I run a video game web site and an IRC server. I want
  CF to post
  a message into certain IRC channels depending on the content we are
adding
  to the site. Does anyone have any suggestions/experience for/with this?
I
  BELIEVE PHP can do it, but I cant seem to find anything on it. I would
  revert to any langauge I know that can do it if anyone knows a way, but
CF
  would be much prefered. Thanks in advance for the help!
 
  Mike Grundvig

 Well, you CAN do it with CFX_TCPClient as-is but the IRC server has to
have
 IDENT turned off. Most all irc servers these days required IDENT so...
 shrug.

 You unfortunately will have to download the RFC for the IRC protocol and
 read through all of it to do this ;-), but...

 --min


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Abe V. S. Troel

Well, it was a good run, but I guess this pretty much wraps it for Cold
Fusion.  Not too many people are going to want to bother with it given that
now they can get something much better for about the same amount of money.

Oh well, nothing lasts forever.  Time to move on.

###

http://www.apple.com/pr/library/2000/may/15webobjects.html

Apple Drops WebObjects License Price From $50,000
to $699
New Version to be Entirely Java-Based
WWDC, SAN JOSE, California—May 15, 2000—Apple® today unveiled aggressive new
pricing for its industry-leading WebObjects® web application server
software, and also revealed that the next version of WebObjects will be
written entirely in Java. Starting today, customers can purchase a complete
solution for developing and deploying WebObjects applications for $699. This
new price includes both the award-winning WebObjects developer tools and a
high-end deployment license which allows unlimited usage on one server,
which together were previously priced at over $50,000.

Later this year, Apple will ship WebObjects 5 for Java, which will be built
using 100 percent pure Java technology. WebObjects 5 for Java will enable
Internet developers using Java to quickly build complex solutions which can
be deployed on virtually any server. WebObjects 5 for Java also will support
a wealth of Internet standards including Enterprise Java Beans (EJB) for
interoperability and JDBC for universal database connectivity.

“WebObjects is the premiere software for rapidly developing and deploying
web applications to millions of users worldwide,” said Steve Jobs, Apple’s
CEO. “With its new pricing and support for Java, WebObjects is now
accessible to a wider audience of customers and developers.”

WebObjects is an end-to-end application server with tools, technologies and
capabilities that make it an easy-to-use, standards-compliant solution. It
has an object-oriented architecture that promotes quick development of
reusable components. WebObjects provides scalability, load balancing and
fault-tolerant capabilities for multi-threaded applications running across
multiple CPUs that support high transaction volumes.

Apple is also offering new consulting services for customers who would like
to implement a customized web application developed in WebObjects as part of
its expanded professional services organization which delivers consulting,
integration and training services for WebObjects, QuickTime™ Streaming
Server and Mac® OS X. The expanded services organization, Apple iServices,
will provide professional services for Apple customers and developers in the
creative, education and business markets.

Pricing  Availability
WebObjects 4.5 is available through Apple Resellers and the Apple Store™
(www.apple.com) for US$699. A fully cross-platform solution, WebObjects 4.5
runs on Mac OS X Server, Windows NT/2000, Solaris and HP-UX systems.
WebObjects 5 for Java will be available later this year.

Apple ignited the personal computer revolution in the 1970s with the Apple
II and reinvented the personal computer in the 1980s with the Macintosh.
Apple is committed to bringing the best personal computing experience to
students, educators, creative professionals and consumers around the world
through its innovative hardware, software and Internet offerings.

Press Contacts:
Vanessa Rios
Apple
(408) 974-0610
[EMAIL PROTECTED]

Mandy Summers
Edelman Worldwide
(650) 968-4033 ext.2746
[EMAIL PROTECTED]


NOTE TO EDITORS: For additional information visit Apple's PR website
(www.apple.com/pr/), or call Apple's Media Helpline at (408) 974-2042.

© 2000 Apple Computer, Inc All rights reserved. Apple, the Apple logo, Apple
Store, Mac OS, QuickTime and WebObjects are either registered trademarks or
trademarks of Apple. Other company and product names may be trademarks of
their respective owners

__
FREE Personalized Email at Mail.com
Sign up at http://www.mail.com/?sr=signup

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread David E. Crawford

Gee, more marketing hype. I for one am not going to close up shop because
some marketeer at Apple puts out a press release.  Market forces rely on
substantially more substance than the vaporware proposed by most vendors.
In its current state, CF is robust and stable.  Jumping ship just because of
the buzzwords has gotten people in deep trouble in the past, and I have no
doubt that this will be true this time around as well.

DC


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread zknoll


I have an 2-D array of information that I convert into a wddx packet to
pass between templates but I would also like to be
able to store the packet into a database and read it out again. A) Is
this possible? B) Is it possible with access 200 as the
backend database? C) If A and B are true can you show me a snippet of
code as to how this would be done?

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: SPECTRA: Embed an object within itself...

2000-05-17 Thread Judah McAuley

We don't use Spectra at the moment (wish I had a spare $15,000 laying 
around...), but I can tell you the way that we tackled that problem.  We 
defined a table of option types (color, size, fabric, etc) and a table of 
option values with foreign keys to the option types (color, red; color, 
blue; size, small; size,medium ...) and then an association table that has 
id's for instances of a product along with a unique combination of 
option_types and option_values. The first instance of the product T-Shirt 
would have a product_dtl id of 1 and the association table have records 
such as (1, color, blue) (1, size, small) product_dtl id 2 would have (2, 
color, blue) (2, size, medium) etc.  This gives you a way to arbitrarily 
define as many option types and option values you want and then product 
dtl's are combinations of those items, some of which may be defined and 
some may not.  On the front end, you can do a step through process so that 
if the user chooses a value for Color first, then you can query for all of 
the option values for Size which are contained within product dtl's that 
have an entry which include Color:Blue.  That way you never give people an 
option to choose which is not a defined product combination.

Hope that helps,
Judah

At 11:30 PM 5/16/2000 -0700, you wrote:
Hello all,

 I asked this question at my CFUG meeting tonight and no one knew the
answer. I am creating a product catalog for a web site using Allaire
Spectra. I create a product object and an option object. So that each option
can have it's own SKU, price, etc. What I want to do is then make each
option have it's own set of options. So that a shirt that is red is only
available in large, etc. My problem comes when I try to embed the option
object within itself. I create a property using the option object and when I
go to edit the option object and try to add a new property, the option
property is not there. If I am totally going about this the wrong way,
please let me know, but this is the best way I could think of to accomplish
my goal. Here is a visual:

Product: T-Shirt
 Option: BLUE
 Option: SMALL
 SKU: 001BS
 PRICE: 3.25
 Option: MEDIUM
 SKU: 001BM
 PRICE: 3.34
 Option: LARGE
 Option: RED
 Option: MEDIUM
 SKU: 001RM
 PRICE: 3.99
 Option: LARGE
 SKU: 001RL
 PRICE: 4.50

Does this make sense to everyone?

Any help would be greatly appreciated.

Thanks,

Sean O'Brien
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: You have nice cookies .. mind if I have a look?

2000-05-17 Thread Chris Giminez

Are you serious?!? They absolutely need to be told/warned. Is this a small town bank 
or a national?


Chris Giminez




 Hello ALL.
 all this talk of cookies got me to go poke arund through my own.

 Not sure if i should really care or not.
 but my bank has my ATM/Visa Number plain as day in one of its cookies on my
 box.

 should i bring it to theire attention?
 Should i just disable cookies for that site?
 i know that they use CF for most there stuff.
 but the files always display as htm.

 Thanks
 -paul
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Chris Tazewell

Hmm, Java lovely!

*spit*

Taz


- Original Message -
From: "Abe V. S. Troel" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 5:00 PM
Subject: Will the last person leaving Cold Fusion please turn out the
lights?


Well, it was a good run, but I guess this pretty much wraps it for Cold
Fusion.  Not too many people are going to want to bother with it given that
now they can get something much better for about the same amount of money.

Oh well, nothing lasts forever.  Time to move on.


New Version to be Entirely Java-Based
WWDC, SAN JOSE, California-May 15, 2000-Apple® today unveiled aggressive new
pricing for its industry-leading WebObjects® web application server
software, and also revealed that the next version of WebObjects will be
written entirely in Java. Starting today, customers can purchase a complete
solution for developing and deploying WebObjects applications for $699. This
new price includes both the award-winning WebObjects developer tools and a
high-end deployment license which allows unlimited usage on one server,
which together were previously priced at over $50,000.

Later this year, Apple will ship WebObjects 5 for Java, which will be built
using 100 percent pure Java technology. WebObjects 5 for Java will enable
Internet developers using Java to quickly build complex solutions which can
be deployed on virtually any server. WebObjects 5 for Java also will support
a wealth of Internet standards including Enterprise Java Beans (EJB) for
interoperability and JDBC for universal database connectivity.

"WebObjects is the premiere software for rapidly developing and deploying
web applications to millions of users worldwide," said Steve Jobs, Apple's
CEO. "With its new pricing and support for Java, WebObjects is now
accessible to a wider audience of customers and developers."

WebObjects is an end-to-end application server with tools, technologies and
capabilities that make it an easy-to-use, standards-compliant solution. It
has an object-oriented architecture that promotes quick development of
reusable components. WebObjects provides scalability, load balancing and
fault-tolerant capabilities for multi-threaded applications running across
multiple CPUs that support high transaction volumes.

Apple is also offering new consulting services for customers who would like
to implement a customized web application developed in WebObjects as part of
its expanded professional services organization which delivers consulting,
integration and training services for WebObjects, QuickTimeT Streaming
Server and Mac® OS X. The expanded services organization, Apple iServices,
will provide professional services for Apple customers and developers in the
creative, education and business markets.

Pricing  Availability
WebObjects 4.5 is available through Apple Resellers and the Apple StoreT
(www.apple.com) for US$699. A fully cross-platform solution, WebObjects 4.5
runs on Mac OS X Server, Windows NT/2000, Solaris and HP-UX systems.
WebObjects 5 for Java will be available later this year.

Apple ignited the personal computer revolution in the 1970s with the Apple
II and reinvented the personal computer in the 1980s with the Macintosh.
Apple is committed to bringing the best personal computing experience to
students, educators, creative professionals and consumers around the world
through its innovative hardware, software and Internet offerings.

Press Contacts:
Vanessa Rios
Apple
(408) 974-0610
[EMAIL PROTECTED]

Mandy Summers
Edelman Worldwide
(650) 968-4033 ext.2746
[EMAIL PROTECTED]


NOTE TO EDITORS: For additional information visit Apple's PR website
(www.apple.com/pr/), or call Apple's Media Helpline at (408) 974-2042.

© 2000 Apple Computer, Inc All rights reserved. Apple, the Apple logo, Apple
Store, Mac OS, QuickTime and WebObjects are either registered trademarks or
trademarks of Apple. Other company and product names may be trademarks of
their respective owners

__
FREE Personalized Email at Mail.com
Sign up at http://www.mail.com/?sr=signup


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Ian Lurie

I seem to remember someone saying that ASP was a CF killer because it was
free, too...

THAT prediction sure didn't work out...

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 9:20 AM
To: [EMAIL PROTECTED]
Subject: Re: Will the last person leaving Cold Fusion please turn out
the lights?


Gee, more marketing hype. I for one am not going to close up shop because
some marketeer at Apple puts out a press release.  Market forces rely on
substantially more substance than the vaporware proposed by most vendors.
In its current state, CF is robust and stable.  Jumping ship just because of
the buzzwords has gotten people in deep trouble in the past, and I have no
doubt that this will be true this time around as well.

DC



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFSchedule Bug????

2000-05-17 Thread Dave Hannum

Have you tried calling it via HTTP call?  I don't seem to have any problems running 
scheduler this way.

Just a thought,
Dave


=
"What we need  is a list of specific unknown problems we will encounter"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524



- Original Message -
From: Robert Everland [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 11:12 AM
Subject: CFSchedule Bug


Ok I have used CFSchedule many time before but today I seem to be
having a problem using it in 4.5.1. I set it all up for every 30 min
schedule, now I can go to the URL it's an internal URL so people don't touch
it, plus it's for our intranet. When I put that URL in the scheduler it
gives me 404 errors and when it shows the oath (in the log file) it's a path
of another part of my website. Now I do have mappings set up, but the /
mapping is not where it is saying the template can't be found. I have no
idea why it's trying to find the template in the wrong place. Does anyone
else have this problem?


Robert Everland III
Web Developer
Dixon Ticonderoga
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to
[EMAIL PROTECTED] with 'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cluster Environment

2000-05-17 Thread Michael Paulsmeyer

Craig:

The text I quoted in the original post is from the very chapter you
suggested I read.

So, let me get this straight, if a client with a host cookie hits a server
with domain-level cookies set it will then migrate that cookie to a
domain-level and set cfmagic (I love that name) so the other servers know
that that client now has a domain-level cookie.

What happens when, if by some freak event, that one client with a host-level
cookie hits the cluster and gets it's cookie migrated to domain-level, but
there exists another client with a domain-level cookie with that same
id/token combo?  Basically what I am trying to ask is what if two servers
hand out the same cfid/token. Can that happen?

--pinners are all good, we already knew that.

--alpiners need to know that "To free the heel, means to free the mind!"

Mike.

-Original Message-
From: Craig Fisher [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 10:12 AM
To: [EMAIL PROTECTED]
Cc: Michael Paulsmeyer
Subject: RE: Cluster Environment


Mike:

Check out the documentation for the CAPPLICATION tag.

Specifically the documentation for the SETDOMAINCOOKIES argument:

(here it is)

SETDOMAINCOOKIES

Optional. Yes or No. Sets the CFID and CFTOKEN cookies for an
entire domain not just a single host. Applications that are running
on clusters must set this value to Yes. The default is No.


and for even more fun read from chapter 12 of "Developing Web Applications
with ColdFusion" the section entitled "Managing Client State in a Clustered
Environment"


It's all good pinner!

--Craig





-Original Message-
From: Michael Paulsmeyer [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 3:09 PM
To: [EMAIL PROTECTED]
Subject: Cluster Environment


Hello All,

My question is if two users hit a clustered site and both hit a different
server, could those servers create the same cfid/cftoken combination?
Asking this question because a client wants to move from session variables
to client variables and I want to assure him that this situation will not
happen or that if it does there are simple measures to take to resolve it.

Thanks In Advance,
Mike Paulsmeyer.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Re: what is ODBC 37000 error ??

2000-05-17 Thread Joseph Eugene

Vince,
I dont think the application server should crash, well you could try
increase the page file size on NT Web Server where you are running CF and
what version Sql Database server are you running? Try installing the lastest
service pack v2 for Sql Server 7.0, 37000 is a known bug for ver6.5 (refer
microsoft site). I have returned more than 70,000 records from the database
at a time, how many records are you returning or processing and how much
memory do you have on NT Server?.
increasing the pagefile size itself might solve this...
control panel/System/performance!

Joe


--Original Message--
From: vincy [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Sent: May 17, 2000 1:34:15 PM GMT
Subject: RE: Re: what is ODBC 37000 error ??


hi Joe,
Im using CF 4.0 enterprise server.
And not overriding any constraint violations.

The first part of the code  searches for the parent categories, then
searches for child categories.
Then totals all the items for sale in each category
so on ...
--
So, these are the very basic of SQL queries that are involved.
But no doubt goes thru a series  of loops.

As far as stored procedure goes, I may implement that in sometime.

But what I wanted to know is what really causes that dreadful --
===
ODBC Error Code = 37000 (Syntax error or access violation)

[Microsoft][ODBC SQL Server Driver][SQL Server]There is insufficient system
memory to run this query.

man!! I'm totally pissed getting that error ... and another one of those
will make me explode..
Incidentally, the server crashes once in 3 days ... so there is one due any
minute ! : )

VINCE


At 06:05 AM 5/17/00 -0700, [EMAIL PROTECTED] wrote:


What Sql server version are you using?
Are you overiding any Constraint violations?
Primary key, foreign key etc
Doing all the looping, i guess would slow down the transaction
and might fail.

If you are searching through large junks of data and have parameters
for this, it would be apt to do this with a Stored Procedure.
How big is your returned dataset, could you do subqueries ? or
Joins , thats might speed up things,
but i guess it better to this using a Stored Procedure.




--- Original Message ---
vincy [EMAIL PROTECTED] Wrote on
Wed, 17 May 2000 18:00:48 +0530
  --
hi,
yeah, well I've posting this problem all over the place, and
on one seems
to be able to figure it out.
The thing is that part of the code in brief does this :
CFloop1
query
query
CFloop2
query
query
/lCFoop
/CFloop

Actually there are more queries. So, basically there are nested
loops and
in that there are queries to the SQL server.
So, now if 500-700 people hit the site a day, I was wondering
if this kind
of  CF coding would choke the
SQL server !

vince




At 06:23 PM 5/17/00 +1200, David Cummins wrote:
 I don't actually know the answer, but if you do find out, let
me know.
 
 One of our sites, the server (which is hosted by someone else)
is chewing
 up 10k
 of memory every second for no known reason. They recently installed

 Service Pack
 6, or something like that.
 
 Luckily its not our problem, but its good to know these things...
 
 David
 
 vincy wrote:
  
   hi,
   Im running my site on the coldfusion 4.0 server, with
NT 4.0 and
  SQL 7.0
   The strangest thing has been happening the last few days,
Ive been
   getting these
   ODBC 37000 errors quite often. It says that there is not
enough memory to
   run the query.
  
   No one at the place that is hosting the site can figure
out what page
   is causing this.
   They say that over a period of time the memory gets eaten
up  until it the
   server runs out of memory.
  
   Im guessing that one of the pages that is used often is a
page that has a
   number of queries and loops to the SQL server .
  
   Anyone have any ideas on this ...Im running out of time.
I cant have the
   server crashing once in two days.
  
   regards,
   vince
  
  
 

--
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk

  or send a message to [EMAIL PROTECTED] with
'unsubscribe'
  in the body.
 -
 -
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
 send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
 the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.



-
Sent using MailStart.com ( http://MailStart.Com/welcome.html )
The FREE way to access your mailbox via any web browser, 

RE: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Michael Paulsmeyer

Here you go...

In one template...
!--- create and populate your array ---
cfset myarray = arraynew()

cfset myarry[1] = "something"

!--- serialize array ---
CFWDDX INPUT="#myarray#" OUTPUT="Client.MyWDDX" ACTION="CFML2WDDX"

In the other template that you need to reference the array...
!--- deserialize array ---
CFWDDX INPUT="#Client.MyWDDX#" OUTPUT="myarray" ACTION="WDDX2CFML"

!--- Now you reference the array by name ---
cfoutput#myarray[1]#/cfoutput

I tested this with clientmanagement=yes in cfapplication tag and in cfserver
set a db for client variables, using MSAccess2000.

Mike.

-Original Message-
From: zknoll [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 9:12 AM
To: [EMAIL PROTECTED]
Subject: Can I put a wddx packet into a database and read it back out?



I have an 2-D array of information that I convert into a wddx packet to
pass between templates but I would also like to be
able to store the packet into a database and read it out again. A) Is
this possible? B) Is it possible with access 200 as the
backend database? C) If A and B are true can you show me a snippet of
code as to how this would be done?


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Stephen M. Aylor

Yes - depending on a few things

1. How long is the wddx packet/string after you serialize your 2D Array?

2. Will that fit into a Access text field or will you have to use memo?
either will work, depending on answer to #1.

Sure there's better, but here's something Im using:

cfwddx action="CFML2WDDX" input="#Your2dArray#" output="serialized2darray"

Here's the CFML Stored Proc snippet - do you need a snip of the actual sql
too?

Just a basic "insert into" statement should do it

cfstoredproc procedure="InsertWddx" datasource="YourDSN"
 cfprocparam
type="In"
cfsqltype="CF_SQL_CHAR"
dbvarname="wddx_packet"
value="#serialized2darray#"
maxlength="7000"
null="No"
/cfstoredproc

Steve

- Original Message -
From: zknoll [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 08:11 AM
Subject: Can I put a wddx packet into a database and read it back out?



 I have an 2-D array of information that I convert into a wddx packet to
 pass between templates but I would also like to be
 able to store the packet into a database and read it out again. A) Is
 this possible? B) Is it possible with access 200 as the
 backend database? C) If A and B are true can you show me a snippet of
 code as to how this would be done?

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Braver, Ben:

Yet again -- right on, Jennifer!!!

 -Original Message-
 From: Jennifer [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, May 17, 2000 9:32 AM
 To:   [EMAIL PROTECTED]
 Subject:  Re: Will the last person leaving Cold Fusion please turn out
 the lights?
 
 At 12:00 PM 5/17/00 -0400, you wrote:
 Well, it was a good run, but I guess this pretty much wraps it for Cold
 Fusion.  Not too many people are going to want to bother with it given
 that
 now they can get something much better for about the same amount of
 money.
 
 Oh well, nothing lasts forever.  Time to move on.
 
 I'm not doubting the quality of the product, but I question your motives 
 for sending this message. You have never sent us a message before, but 
 suddenly you send us a message including a press release and your
 "opinion" 
 that this is a better product and that we will all be abandoning the one 
 that the list supports. Plus, you sent it from an anonymous emailer. 
 Frankly, I just searched Apple.com for your name. I didn't find it, but 
 then again, I didn't find the names of any Apple sales representatives.
 
 I don't appreciate being spammed.
 
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cold Fusion Search tools

2000-05-17 Thread Judah McAuley

At 11:13 AM 5/17/2000 -0700, you wrote:

Now, if you need to perform a search on the db in real time, Verity's not
the answer.  Easy enough, however, to "almost" query in real time: everytime
you update/insert to the db, you re-run your collection page (of course,
that can be a bit excessive depending on your situation, but that's another
discussion).

Billy

For what it's worth, Sybase Adaptive Server Enterprise has Verity full-text 
searches built into the database.  I have not yet implemented it, but I'm 
going to.  You create indexes off of db tables and then add on Verity 
search syntax to your SQL queries.  I believe that you can also create 
single indexes based off of joins to allow you to search multiple tables at 
once.  There is an add on to the Verity package that will allow you to 
search Word docs, PDF's, etc that are stored as BLOB's in the db.

Fun stuff.

Judah

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Able Commerce Help

2000-05-17 Thread Russell, Bonnie

I need to have an email option (trying to talk them out of this) along with
a fax option for submitting orders.  The email will be wrapped in a PGP tag.
I'm too new at Able commerce to know if a wizard will do the trick. So I'm
assuming I need to modify the app.

Bonnie


-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 6:07 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Able Commerce Help


Well, what kind of modifications do you need.  Is it something you could
just generate custom wizards with and import them directly into the page.
Or are you changing the actual structure of the app. 

Emmet McGovern
developer/ Byte Size Inc

-Original Message-
From: Russell, Bonnie [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 6:07 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Able Commerce Help


yes, I've followed their directions in the system administrators
documentation, and that's how my troubles began.

I need to have a complete copy of the program files since we'll be modifying
them slightly for one customer.  When we bought this package, that was one
of the requirements and we have the developers edition.

I've been all through their site and read most of their documentation.  I
have to admit, I'm the first at our company to actually use the able
commerce, but as long as I don't change any mappings, there hasen't been any
problems.

This was supposed to be a 3 day project which is now going on 3 weeks and
the customer is not happy and I'm getting to the point where ulcers look
like welcome relief compared to the stress they're putting us under.

Is there a particular FAQ that you're referring to?

Thanks for the info
Bonnie



-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 5:16 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Able Commerce Help


You just need to have unique wizards or are you trying to dulicate the whole
package?  Have you checked out the extensive faq's on customization at the
able website?

Emmet McGovern
developer/ Byte Size Inc

-Original Message-
From: Russell, Bonnie [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 2:58 PM
To: '[EMAIL PROTECTED]'
Subject: Able Commerce Help


Has anyone had experience using able commerce and customizing for a
particular customer.  What I need is to have a separate directory for
program files for one customer while using the original able commerce
program files for everyone else.  Everytime I follow the directions to copy
the files and change the mapping for my one store, all the stores stop
working.  I've been on the phone with able commerce, and so far they've
given me nothing but the brush off.

So how do you set up a store with it's own program files?

Bonnie Russell
[EMAIL PROTECTED]

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: You have nice cookies .. mind if I have a look?

2000-05-17 Thread Mike Sheldon

I'd go hit them with a very large hammer. Banks should know better than to
store sensitive information in cookies.

Michael J. Sheldon
Internet Applications Developer
Phone: 480.699.1084
http://www.desertraven.com/
PGP Key Available on Request

-Original Message-
From: Paul Ihrig [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 06:08
To: '[EMAIL PROTECTED]'
Subject: RE: "You have nice cookies .. mind if I have a look?"


Hello ALL.
all this talk of cookies got me to go poke arund through my own.

Not sure if i should really care or not.
but my bank has my ATM/Visa Number plain as day in one of its cookies on my
box.

should i bring it to theire attention?
Should i just disable cookies for that site?
i know that they use CF for most there stuff.
but the files always display as htm.

Thanks
-paul

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Don't let the door hit you on the way out.

2000-05-17 Thread johnpatterson

I was in Cambridge for training last month and there were Java Developers in the class 
who indicated they are developing a Java-based CF.

On Wed, 17 May 2000, "Abe V. S. Troel" wrote:

 
 Well, it was a good run, but I guess this pretty much wraps it for Cold
 Fusion.  Not too many people are going to want to bother with it given that
 now they can get something much better for about the same amount of money.
 
 Oh well, nothing lasts forever.  Time to move on.
 
 ###
 
 http://www.apple.com/pr/library/2000/may/15webobjects.html
 
 Apple Drops WebObjects License Price From $50,000
 to $699
 New Version to be Entirely Java-Based
 WWDC, SAN JOSE, California—May 15, 2000—Apple® today unveiled aggressive new
 pricing for its industry-leading WebObjects® web application server
 software, and also revealed that the next version of WebObjects will be
 written entirely in Java. Starting today, customers can purchase a complete
 solution for developing and deploying WebObjects applications for $699. This
 new price includes both the award-winning WebObjects developer tools and a
 high-end deployment license which allows unlimited usage on one server,
 which together were previously priced at over $50,000.
 
 Later this year, Apple will ship WebObjects 5 for Java, which will be built
 using 100 percent pure Java technology. WebObjects 5 for Java will enable
 Internet developers using Java to quickly build complex solutions which can
 be deployed on virtually any server. WebObjects 5 for Java also will support
 a wealth of Internet standards including Enterprise Java Beans (EJB) for
 interoperability and JDBC for universal database connectivity.
 
 “WebObjects is the premiere software for rapidly developing and deploying
 web applications to millions of users worldwide,” said Steve Jobs, Apple’s
 CEO. “With its new pricing and support for Java, WebObjects is now
 accessible to a wider audience of customers and developers.”
 
 WebObjects is an end-to-end application server with tools, technologies and
 capabilities that make it an easy-to-use, standards-compliant solution. It
 has an object-oriented architecture that promotes quick development of
 reusable components. WebObjects provides scalability, load balancing and
 fault-tolerant capabilities for multi-threaded applications running across
 multiple CPUs that support high transaction volumes.
 
 Apple is also offering new consulting services for customers who would like
 to implement a customized web application developed in WebObjects as part of
 its expanded professional services organization which delivers consulting,
 integration and training services for WebObjects, QuickTime™ Streaming
 Server and Mac® OS X. The expanded services organization, Apple iServices,
 will provide professional services for Apple customers and developers in the
 creative, education and business markets.
 
 Pricing  Availability
 WebObjects 4.5 is available through Apple Resellers and the Apple Store™
 (www.apple.com) for US$699. A fully cross-platform solution, WebObjects 4.5
 runs on Mac OS X Server, Windows NT/2000, Solaris and HP-UX systems.
 WebObjects 5 for Java will be available later this year.
 
 Apple ignited the personal computer revolution in the 1970s with the Apple
 II and reinvented the personal computer in the 1980s with the Macintosh.
 Apple is committed to bringing the best personal computing experience to
 students, educators, creative professionals and consumers around the world
 through its innovative hardware, software and Internet offerings.
 
 Press Contacts:
 Vanessa Rios
 Apple
 (408) 974-0610
 [EMAIL PROTECTED]
 
 Mandy Summers
 Edelman Worldwide
 (650) 968-4033 ext.2746
 [EMAIL PROTECTED]
 
 
 NOTE TO EDITORS: For additional information visit Apple's PR website
 (www.apple.com/pr/), or call Apple's Media Helpline at (408) 974-2042.
 
 © 2000 Apple Computer, Inc All rights reserved. Apple, the Apple logo, Apple
 Store, Mac OS, QuickTime and WebObjects are either registered trademarks or
 trademarks of Apple. Other company and product names may be trademarks of
 their respective owners
 
 __
 FREE Personalized Email at Mail.com
 Sign up at http://www.mail.com/?sr=signup
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Visit www.cfworkshop.com
___

Why pay when you don't have to? Get AltaVista Free Internet Access now! 
http://jump.altavista.com/freeaccess4.go

___

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 

Re: Can I put a wddx packet into a database and read it backout?

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If the website is not functioning correctly, please call 303.770.8506 and provide your 
name, phone number and what is not functioning in as much detail as possible.  

Thank you.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



ot: w2k hangs w/adaptec scsi

2000-05-17 Thread lsellers

Anyone tried to install w2k and have the problem of it hanging because of
your adaptec scsi card (2940uw in this case). I've downloaded the latest
drivers, but same result (unless I physically remove the card or disable all
scsi devce drivers).

If you've figured it out, don't be shy. :)

--imn


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: decrypt form variable...

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turn outthe lights?

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Able Commerce Help

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Philip Arnold - ASP

The worrying thing is WHY it dropped from $50,000 to $699 - that's one hell
of a drop in price...

Should the press release say "Apple drop WebObjects license price from
$50,000 to $699 as nobody was stupid enough to pay that much"?

And, oh yes, I REALLY want to develop my applications in Java... Oh, hang
on, I haven't had my lobotomy yet...

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


 -Original Message-
 From: Abe V. S. Troel [mailto:[EMAIL PROTECTED]]
 Sent: 17 May 2000 16:00
 To: [EMAIL PROTECTED]
 Subject: Will the last person leaving Cold Fusion please turn out the
 lights?


 Well, it was a good run, but I guess this pretty much wraps it for Cold
 Fusion.  Not too many people are going to want to bother with it
 given that
 now they can get something much better for about the same amount of money.

 Oh well, nothing lasts forever.  Time to move on.

 ###

 http://www.apple.com/pr/library/2000/may/15webobjects.html

 Apple Drops WebObjects License Price From $50,000
 to $699
 New Version to be Entirely Java-Based
 WWDC, SAN JOSE, California—May 15, 2000—Apple® today unveiled
 aggressive new
 pricing for its industry-leading WebObjects® web application server
 software, and also revealed that the next version of WebObjects will be
 written entirely in Java. Starting today, customers can purchase
 a complete
 solution for developing and deploying WebObjects applications for
 $699. This
 new price includes both the award-winning WebObjects developer tools and a
 high-end deployment license which allows unlimited usage on one server,
 which together were previously priced at over $50,000.

 Later this year, Apple will ship WebObjects 5 for Java, which
 will be built
 using 100 percent pure Java technology. WebObjects 5 for Java will enable
 Internet developers using Java to quickly build complex solutions
 which can
 be deployed on virtually any server. WebObjects 5 for Java also
 will support
 a wealth of Internet standards including Enterprise Java Beans (EJB) for
 interoperability and JDBC for universal database connectivity.

 “WebObjects is the premiere software for rapidly developing and deploying
 web applications to millions of users worldwide,” said Steve Jobs, Apple’s
 CEO. “With its new pricing and support for Java, WebObjects is now
 accessible to a wider audience of customers and developers.”

 WebObjects is an end-to-end application server with tools,
 technologies and
 capabilities that make it an easy-to-use, standards-compliant solution. It
 has an object-oriented architecture that promotes quick development of
 reusable components. WebObjects provides scalability, load balancing and
 fault-tolerant capabilities for multi-threaded applications running across
 multiple CPUs that support high transaction volumes.

 Apple is also offering new consulting services for customers who
 would like
 to implement a customized web application developed in WebObjects
 as part of
 its expanded professional services organization which delivers consulting,
 integration and training services for WebObjects, QuickTime™ Streaming
 Server and Mac® OS X. The expanded services organization, Apple iServices,
 will provide professional services for Apple customers and
 developers in the
 creative, education and business markets.

 Pricing  Availability
 WebObjects 4.5 is available through Apple Resellers and the Apple Store™
 (www.apple.com) for US$699. A fully cross-platform solution,
 WebObjects 4.5
 runs on Mac OS X Server, Windows NT/2000, Solaris and HP-UX systems.
 WebObjects 5 for Java will be available later this year.

 Apple ignited the personal computer revolution in the 1970s with the Apple
 II and reinvented the personal computer in the 1980s with the Macintosh.
 Apple is committed to bringing the best personal computing experience to
 students, educators, creative professionals and consumers around the world
 through its innovative hardware, software and Internet offerings.

 Press Contacts:
 Vanessa Rios
 Apple
 (408) 974-0610
 [EMAIL PROTECTED]

 Mandy Summers
 Edelman Worldwide
 (650) 968-4033 ext.2746
 [EMAIL PROTECTED]


 NOTE TO EDITORS: For additional information visit Apple's PR website
 (www.apple.com/pr/), or call Apple's Media Helpline at (408) 974-2042.

 © 2000 Apple Computer, Inc All rights reserved. Apple, the Apple
 logo, Apple
 Store, Mac OS, QuickTime and WebObjects are either registered
 trademarks or
 trademarks of Apple. Other company and product names may be trademarks of
 their respective owners

 __
 FREE 

Re: Can I put a wddx packet into a database and read it backout?

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: decrypt form variable...

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [Small Project fix - Need good programmer]

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Sharon DiOrio

It is very possible.

!--- insert into database ---
cfwddx action="CFML2WDDX" input="myArray" output="myWDDX"
cfquery name="qInsWDDX" datasource="#APPLICATION.dsn#"
INSERT INTO Table (Wddx)
VALUES ('#myWDDX#')
/cfquery

!--- retrieve from database ---
cfquery name="qSelWDDX" datasource="#APPLICATION.dsn#"
SELECT WDDX
FROM Table
WHERE WddxID = #WDDXID#
/cfquery
cfwddx action="WDDX2CFML" input="#qSelWDDX.WDDX#" output="myArray"

It doesn't matter what database you're using because WDDX is just a text
string.

HTH

Sharon

At 11:11 AM 5/17/2000 -0400, zknoll wrote:

I have an 2-D array of information that I convert into a wddx packet to
pass between templates but I would also like to be
able to store the packet into a database and read it out again. A) Is
this possible? B) Is it possible with access 200 as the
backend database? C) If A and B are true can you show me a snippet of
code as to how this would be done?

---
---
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
 

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: formatting date in CFGRID

2000-05-17 Thread Greg Griffin

I'm still a bit confused as to how to get my dates formatted within my
CFGRID.

Is it possible to use dateformat() within the SQL?  I've tried but keep
getting syntax errors.

If not, then in the example below where does my fieldname fit into the
statement?  In place of GETDATE()?

SELECT CONVERT(varchar, Day(GETDATE()))
+ '/' + CONVERT(varchar, MONTH(GETDATE()))
+ '/' + CONVERT(varchar, YEAR(GETDATE())) AS MyDate


Thanks,

Greg Griffin
Ninpro Data, Inc.
Phone: 503-598-9821
Toll Free: 800-247-6641
Fax: 503-603-1801
E-mail: [EMAIL PROTECTED]


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Michael D. - Please Temp unsubscribe - clayd@trusjoist.com

2000-05-17 Thread Stephen M. Aylor

Before its too late :-)

Steve


- Original Message -
From: David Clay [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 10:13 AM
Subject: RE: Will the last person leaving Cold Fusion please turn outthe
lights?


I will be out of the office from Wednesday, 5/17 - Friday 5/19.

If a page or part of the website is not functioning correctly, please call
303.770.8506 and provide your name, phone number and what is not functioning
in as much detail as possible.

Thank you.

Dave Clay
Web Facilitator

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Able Commerce Help

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFSchedule Bug????

2000-05-17 Thread Robert Everland

How use an http call? The thing is in my logs it says the template submitted
succesfully, but then in the webserver.log it says object not found and
points to a place where it isn't even at. That's my problem. I can execute
the code with the url I put in there by hand but cfschedule will not find
it. 


Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Dave Hannum [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 1:39 PM
To: [EMAIL PROTECTED]
Subject: Re: CFSchedule Bug


Have you tried calling it via HTTP call?  I don't seem to have any problems
running scheduler this way.

Just a thought,
Dave


=
"What we need  is a list of specific unknown problems we will encounter"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524



- Original Message -
From: Robert Everland [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 17, 2000 11:12 AM
Subject: CFSchedule Bug


Ok I have used CFSchedule many time before but today I seem to be
having a problem using it in 4.5.1. I set it all up for every 30 min
schedule, now I can go to the URL it's an internal URL so people don't touch
it, plus it's for our intranet. When I put that URL in the scheduler it
gives me 404 errors and when it shows the oath (in the log file) it's a path
of another part of my website. Now I do have mappings set up, but the /
mapping is not where it is saying the template can't be found. I have no
idea why it's trying to find the template in the wrong place. Does anyone
else have this problem?


Robert Everland III
Web Developer
Dixon Ticonderoga

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to
[EMAIL PROTECTED] with 'unsubscribe' in the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: decrypt form variable...

2000-05-17 Thread Dave Watts

 Answered my own question... apparently  CFusion_Encrypt  
 CFusion_Decrypt work just as well and don't create any special
 characters like encrypt().

 Followup, yesterday I think Michael Sheldon wrote about how
 the encrypt()  decrypt() functions are pretty easily hacked
 if someone tried.  What about the undocumented functions above?
 Any thoughts?

My thoughts: easily hacked. Good encryption isn't trivial. However, you
might find that they are "good enough" encryption.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Confounding SQL Server Error

2000-05-17 Thread Dave Watts

  This isn't actually an SQL Server issue, but rather that the
  Access Upsizer creates triggers, when in SQL Server all you
  need is a declarative referential integrity rule.

 So that's what DRI is. It asks whether you want to use Triggers or
 DRI when upsizing. Triggers are the default, so that's what I went
 with. Should I go to DRI?

Yes, that's better than using triggers. There's more overhead in using
triggers, so you should only use them for tasks too complex for rules.

  From what I've seen, the upsizing wizard in Access 2000 does a much
 better job than it did in 97. All my indexes, data types and
 relationships seem to have been created pretty much intact. The
 problem I have with this particular app, is I'm going to be
 demonstrating it on my server with MSDE. I just don't have the profit
 margin at this point to buy SQL Server and an Internet Connector
 license. When I get to that point, I plan on purchasing a box solely
 to run SQL Server on, as per the many times I've been told that's the
 only way to go. If this thing flies, it will go a long way toward
 that goal.

It may be the case that the Access 2000 Upsizer does a better job. I haven't
looked at it.

 As far as I know, and I have never been able to get a definitive
 answer, I can't create the database on my local machine with SQL
 Server (running the desktop edition of the Evaluation) and then
 register it (is that the correct term?) with MSDE on the public
 server. If I can, I'd love to hear the steps. Otherwise, I'm going to
 have to move the Access database over then upsize there, and without
 an Enterprise Manager, I won't be able to do anything to it. If I'm
 missing something, please tell me.

You shouldn't need to use SQL Enterprise Manager to manage your MSDE
database. You should be able to use an Access 2000 Project, which will let
you do everything from Access itself.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread jstiefel

Unless you consider the fact that Apple has a bad habit of not supporting
other platforms. I don't know many hosting providers who run mac systems
either.

-Original Message-
From: Abe V. S. Troel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 17, 2000 12:00 PM
To: [EMAIL PROTECTED]
Subject: Will the last person leaving Cold Fusion please turn out the
lights?


Well, it was a good run, but I guess this pretty much wraps it for Cold
Fusion.  Not too many people are going to want to bother with it given that
now they can get something much better for about the same amount of money.

Oh well, nothing lasts forever.  Time to move on.

###

http://www.apple.com/pr/library/2000/may/15webobjects.html

Apple Drops WebObjects License Price From $50,000
to $699
New Version to be Entirely Java-Based
WWDC, SAN JOSE, California-May 15, 2000-Apple® today unveiled aggressive new
pricing for its industry-leading WebObjects® web application server
software, and also revealed that the next version of WebObjects will be
written entirely in Java. Starting today, customers can purchase a complete
solution for developing and deploying WebObjects applications for $699. This
new price includes both the award-winning WebObjects developer tools and a
high-end deployment license which allows unlimited usage on one server,
which together were previously priced at over $50,000.

Later this year, Apple will ship WebObjects 5 for Java, which will be built
using 100 percent pure Java technology. WebObjects 5 for Java will enable
Internet developers using Java to quickly build complex solutions which can
be deployed on virtually any server. WebObjects 5 for Java also will support
a wealth of Internet standards including Enterprise Java Beans (EJB) for
interoperability and JDBC for universal database connectivity.

"WebObjects is the premiere software for rapidly developing and deploying
web applications to millions of users worldwide," said Steve Jobs, Apple's
CEO. "With its new pricing and support for Java, WebObjects is now
accessible to a wider audience of customers and developers."

WebObjects is an end-to-end application server with tools, technologies and
capabilities that make it an easy-to-use, standards-compliant solution. It
has an object-oriented architecture that promotes quick development of
reusable components. WebObjects provides scalability, load balancing and
fault-tolerant capabilities for multi-threaded applications running across
multiple CPUs that support high transaction volumes.

Apple is also offering new consulting services for customers who would like
to implement a customized web application developed in WebObjects as part of
its expanded professional services organization which delivers consulting,
integration and training services for WebObjects, QuickTime(tm) Streaming
Server and Mac® OS X. The expanded services organization, Apple iServices,
will provide professional services for Apple customers and developers in the
creative, education and business markets.

Pricing  Availability
WebObjects 4.5 is available through Apple Resellers and the Apple Store(tm)
(www.apple.com) for US$699. A fully cross-platform solution, WebObjects 4.5
runs on Mac OS X Server, Windows NT/2000, Solaris and HP-UX systems.
WebObjects 5 for Java will be available later this year.

Apple ignited the personal computer revolution in the 1970s with the Apple
II and reinvented the personal computer in the 1980s with the Macintosh.
Apple is committed to bringing the best personal computing experience to
students, educators, creative professionals and consumers around the world
through its innovative hardware, software and Internet offerings.

Press Contacts:
Vanessa Rios
Apple
(408) 974-0610
[EMAIL PROTECTED]

Mandy Summers
Edelman Worldwide
(650) 968-4033 ext.2746
[EMAIL PROTECTED]


NOTE TO EDITORS: For additional information visit Apple's PR website
(www.apple.com/pr/), or call Apple's Media Helpline at (408) 974-2042.

© 2000 Apple Computer, Inc All rights reserved. Apple, the Apple logo, Apple
Store, Mac OS, QuickTime and WebObjects are either registered trademarks or
trademarks of Apple. Other company and product names may be trademarks of
their respective owners

__
FREE Personalized Email at Mail.com
Sign up at http://www.mail.com/?sr=signup


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread Seth Petry-Johnson

 Well, it was a good run, but I guess this pretty much wraps it for Cold
 Fusion.
snip
 I'm not doubting the quality of the product, but I question your motives
 for sending this message.
snip
 I don't appreciate being spammed.

Like Jennifer, I also got a weird feeling from the original post.  It
certainly sounded like the original poster was already negatively biased
against CF.

In any case, could this discussion be moved to CF-Community?  I appreciate
the alert, but I can really go without the inevitable discussion of Apple's
product, how it relates to CF, and people's opinion on a thousand other
loosely related topics.

Not to sound TOO terribly pissy, but I'm trying to fight the 200+ emails I
get a day from this list.

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



dev mappings in a remote dev environment

2000-05-17 Thread Janssen Dolores Y (Contractor)

we are stuck with a remote dev environmet - studio on our desktops, cf ap
server on a solaris server downstairs in the server room.  we have yet to
get the dev mapping set to the correct paths in order to use debug and
browse.  the studio path of course is easy, the browser path is known, the
server does have the directory mapped within it and yet we haven't gotten
the right combo set up to enable these features.  anybody know the magic
words to achieve browse and debug capabilities in this type of dev
environment?

thanks


--
Dee Janssen
Web Developer
LESCO/LOGSA
256-955-9579
[EMAIL PROTECTED]

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: one last search question

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Will the last person leaving Cold Fusion please turnoutthelights?

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: formatting date in CFGRID

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cold Fusion Search tools

2000-05-17 Thread Steve Reich

Anybody in the 303 area code wanna give this guy a wake-up call??

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of David Clay
Sent: Wednesday, May 17, 2000 1:14 PM
To: [EMAIL PROTECTED]
Subject: Re: Cold Fusion Search tools


I will be out of the office from Wednesday, 5/17 - Friday 5/19.

If a page or part of the website is not functioning correctly, please call
303.770.8506 and provide your name, phone number and what is not functioning
in as much detail as possible.

Thank you.

Dave Clay
Web Facilitator

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Don't let the door hit you on the way out.

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cluster Environment

2000-05-17 Thread David Clay

I will be out of the office from Wednesday, 5/17 - Friday 5/19.  

If a page or part of the website is not functioning correctly, please call 
303.770.8506 and provide your name, phone number and what is not functioning in as 
much detail as possible.  

Thank you.

Dave Clay
Web Facilitator
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >