multiple file upload

2003-06-24 Thread Anthony Wong
Hi all,

Anyone knows if the above is possible? My test with two input type=file and
cffile in the same form doesn't seem to be able to upload both files to the
server. I remembered reading about this but i've totally forgotten about it.

Please help!

TIA

Anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: multiple file upload

2003-06-24 Thread Anthony Wong
Opps .. my mistake .. I renamed the input type=file .. not on the name
attribute but the id attribute ..

-Original Message-
From: Anthony Wong [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 25, 2003 2:35 AM
To: CF-Talk
Subject: multiple file upload


Hi all,

Anyone knows if the above is possible? My test with two input type=file and
cffile in the same form doesn't seem to be able to upload both files to the
server. I remembered reading about this but i've totally forgotten about it.

Please help!

TIA

Anthony


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: BD: cfencode

2003-04-02 Thread Anthony Wong
Thanks Dimo,

I'll try.

Anthony

-Original Message-
From: Dimo Michailov [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2003 11:21 PM
To: CF-Talk
Subject: Re: BD: cfencode


Anthony,

You might want to try the BlueDragon mailing list at New Atlanta, it
seems to be little more active:
http://www.newatlanta.com/products/bluedragon/self_help/mailing_list.cfm

Dimo


Anthony Wong wrote:
 I've posted this question earlier on Bluedragon mailing list but doesn't
 seem to have any response. Thought someone here might have some idea on
how
 to do it. Is there a way for me to encrypt the cfm templates like what
 cfencode does?

 TIA

 Anthony



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89
70.4



encrypting password

2003-04-02 Thread Anthony Wong
What would be the best method to encrypt password before it is inserted into
the database? I'm using MySQL database. Would cfencrypt and cfdecrypt
function sufficient in this case?

TIA

Anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89
70.4



RE: encrypting password

2003-04-02 Thread Anthony Wong
Thanks guys for the advice. I'm going to try it out. I'm not looking for a
piece of expensive encryption solutions, so this would do well.

-Original Message-
From: Mike Townend [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2003 1:35 AM
To: CF-Talk
Subject: RE: encrypting password


Yes but if they have access to your db then you've got generally a bigger
problem than a dictionary attack



-Original Message-
From: Brandon Stone [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 2, 2003 18:21
To: CF-Talk
Subject: RE: encrypting password


One note on security using hash, this still leaves the passwords in the
database open to dictionary attacks.  Its really only slightly better than
storing the passwords unencrypted.  That is to say, if the attacker somehow
gains access to the database, they just need to use a dictionary file, and
try a hash of those words one at a time until a match is found.

A generally accepted strategy is to use a salt word as well to create the
password.  The salt is a string which you know and keep secure, which the
attacker hopefully does not.  Then they need 2 pieces of information to
attack the database.  The comparison is essentially the same:

cfset salt = mysuperS3cRetStr$ng
cfif Hash(form.passwordsalt) is not checkperson.passwordHash
  cflocation url = unauthenticated.cfm
cfelse
   ...
/cfif

when you insert the hashed password, just append the salt to the end. cfset
hashedPwForDBInsertion = Hash(form.passwordsalt)

One more note, using hash() makes lost password retrieval more difficult in
that the hash() function is a one way hash.  There is no way to unhash.  So
essentially, if someone loses their password, you need a mechanism for them
to reset the password to a new password, rather than just pulling the old
one from the db and sending it to them.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2003 11:51 AM
To: CF-Talk
Subject: RE: encrypting password


I'd suggest using CFs hash() function. It's a one way encryption/obfuscation
method.

Doug

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89
70.4



BD: cfencode

2003-04-01 Thread Anthony Wong
I've posted this question earlier on Bluedragon mailing list but doesn't
seem to have any response. Thought someone here might have some idea on how
to do it. Is there a way for me to encrypt the cfm templates like what
cfencode does?

TIA

Anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: ASP to ColdFusion

2003-01-24 Thread Anthony Wong
Hi Scott,

Hope it's not too late. 3000 emails to go ! You can try out codecharge to
convert your asp code to CF. Pretty cool.
http://www.codecharge.com/

/Ant/

-Original Message-
From: Scott Wilhelm [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 14, 2003 1:53 AM
To: CF-Talk
Subject: ASP to ColdFusion


I'm originally an ASP developer now working with ColdFusion...Does
anyone know of any resources that would help in the conversion?
(ASP-CF translations, tutorials, etc.)

Thanks,

Scott


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Web Hosting for CFMX and MySQL

2003-01-02 Thread Anthony Wong
Does anyone know of any web hosting company that provides the above
solution?

Thx!

-Ant

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Print size for CF pages

2002-12-23 Thread Anthony Wong
Would be interested to see if CSS would be able to solve this printing
issue. Wrapping may not be required in this case cos the result is displayed
on tables with lots of columns(that's when the print area only covers half
of the these columns)

I think PDF is a nice solution but the problem is that client is only
interested in free solutions and it must work in Linux environment(CFMX is
on Linux). I've searched high and low and definitely not an easy one to
find.

Do check out www.pdfzone.com. Saw a couple but it's not what i was looking
for.

-Ant

-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 20, 2002 4:00 PM
To: CF-Talk
Subject: Re: Print size for CF pages


Sorry I can't be more specific - but there is a CSS style that helps
control print versions. I know it specifically addresses fonts and some
colors - maybe sizes too. I would check w3c.org for more specifics.
I just got caught in a half hour black hole and couldn't find
specifically what I was looking for in regards to printing. I need to
control this myself as well so would appreciate if you shared.

One thing I have considered is a print friendly button that compiles the
page requested (on the fly or daily/weekly ) rips to a PDF for perfect
printing.


Jay

Anthony Wong wrote:

I've noticed that when the content of a page goes beyond a certain browser
width, the print out will cut off those extended areas. Is there a work
around to ensure that all the contents in the browser are printed?

Am using IE.

Thanks.

-Ant



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFMX: Caching files

2002-12-20 Thread Anthony Wong
I was reading this mail real quick as i have another 1259 mails to go in
this list. If I'm still on the right track, the issue was about putting in a
CF file and the result is still showing the previous file results right?

I figure that this might be the server cache issue. There is a check for
file timestamp. If the one replaced is actually older than the file that was
being deleted/moved, this file will not be recompiled to any class files.
You can fiddle the file a bit and save the latest changes. This will then
update the file timestamp and CFMX will compile the file. Otherwise, there
was a technique in this list called 'touch' utility to update the file
timestamp without any editing.

-A

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 18, 2002 1:54 AM
To: CF-Talk
Subject: Re: CFMX: Caching files


On Tuesday, Dec 17, 2002, at 08:55 US/Pacific, Tony Weeg wrote:
   ran, however now that the cf server engine is java based, they
 have
   to be compiled regardless the first time, and therefore they are
 compiled
   thereafter for each request, until the file changes.

Did you miss a not out of that?

If you turn on trusted cache, CF won't even check the timestamp on the
file for each request - that's a worthwhile saving on a high-traffic
site!

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



CFML Oracle SP

2002-12-19 Thread Anthony Wong
Does anyone have an insight on this? This executes and returns an error:
The system has attempted to use an undefined value, which usually indicates
a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.  

Stored Procedures is written in Oracle

***


cfset Variables.ReceiptKey = 100
cfstoredproc procedure=sp_getSequence
datasource=ims
returncode=yes
debug=yes
 cfprocparam cfsqltype=cf_sql_varchar type=in value=TWN01
 cfprocparam cfsqltype=cf_sql_varchar type=in value=RECEIPT
 cfprocparam cfsqltype=cf_sql_varchar type=out
variable=Variables.ReceiptKey
/cfstoredproc
CFOUTPUT
SEQUENCE NO : #ReceiptKey#
/CFOUTPUT


***
stored procedure:
***

Create or Replace procedure sp_getSequence( pWarehouse_Id in  varchar2,
  pTableName  in  varchar2,
  pSeqNo   out varchar2) is
-- Author : Ramesh Jayapal
mrecSeq IMSSequence%ROWTYPE;
mSeqNo varchar2(80);
Begin
 Select * into mrecSeq
 from IMSSequence
 Where Warehouse_Id = pWarehouse_id
 and TableName = pTableName;

 mSeqNo := to_Char(mrecSeq.SeqNo);
 If mrecSeq.PadChar is not NULL Then
  mSeqNo := LPad(mSeqNo, mrecSeq.PadLen, mrecSeq.PadChar);
 End If;
 If mrecSeq.Prefix is not Null Then
  mSeqNo := mRecSeq.Prefix || mSeqNo;
 End If;

 Update IMSSequence
 SetSeqNo = Nvl(SeqNo,0) + 1
 Where  Warehouse_id = pWarehouse_Id
and TableName= pTableName;

 pSeqNo := mSeqNo;
 Return;
Exception
 When Others Then
 sp_LogError('Unable generate sequence no for ' || ptablename || ' of ' ||
pWarehouse_Id,
  'sf_getSequence', 9);
 pSeqNo := -1;
 Return;
End;

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Print size for CF pages

2002-12-19 Thread Anthony Wong
I've noticed that when the content of a page goes beyond a certain browser
width, the print out will cut off those extended areas. Is there a work
around to ensure that all the contents in the browser are printed?

Am using IE.

Thanks.

-Ant

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: What does U2 actually update?

2002-12-15 Thread Anthony Wong
Hi mike,

does it work with Apache 2.0.41 and above only or do you mean all versions
till 2.0.42?

A

-Original Message-
From: Haggerty, Mike [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 13, 2002 10:45 PM
To: CF-Talk
Subject: RE: What does U2 actually update?


Read the release notes. Contains a new connector for Apache 2 that only
works with versions 2.0.41 or later. Great!

M

-Original Message-
From: Samuel R. Neff [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 13, 2002 9:41 AM
To: CF-Talk
Subject: Re: What does U2 actually update?

At 09:27 AM 12/13/2002, you wrote:
So what problems is U2 reported to fix?  COM

Many, including a few COM.  Read the release notes:

http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenotes_mx
_updater.html



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: List of Datasources

2002-12-06 Thread Anthony Wong
Hi Stacey,

I can email to you such a document off list. Vaguely recalled if this
document was written at http://www.cfml.org/ It's a service factory method.

-Ant

-Original Message-
From: Stacy Young [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 06, 2002 3:08 PM
To: CF-Talk
Subject: List of Datasources


Anyone know how to get list of available datasources in cfmx? Service
Factory?

-Stace


AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces
jointes sont strictement confidentielles et reservees a l'usage de
la (des) personne(s) a qui il est adresse. Si vous n'etes pas le
destinataire, soyez avise que toute divulgation, distribution,
copie, ou autre utilisation de ces informations est strictement
prohibee.  Si vous avez recu ce document par erreur, veuillez s'il
vous plait communiquer immediatement avec l'expediteur et detruire
ce document sans en faire de copie sous quelque forme.

WARNING:
---
The information contained in this document and attachments is
confidential and intended only for the person(s) named above.  If
you are not the intended recipient you are hereby notified that any
disclosure, copying, distribution, or any other use of the
information is strictly prohibited.  If you have received this
document by mistake, please notify the sender immediately and
destroy this document and attachments without making any copy of any kind.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



MVC tool for CF

2002-11-22 Thread Anthony Wong
Has anyone came across any Model View Controller design tool for CF? I'm
trying to use one for CFMX, Flash Remoting and Flash design.

TIA

Anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: MVC tool for CF

2002-11-22 Thread Anthony Wong
I read a neat article on the Pet Market blueprint with MVC design, though i
think it's still isn't that elaborate

http://www.macromedia.com/desdev/mx/blueprint/articles/makingpetmarket/makin
gpetmarket.html

I'll have a look at the Adalon tool. I must admit I can only afford the
wireframe license (free isn't it?).

-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]]
Sent: Saturday, November 23, 2002 3:14 AM
To: CF-Talk
Subject: RE: MVC tool for CF


Apologies for my missing this. http://halhelms.com/writings/mvc.htm

Kind Regards - Mike Brunt, CTO
Webapper
Blog http://www.webapper.net
Web site http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

Web Application Specialists


-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 22, 2002 11:04 AM
To: CF-Talk
Subject: RE: MVC tool for CF


The Adalon tool as I understand it is an excellent tool for creating
ColdFusion Fusebox 3.0 applications.  It is not per se an MVC tool, although
we program extensively using Fusebox and it is very reminiscent of the MVC
schema.  This article by Hal Helms relates directly to MVC and Fusebox.

Kind Regards - Mike Brunt, CTO
Webapper
Blog http://www.webapper.net
Web site http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

Web Application Specialists


-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 22, 2002 10:37 AM
To: CF-Talk
Subject: Re: MVC tool for CF


I do as it happens, but only for UK prices.

Prices vary from £320 to £1550 (ex VAT) depending on the version you want.

Call your local sales office though.  There are support and upgrade packages
that you might be interested in.

Regards

Stephen

- Original Message -
From: Patti G. L. Hall [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, November 22, 2002 6:18 PM
Subject: Re: MVC tool for CF


 Do you have any information on pricing?  There's none on the site... They
 want you to call their sales offices.  That usually means too expensive
to
 consider unless  you've got a corporate pocketbook in my experience.

 -Patti

 Stephen Moretti wrote:

  Has anyone came across any Model View Controller design tool for CF?
I'm
  trying to use one for CFMX, Flash Remoting and Flash design.
 
 
  http://www.synthis.com/
 
  Have a look at adalon.
 
  Regards
 
  Stephen

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX Web Services Help

2002-11-15 Thread Anthony Wong
some tutorials about ColdFusion Components (CFCs) from Macromedia site
should help

http://www.macromedia.com/desdev/mx/coldfusion/

-Original Message-
From: SMR [mailto:info;smrenterprises.com]
Sent: Saturday, November 16, 2002 1:31 AM
To: CF-Talk
Subject: Re: CFMX Web Services Help


The CFMX docs from MM ?

- Original Message -
From: Adrian Lynch [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 12:27 PM
Subject: RE: CFMX Web Services Help


 Look for the example in the docs. That will get you started.

 Ade

 -Original Message-
 From: SMR [mailto:info;smrenterprises.com]
 Sent: 15 November 2002 17:23
 To: CF-Talk
 Subject: CFMX Web Services Help


 Is there a guide.. 101 or what ever that walks you through building a CFMX
 web service? I have a couple small apps in CF5 that I need to translate
into
 web services..




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: cookies / WDDX

2002-11-15 Thread Anthony Wong
Just a thought, how do you test for xml or the wddx string if they had
already reached the limit?

Do i save the file first and check for the physical size on my server? Any
other proven methods?

Anthony

-Original Message-
From: Simon Horwith [mailto:[EMAIL PROTECTED]]
Sent: Saturday, November 16, 2002 5:51 AM
To: CF-Talk
Subject: RE: cookies / WDDX


cookie files have a limit of around 4K.  No you can't put a complex var in a
cookie (it's just a text file - you can only write a string to a text file)
and yes, WDDX is just a string.  Due to it's verbosity, if you're running
CFMX I definitely recommend creating an XML packet and storing that in the
cookie - not a WDDX packet.  You're going to find that WDDX packets will
become real big real fast and then you can't stuff them into cookies.
Just a heads-up for you...
have a good weekend


~Simon

Simon Horwith
Macromedia Certified Instructor
Certified Advanced ColdFusion MX Developer
Fig Leaf Software
1400 16th St NW, # 220
Washington DC 20036
202.797.6570 (direct line)
www.figleaf.com


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Friday, 15 November, 2002 4:30 PM
To: CF-Talk
Subject: RE: cookies / WDDX


bryan,
I thought for sure I read that you couldn't store
complex vars in a cookie.but I guess a wddx packet
can really be percieved as a string, and if the length
works, then it will be okbut not really the best way to
do it...huh?

tony

Tony Weeg
Senior Web Developer
Information System Design
Navtrak, Inc.
Fleet Management Solutions
www.navtrak.net
410.548.2337


-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 15, 2002 4:15 PM
To: CF-Talk
Subject: Re: cookies / WDDX


I'm doing just what you are right now.

Follow these steps:

1) form is posted
2) create a new query using QueryNew()
3) add a row to the query using QueryAddRow()
4) add all the form data to the row in the query usingh QuerySetCell()
5) serialize the query into a WDDX packet using CFWDDX
6) set a cookie with the value of the WDDX packet using CFCOOKIE

Then wherever you need the data.
1) deserialze the WDDX packet in the cookie
2) voila you have a query with all form data in it
3) do whatever ya need to to re-create your form as it was left

HTH

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Gyrus [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, November 15, 2002 12:57 PM
Subject: SOT: cookies / WDDX


 I'm trying to build some multi-part forms that are supposed to store
all
the
 form data in cookies, so people can leave bits unfinished, come back
at a
 later date and finish the form off.

 The forms aren't *massive*, but they're not small either - not
entirely
sure
 how much data could be stored, but I'm trying to find out some limits
to
 plan the project.

 It says in O'Reilly's JS Bible that web browsers don't store more than
20
 cookies per domain and each cookie can't be more than 4 KB in size.
Now, 4
 KB is probably not enough to store ALL potential data - but 20 is not
enough
 if I tried to store each *field* in a separate cookie.

 I've heard about WDDX being used to interact between CF and JS, but
I've
not
 used it before, and I can't think how it could overcome the above
cookie
 limitations.

 I'd be grateful if anyone had any more info on cookie limitations, or
ideas
 about how to handle this situation (without a DB!).

 Gyrus
 [EMAIL PROTECTED]
 work: http://www.tengai.co.uk
 play: http://www.norlonto.net
 PGP key available





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: OT-Case tools

2002-11-11 Thread Anthony Wong
Troy,

Try ArgoUML http://argouml.tigris.org/ It's an open source UML tool. Pretty
easy to use and nice features.

You could also try essmodel and it's free too. This is really simple.
http://www.essmodel.com/

If the two doesn't seem to fit your needs. Here's a list of them.
http://www.objectsbydesign.com/tools/umltools_byCompany.html

Anthony

-Original Message-
From: Troy Simpson [mailto:Troy_Simpson;ncsu.edu]
Sent: Monday, November 11, 2002 10:55 PM
To: CF-Talk
Subject: OT-Case tools


I'm looking for a CASE tool and was wondering if the CF-TALK Community
could suggest a CASE tool that would be conducive for ColdFusion MX.

Any insight would be appreciated.

Thanks,
Troy

--
-
Troy Simpson
  Applications Analyst/Programmer, MCSE, OCPDBA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFMX Classes

2002-11-11 Thread Anthony Wong
Sean,

Thanks for verifying the case. It's been mind-boggling. I couldn't
understand why it behaved that way ever since I started using CFMX. Such
didn't happen in CF 5 cos there isn't any compilation and caching of servlet
class to the server's memory.

I'm not familiar with Touch utils. Correct me if i'm wrong, it is a util to
update the file's timestamp to the current system time. And thus, CFMX
server would be able to detect the 'new' files and recompile them. Sounds
like a good solution. I'll give it a try.

Anthony

-Original Message-
From: Sean A Corfield [mailto:sean;corfield.org]
Sent: Tuesday, November 12, 2002 6:31 AM
To: CF-Talk
Subject: Re: CFMX  Classes


On Sunday, Nov 10, 2002, at 09:20 US/Pacific, Anthony Wong wrote:
 On the timestamp issues brought up by Joe, does CFMX checks the time
 stamp
 between the .cfm file and the .class file to see if the .cfm file
 should be
 compiled? Is that the mechanism?

In essence, yes.

 I understand that if a newer cfm file is loaded into the server, CFMX
 will
 automically recompile and store the servlet in the server cache. In
 the case
 if an older but exact cfm file was being reloaded into the same
 server, CFMX
 doesn't seem to be reconized this change (class file is newer than the
 cfm
 file now). Would that be true?

I would expect that to be the case, yes.

 I'm having such a problem each time i had to
 change the files for demo. Having to delete the class files in the
 web-inf/classes and restart the server each time is quite cumbersome
 after
 doing it for dozens of times.

On UNIX, you can just 'touch' the file to update the timestamp. I don't
know if a similar utility exists for Windows.

I have always wished that my computer would be
  as easy to use as my telephone.
  My wish has come true - I no longer know how to
  use my telephone.  -- Bjarne Stroustrup


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: CFMX Classes

2002-11-11 Thread Anthony Wong
Sorry Rob, didn't checked the archive. I just happened to read Joe's posting
and replied. Don't think i want to change the clock to the past. I have 10
machines to update almost everyweek. I think the use of Touch tools by Mosh
and Sean would be great for my own use.

Btw, it was the same question that I post to Macromedia Instructor's list
long long time ago. Didn't get any satisfying reply from there.

This is a great list isn't it peeps??!

-Original Message-
From: Rob Rohan [mailto:rob;cardinalweb.com]
Sent: Tuesday, November 12, 2002 7:23 AM
To: CF-Talk
Subject: RE: CFMX  Classes


Joe brought that up, hu. Could've swore I posted that quite a while ago.

Set your file editing computer's clock to the past.


-Original Message-
From: Sean A Corfield [mailto:sean;corfield.org]
Sent: Monday, November 11, 2002 2:31 PM
To: CF-Talk
Subject: Re: CFMX  Classes


On Sunday, Nov 10, 2002, at 09:20 US/Pacific, Anthony Wong wrote:
 On the timestamp issues brought up by Joe, does CFMX checks the time
 stamp
 between the .cfm file and the .class file to see if the .cfm file
 should be
 compiled? Is that the mechanism?

In essence, yes.

 I understand that if a newer cfm file is loaded into the server, CFMX
 will
 automically recompile and store the servlet in the server cache. In
 the case
 if an older but exact cfm file was being reloaded into the same
 server, CFMX
 doesn't seem to be reconized this change (class file is newer than the
 cfm
 file now). Would that be true?

I would expect that to be the case, yes.

 I'm having such a problem each time i had to
 change the files for demo. Having to delete the class files in the
 web-inf/classes and restart the server each time is quite cumbersome
 after
 doing it for dozens of times.

On UNIX, you can just 'touch' the file to update the timestamp. I don't
know if a similar utility exists for Windows.

I have always wished that my computer would be
  as easy to use as my telephone.
  My wish has come true - I no longer know how to
  use my telephone.  -- Bjarne Stroustrup



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CFMX Classes

2002-11-10 Thread Anthony Wong
On the timestamp issues brought up by Joe, does CFMX checks the time stamp
between the .cfm file and the .class file to see if the .cfm file should be
compiled? Is that the mechanism?

I understand that if a newer cfm file is loaded into the server, CFMX will
automically recompile and store the servlet in the server cache. In the case
if an older but exact cfm file was being reloaded into the same server, CFMX
doesn't seem to be reconized this change (class file is newer than the cfm
file now). Would that be true? I'm having such a problem each time i had to
change the files for demo. Having to delete the class files in the
web-inf/classes and restart the server each time is quite cumbersome after
doing it for dozens of times.

Any insights? Thanks.

Anthony

-Original Message-
From: Sean A Corfield [mailto:sean;corfield.org]
Sent: Sunday, November 10, 2002 3:57 AM
To: CF-Talk
Subject: Re: CFMX  Classes


On Saturday, Nov 9, 2002, at 10:12 US/Pacific, Joe Eugene wrote:
 I have a slightly different question..
 Is there a way to Hot Load the Java Classes or Bean in CFMX...i mean
 force to check for timeStamp on files and load the current *.class?

I think the consensus was: place the files in /WEB-INF/lib/ and then
enable the hotload setting in the appropriate XML config file (search
the archives for more details - I don't have them to hand).

 Do you how this is done in other Web Application Servers(WebSphere
 etc?)

No.

 I think this was asked before but no real solutions came out.

I think the solution was as above but I don't have time right now to
check the archive myself as I'm about to run out for lunch!


Conform! Consume! Obey!
-- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CF-Talk-list V1 #60

2002-10-31 Thread Anthony Wong
The {webroot}/flashservices/gateway does not translate to a physical path in
the application server. It's refering to a java path(no much was given out
on this, so i'm still guessing) which gives you the flash remoting
capability. You might want to check your CFMX path and the CFCs path. If
these aren't set properly, errors are not returned. It might just do nothing
instead of showing up the datasets.

Check all ActionScript used. It's case sensitive.

Anthony

-Original Message-
From: Chris Jenkins [mailto:chris;goodpeoples.com]
Sent: Friday, November 01, 2002 12:21 AM
To: CF-Talk
Subject: RE: CF-Talk-list V1 #60


I've been trying to use CFMX and flash remoting with little success. I even
downloaded a zip file from macromedia which has all the files needed for
things to work, with no luck.  I have CFMX enterprise and I downloaded
Macromedia Flash Remoting MX Components.  When I play the flash movie, no
actions work.  I believe it has something to do with setDefaultGatewayUrl.
Mine is currently set to http://localhost:8500/flashservices/gateway.  But
I'm wondering if this is correct since I don't have those folders on my
desktop, even after the install, I could not find a flashservices anywhere.
Here's the example I'm trying to run.
http://www.macromedia.com/desdev/mx/coldfusion/articles/remoting.html

Thanks in advance for any help.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Limit to SQL IN statement?

2002-10-29 Thread Anthony Wong
A little late on the reply. Just imagine this is how long it takes for me to
go through all these emails on CF-Talk list.

From what I understand, ANSI SQL 'IN' operator has no limitations. However,
a check with developer suggested that we keep to about 5000 items in the
list. He too was updating a list and found out that after a certain list of
5000, the cfquery will abort.

Might want to try out stored procedures.

Ant

-Original Message-
From: [EMAIL PROTECTED] [mailto:cf-talk;linenoize.com]
Sent: Thursday, October 10, 2002 4:04 AM
To: CF-Talk
Subject: SOT: Limit to SQL IN statement?


Perhaps someone on this list knows the answer.  Here's the setup:

CFMX
MS SQL 2000

To make a long story short I'm fixing up a client's application and I would
probably have written a lot of it differently but that's beside the point.
I'm currently looking at a piece of code which uses the IN clause to update
a comma delimited list of records.

My concern is... what if there are 1000, 5000, or even 1 records that
need updating?  Is there a limit as to how many elements can be in the list?
For example:

UPDATE CLIENTS
SET LAST_UPDATED = #Now()#
WHERE CLIENT_ID IN (746,1093,83748,238,9484,948,635,8474,etc, etc, etc)

How many elements is too many?  Any ideas?

-Novak



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: [OT] FlashCom Server High CPU Utilization

2002-10-29 Thread Anthony Wong
I was viewing the community suite just a while ago and after a while i
noticed that the CPU rose up to 94%. You're right, it couldn't be the
FlashCom.exe service. It's my IExplorer.exe services that had jumped to 94%
even without attaching the webcam. I'm using IE 5.5 SP2. I'm going to verify
this again while i wait for my webcam to come back from another state (Dumb
collegue took it away to my regional office without informing me).

I'm now using Mozilla 1.0. So far so good ! Must be M$ thingy !! Geezz ..

Anthony

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Tuesday, October 29, 2002 7:18 PM
To: CF-Talk
Subject: Re: [OT] FlashCom Server High CPU Utilization


Anthony Wong wrote:

 opps .. i need to add something. This high utilization only occurs
 when i connect my webcam to the flash comm server. Else, it's working
 fine even with the chat. I think this issue is quite different from
 Joachem's post earlier with regards to chat.asc which had to be
 re-written. I find patching the communicationcomponents from MM site
 solves the problem and along you'll get the CommsComponent for FlashMX.

 Someone took away my web cam now and i couldn't test exactly which
 service that gives me such a high CPU. I reckon it could be
 FlashCom.exe service.

The Community Suite app is now running 2 concurrent streams with 8
clients and some chatting, and CPU usage is about 2%. On the other hand,
the people having their webcam hooked up and sending a stream to the
server report a CPU usage of more as 50%, and I had IE eat about 75%
just watching it (switching to Mozilla solved that).
If it happens again, please check which service eats the CPU,
considering you don't have the other symptoms I don't expect it to be
FlashCom.

Jochem

--
http://cfmx.oli.tudelft.nl/flashcom/applications/sample_panel_presentation/

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: [OT] FlashCom Server High CPU Utilization

2002-10-29 Thread Anthony Wong
Mike, sorry for not making that clear. I was just refering to viewing the
application on the browser. I wasn't refering to the admin interface. That
works fine. Its the IE. Using Mozilla solved the CPU usage problem. Looks
like IE 5.5 SP2 is not compatible with Flash Com and Creative WebCam.

Anthony

-Original Message-
From: Mike Chambers [mailto:mchamber;macromedia.com]
Sent: Tuesday, October 29, 2002 10:40 PM
To: CF-Talk
Subject: RE: [OT] FlashCom Server High CPU Utilization


what do you mean by running off the browser? are you talking about the
admin interface? if so, the admin can be CPU intensive at times.

mike chambers

[EMAIL PROTECTED]

 -Original Message-
 From: Anthony Wong [mailto:anthony;intracomm.com]
 Sent: Monday, October 28, 2002 10:23 PM
 To: CF-Talk
 Subject: [OT] FlashCom Server High CPU Utilization
 Importance: High


 I'm trying out Flash Comm on my laptop and noticed that the
 CPU utilization
 level stays above 95% average all the time when the app is
 running off the
 browser.
 Might have occasional dip but it didn't last for long as it
 shoots up right
 away. When the browser is closed, the CPU simply goes back to
 normal (1-3%)

 Here's my config:

 Pentium III 500
 Windows 2000
 IE 5.5 SP2
 256 MB RAM (I read that's the minimum for Flash Comm)
 CFMX server service is off

 Anyone else experianced the same thing? It's burning my
 laptop too. I can
 feel the heat through the keyboard while running the flash
 comm app even for
 a short period of time.

 anthony



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: [OT] FlashCom Server High CPU Utilization

2002-10-29 Thread Anthony Wong
Another oppss! .. i spoke to soon. Just 5 minutes after i sent the email
below, mozilla.exe service started to get cranky and shot itself up to 90%
on an average while viewing the community suite (with the video and audio
streamed of course).

This is worrying as I have quite a bit of presentation work to do with Flash
Comm and CFMX (flash remoting bit). Is there anything I should look out for?
I have plenty of RAM (256MB) on my laptop, so that shouldn't be the problem.

Thanks to all who answered this OT (and in advance too)

Anthony

-Original Message-
From: Anthony Wong [mailto:anthony;intracomm.com]
Sent: Wednesday, October 30, 2002 1:54 AM
To: CF-Talk
Subject: RE: [OT] FlashCom Server High CPU Utilization


I was viewing the community suite just a while ago and after a while i
noticed that the CPU rose up to 94%. You're right, it couldn't be the
FlashCom.exe service. It's my IExplorer.exe services that had jumped to 94%
even without attaching the webcam. I'm using IE 5.5 SP2. I'm going to verify
this again while i wait for my webcam to come back from another state (Dumb
collegue took it away to my regional office without informing me).

I'm now using Mozilla 1.0. So far so good ! Must be M$ thingy !! Geezz ..

Anthony

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Tuesday, October 29, 2002 7:18 PM
To: CF-Talk
Subject: Re: [OT] FlashCom Server High CPU Utilization


Anthony Wong wrote:

 opps .. i need to add something. This high utilization only occurs
 when i connect my webcam to the flash comm server. Else, it's working
 fine even with the chat. I think this issue is quite different from
 Joachem's post earlier with regards to chat.asc which had to be
 re-written. I find patching the communicationcomponents from MM site
 solves the problem and along you'll get the CommsComponent for FlashMX.

 Someone took away my web cam now and i couldn't test exactly which
 service that gives me such a high CPU. I reckon it could be
 FlashCom.exe service.

The Community Suite app is now running 2 concurrent streams with 8
clients and some chatting, and CPU usage is about 2%. On the other hand,
the people having their webcam hooked up and sending a stream to the
server report a CPU usage of more as 50%, and I had IE eat about 75%
just watching it (switching to Mozilla solved that).
If it happens again, please check which service eats the CPU,
considering you don't have the other symptoms I don't expect it to be
FlashCom.

Jochem

--
http://cfmx.oli.tudelft.nl/flashcom/applications/sample_panel_presentation/


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: [OT] FlashCom Server High CPU Utilization

2002-10-29 Thread Anthony Wong
That make sense. I have read somewhere in the Flash Comm User Guide that you
can set/limit the text on the chat box. Would it be right to say that I need
to trim the length by clearing up the text when it reaches certain value?
How would i flush that out from Flash Comm?

I see what else i can find out managing FlashComm tomorrow morning when i'm
more awake. Thanks !

-Original Message-
From: Mike Chambers [mailto:mchamber;macromedia.com]
Sent: Wednesday, October 30, 2002 2:11 AM
To: CF-Talk
Subject: RE: [OT] FlashCom Server High CPU Utilization


np. i think that is actually an issue with the chat component.
basically, after a while when there is a lot of text in the chat window,
cpu usage can go up. the authoring solution is to only allow a certain
amount of data to appear in the text field.

hope that helps clear up what is going on.

mike chambers

[EMAIL PROTECTED]

 -Original Message-
 From: Anthony Wong [mailto:anthony;intracomm.com]
 Sent: Tuesday, October 29, 2002 12:54 PM
 To: CF-Talk
 Subject: RE: [OT] FlashCom Server High CPU Utilization
 Importance: High


 Mike, sorry for not making that clear. I was just refering to
 viewing the
 application on the browser. I wasn't refering to the admin
 interface. That
 works fine. Its the IE. Using Mozilla solved the CPU usage
 problem. Looks
 like IE 5.5 SP2 is not compatible with Flash Com and Creative WebCam.

 Anthony


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MX Installation: Client Variables Not Changing (Part 2!)

2002-10-29 Thread Anthony Wong
Cool Site Ben !! I'm a big fan of Gundam .. just love those toys .. 

Anthony

-Original Message-
From: Ben Koshy [mailto:benlist;w3media.net]
Sent: Saturday, October 19, 2002 5:25 AM
To: CF-Talk
Subject: RE: MX Installation: Client Variables Not Changing (Part 2!)


Thanks Dave, That resolved that issue!

Now one last bug is holding me up again:

Site: http://www.gundam.com  Uses extensive use of client variables.
However, after a client variable is set, I can't seem to update it.
This is most evident when a user logs in and is unable to log out.  My
logout file is simply this:

CFSET client.LoggedIn=0
CFSET client.MemberID=-1
CFSET client.MemberName=

I wrote a litte test program: http://www.gundam.com/test.cfm which uses
a new Application Name and simply sets a client variable and then
attempts to change its value in the same page:

Value of Client Variable is 1
Setting Client Variable to 2.
Value of Client Variable is 1

My client variables are set to a database table which I created Client
Tables using CFMX, and it has full permissions to the database.

Any ideas?

-- Ben.

-Original Message-
From: Dave Watts [mailto:dwatts;figleaf.com] 
Sent: Friday, October 18, 2002 12:37 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: MX Installation: Wrong site being loaded occasionally


 I have a site at:
 
 http://www.crackedpipe.com
 
 Which is on the same site as:
 
 http://www.gundam.com
 
 Gundam.Com, which was the first site on this newly
 installed CFMX test box, works fine.  
 
 Crackedpipe.Com was installed afterwards, and it appears
 to work most of the time, but on every now and then (quite 
 often!) when I click on a link on the left menu. It'll 
 pull up the HOME page from Gundam.Com which happens to 
 have the same name index.cfm. I'm at a loss here as to 
 why this is happening. I can't reproduce it consistently 
 other than just keep trying it and it'll happen eventually.  
 If you keep hitting reload, it eventually goes back to the 
 crackedpipe homepage.

Did you edit the cacheRealPath value in
\CFusionMX\runtime\servers\default\SERVER-INF\jrun.xml?
http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenote
s_mx
html#installing

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



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Application Framework problem

2002-10-28 Thread Anthony Wong
First stop. Though this isn't going to answer your question, it will help in
your development in due course. You might not want to put your header and
footer on application.cfm and onrequestend.cfm respectively. Though it
works, its not meant to put templates or any visual display items. It's not
a standard practice either. It is meant for initializing variables or the
state of your application. When the application gets too complex with deep
nested directory listing, that's when application.cfm will have a tough time
looking for your templates as it is done through relative pathing.

Best that you stick to your templates by including the header and footer
into the body. Might want to check those complex HTML tables whether it's
actually overstretching or placed incorrectly. I usually draw out the tables
and set the width constantly. When you say it's on the right of the table,
perhaps the table tag itself is not consistent with your footer page.

Why don't you try the next/previous options for display. That might reduce
the length of your display.

Anthony

 A CFMX new guy question.

 I'm building an Intranet using Application Framework where
 Application.cfm calls a header and, via OnRequestEnd, a footer
 page that are added to the top and bottom of whatever page is
 being displayed.  Pretty standard stuff.

 However, particularly on displaying longer Master pages tables in
 a Master/Detail set, the footer ends up to the right of the table
 instead of below it---streatching the page from, say, 800 px to
 1600 px.  It's really annoying and I don't see how to fix it to
 be consistantly at the bottom since all those little html tricks
 to I might use (like an empty p/p are stripped out by White
 Space control.

 Any insight would be appreciated.

 Rick

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



[OT] FlashCom Server High CPU Utilization

2002-10-28 Thread Anthony Wong
I'm trying out Flash Comm on my laptop and noticed that the CPU utilization
level stays above 95% average all the time when the app is running off the
browser.
Might have occasional dip but it didn't last for long as it shoots up right
away. When the browser is closed, the CPU simply goes back to normal (1-3%)

Here's my config:

Pentium III 500
Windows 2000
IE 5.5 SP2
256 MB RAM (I read that's the minimum for Flash Comm)
CFMX server service is off

Anyone else experianced the same thing? It's burning my laptop too. I can
feel the heat through the keyboard while running the flash comm app even for
a short period of time.

anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: [OT] FlashCom Server High CPU Utilization

2002-10-28 Thread Anthony Wong
opps .. i need to add something. This high utilization only occurs when i
connect my webcam to the flash comm server. Else, it's working fine even
with the chat. I think this issue is quite different from Joachem's post
earlier with regards to chat.asc which had to be re-written. I find patching
the communicationcomponents from MM site solves the problem and along you'll
get the CommsComponent for FlashMX.

Someone took away my web cam now and i couldn't test exactly which service
that gives me such a high CPU. I reckon it could be FlashCom.exe service.
Otherwise, others are functioning normally.

thanks.

Anthony

-Original Message-
From: Stacy Young [mailto:Stacy.Young;sfcommerce.com]
Sent: Tuesday, October 29, 2002 11:32 AM
To: CF-Talk
Subject: RE: [OT] FlashCom Server High CPU Utilization


Something's definitely wrong...mine idles around 9mb ram or so...


-Original Message-
From: Anthony Wong [mailto:anthony;intracomm.com]
Sent: Monday, October 28, 2002 10:23 PM
To: CF-Talk
Subject: [OT] FlashCom Server High CPU Utilization

I'm trying out Flash Comm on my laptop and noticed that the CPU utilization
level stays above 95% average all the time when the app is running off the
browser.
Might have occasional dip but it didn't last for long as it shoots up right
away. When the browser is closed, the CPU simply goes back to normal (1-3%)

Here's my config:

Pentium III 500
Windows 2000
IE 5.5 SP2
256 MB RAM (I read that's the minimum for Flash Comm)
CFMX server service is off

Anyone else experianced the same thing? It's burning my laptop too. I can
feel the heat through the keyboard while running the flash comm app even for
a short period of time.

anthony

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: [OT] Community Suite Cam

2002-10-26 Thread Anthony Wong
Michael,

Think there is a couple of examples that comes with the Flash Comm box.
Pretty easy to use too. If you need one, i got an example with video, chat
box and a list of pple. I'll send it in offline. Haven't been able to create
any sort of managment tools yet. Would be nice if anyone knows how to do
that in Flash MX.

anthony

 -Original Message-
 From: Michael Dinowitz [mailto:mdinowit;houseoffusion.com]
 Sent: Saturday, October 26, 2002 5:05 AM
 To: CF-Talk
 Subject: Re: [OT] Community Suite Cam


 Or to make it easier, just a big webcam window and nothing else.
 Let people
 log in and see/hear what's up at the suite but no chat or the like on the
 same page. I'm thinking bandwidth and the like.
 I just set myself up with a yahoo messenger (mdinowit) to see how
 the video
 works with anyone 'chatting'. I just want to play before Shabbos sets in.
 Things are flying fast and I want to be sure it's all good.

 BTW, for those who know/care, Bob Denny will be at the devcon.

  The setup appears to be working.
 
  Now I am looking for an application. What I have in mind is a big
  version of the webcam on the top left, a 5 line chatbox bottom left and
  on the right a small column with the logged in people. Naturally with a
  bunch of management options so Michael can block subjects, redirect
  messages and kick users :)
  Does anybody have something like that and is willing to lend it for the
  broadcast from DevCon?
 
  Jochem
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Dreamweaver MX keyboard shortcuts...

2002-10-05 Thread Anthony Wong

David,

1) Select Edit -- Keyboard Shortcuts
2) On the edit window, click on the first box next to 'Current Set' (the box
should have the hint 'Duplicate Set')
3) Name your duplicated set.
4) In the Command select box, choose Menu Commands
5) Select Insert -- ColdFusion Basic Objects --  Surround with #
6) apply Ctrl-3 on the shortcuts.

More about customizing your DW MX can be found in the following article.

http://www.macromedia.com/support/dreamweaver/custom/customizing_dwmx/

anthony


 Is there a way to replace the cntrl-3 short cut that does an h3
 to surround whatever is highlighted with #'s?

 thanks

 David

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX Upgrade

2002-09-12 Thread Anthony Wong

Btw, where do you get IIS connecter utility in CFMX? the installer CD? I
know that it's not the same as Jrun where you can run a wizard to connect to
IIS or any other Web Server. Frankly, i find this annoying when we're
suppose to be able to connect to different web servers. Wouldn't want to do
a reinstall.

TIA

anthony

 Are you using IIS?

 You can always run it in standalone then run the IIS connector utility
 afterwards. (or for apache for that matter)

 Stace

 -Original Message-
 From: Sean Daniels [mailto:[EMAIL PROTECTED]]
 Sent: Monday, September 09, 2002 12:01 PM
 To: CF-Talk
 Subject: CFMX Upgrade

 I am trying to upgrade my CF 5 box to CFMX. I got most of the way
 through the installation and had to bail to free up some disk space on
 my system partition. Now having done so, I rerun the CFMX installer and
 no longer have the option of upgrading CF 5 - I can only install in
 stand alone mode.

 Any suggestions? I don't want stand alone mode obviously.


 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FINALLY!!! It Arrived!

2002-09-12 Thread Anthony Wong

Yes, it's one of the books written by Ben Forta et al. ! I have one on my
desk right now. Pretty easy to read. The font size is somewhat bigger than
Ben Forta's Web App. Construction Kit book. Lots of Action Scripts.
Recommended!

anthony


 Are you talking about this book?
 http://www.amazon.co.uk/exec/obidos/ASIN/0321125150/ref=sr_aps_books_1_1
 /026-8152064-3643606

 Because it's not a *Ben* book ...

 Just asking because I'd like to order it but I want to make sure I order
 the correct one.
 Thanks.

 Erika
 

 | -Original Message-
 | From: jt [mailto:[EMAIL PROTECTED]]
 | Sent: Thursday, September 12, 2002 12:33 AM
 | To: CF-Talk
 | Subject: SOT: FINALLY!!! It Arrived!
 |
 |
 | It finally arrived today!!!  I ordered one of Ben's new
 | books, Reality ColdFusion MX: Flash MX Integration, from
 | Amazon on Aug 28th, and it just arrived today!!!
 |
 | I haven't had a chance to read much yet, but I skimmed the
 | chapters and it looks great.  I especially love the fact
 | that the book is not aimed at beginners.  I am sometimes
 | tired of reading about how to use access DBs and web dev
 | basics for 95% of a book to get a little bit of the good
 | stuff. This book looks much better.  It goes through the
 | development methodolgy of the projects and shows memos,
 | specs, flow charts and the like...good material.
 |
 | Anyways, I look forward to going through the projects!
 | Good work on the new series.
 |
 |
 | Josh Trefethen
 | Certified CF Developer
 | http://exciteworks.com

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Upgrade

2002-09-12 Thread Anthony Wong

Oh shucks! its just right under my nose ... thanks! that was what i was
looking for.

 Is this what you want? Should be there from the original install.

 d:\CFusionMX\runtime\bin\wsconfig.exe




 -Original Message-
 From: Anthony Wong [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 3:22 AM
 To: CF-Talk
 Subject: RE: CFMX Upgrade


 Btw, where do you get IIS connecter utility in CFMX? the installer CD? I
 know that it's not the same as Jrun where you can run a wizard to
 connect to
 IIS or any other Web Server. Frankly, i find this annoying when we're
 suppose to be able to connect to different web servers. Wouldn't
 want to do
 a reinstall.

 TIA

 anthony

  Are you using IIS?
 
  You can always run it in standalone then run the IIS connector utility
  afterwards. (or for apache for that matter)
 
  Stace
 
  -Original Message-
  From: Sean Daniels [mailto:[EMAIL PROTECTED]]
  Sent: Monday, September 09, 2002 12:01 PM
  To: CF-Talk
  Subject: CFMX Upgrade
 
  I am trying to upgrade my CF 5 box to CFMX. I got most of the way
  through the installation and had to bail to free up some disk space on
  my system partition. Now having done so, I rerun the CFMX installer and
  no longer have the option of upgrading CF 5 - I can only install in
  stand alone mode.
 
  Any suggestions? I don't want stand alone mode obviously.

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists