structisempty vs. structcount

2007-10-16 Thread Michael Dinowitz
Is there any consensus in the community as to which to use when checking if a 
structure has content or not? I'm building a killer onError() handler and I 
need to remove structures that have no content. I'm leaning towards 
structcount() as I can do
cfif structcount(url)
rather than 
cfif not structisempty(url) 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291176
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8, Flex, and Remoting over SSL

2007-10-16 Thread Tom Chiverton
On Monday 15 Oct 2007, [EMAIL PROTECTED] wrote:
   destination = null

I'm fairly sure that should have the value of the destination in.
Could you post the server's services-config, the services-config the MXML was 
compiled with, and your MXML code ?

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291177
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Splitting UI and Data

2007-10-16 Thread Morten Kruse
I got a little interested in this one

fuseaction name=showProduct
  set name=product value=#application.productService.getProductByID(
attributes.productID )# /
  include template=dspProduct /
/fuseaction


How is the application.productService.getProductBy(IDattributes.productID )# 
defined?
I think that the productService is setup omehow.


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291178
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFC and datasource

2007-10-16 Thread Morten Kruse
How do you handle datasources inside CFC’s.
until now I have just been using the variable application.dsn.

But I have been told that I should include the database name in the parameter 
call to the cfc.

But I don’t want to call the cfc with the database name every single time the 
cfc is called like:
CFINVOKE COMPONENT=cfc.Meals METHOD=getMeal 
dns=#application.dns# /

Is it possible to invoke the whole component with the database information and 
then call that instance without the dns?? 


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291179
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFC and datasource

2007-10-16 Thread Dominic Watson
By using cfinvoke to call a component method, you are never instantiating
the component. If you only ever do this, I think you are better off having a
folder of UDFs.

However, if you add a method called init to you cfc that looks like this:

cffunction name=init returntype=any
   cfargument name=dsn
   cfset variables.dsn = arguments.dsn
   cfreturn this !--- returns instance of the component ---
/cffunction

You can then get an instance of your object that holds your dsn info using
cfinvoke like so:

cfinvoke component=mycomponent method=init dsn=#application.dsn#
returnVariable=myComponentInstance

Then, when you want to call the methods you want you simply do this (instead
of cfinvoke):

cfset meal = myComponentInstance.getMeal( )

Hope that makes sense,

Dominic


On 16/10/2007, Morten Kruse [EMAIL PROTECTED] wrote:

 How do you handle datasources inside CFC's.
 until now I have just been using the variable application.dsn.

 But I have been told that I should include the database name in the
 parameter call to the cfc.

 But I don't want to call the cfc with the database name every single time
 the cfc is called like:
CFINVOKE COMPONENT=cfc.Meals METHOD=getMeal
 dns=#application.dns# /

 Is it possible to invoke the whole component with the database information
 and then call that instance without the dns??


 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291181
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFC and datasource

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 How do you handle datasources inside CFCâEUR(tm)s.

ColdSpring and Reactor. That may or may not be over kill for you.

 until now I have just been using the variable application.dsn.
 But I have been told that I should include the database name in the
 parameter call to the cfc.

That's just as 'bad'.

 But I donâEUR(tm)t want to call the cfc with the database name every single
 time the cfc is called like: CFINVOKE COMPONENT=cfc.Meals
 METHOD=getMeal dns=#application.dns# /

As you can see, it's a pain even though strictly it's better.

 Is it possible to invoke the whole component with the database information
 and then call that instance without the dns??

Pass the DSN name as a parameter to init() ? Yeah, that's better again.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291180
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: structisempty vs. structcount

2007-10-16 Thread Dominic Watson
I would agree with you there in terms of readability, not sure about
performance if you had huge structures though.

I would always use the semantics that didn't require the NOT if performance
was not an issue or affected.

Dominic


On 16/10/2007, Michael Dinowitz [EMAIL PROTECTED] wrote:

 Is there any consensus in the community as to which to use when checking
 if a structure has content or not? I'm building a killer onError() handler
 and I need to remove structures that have no content. I'm leaning towards
 structcount() as I can do
 cfif structcount(url)
 rather than
 cfif not structisempty(url)

 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291182
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re[2]: SiteObjects: No answer at all !

2007-10-16 Thread Uwe Degenhardt
Hi, thank you Barney and Pete for your tips.
I will try either one of the recommended editors.
Uwe
PR I switched over to FCKeditor after having a relatively simple question go
PR unanswered for weeks.

PR My guess is that they crawled under a rock and died.

PR Pete


PR On 10/14/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Hi list,
 does s.o. know what happened to
 the guys of: http://www.siteobjects.com/ ??
 Nobody answers, when I send them
 an eMail. Besides their Support Forums are out
 of order for weeks now !
 Uwe




 

PR 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291183
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CreateODBCDateTime

2007-10-16 Thread Robert Rawlins - Think Blue
Hello Guys,

I've never been in the habit of using CreateODBCDateTime() in the past but
after reading a few times that it's the recommended route to go when
entering values into the database I thought I'd give it a shot, however its
causing a few issues and so thought I'd come and clear up how this is best
applied.

I'm running SQL Server 2k5 and on my create and update methods I write the
current date and time to a couple of columns, using the following method:

 

DateCreated = cfqueryparam value=#now()# cfsqltype=cf_sql_timestamp /

 

This has always worked nicely and I've never really had any reason to
believe that it wouldn't, however, like I say, after reading about the
createODBCDateTime() method I thought I'd give that a shot if it's
considered to be a better practice.

 

DateCreated = cfqueryparam value=#createODBCDateTime(now())#
cfsqltype=cf_sql_timestamp /

 

However this only enters the date into the database, and the time portion is
left to sit as 00:00:00. Can anyone explain why this is? And perhaps
elaborate a little on when and where I should be using the
createODBCDateTime() method and where I should not?

 

Thanks for your time guys, this seems like a bit of a silly question to ask
but thought I'd get your thoughts on it.

 

Rob

 



~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291184
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CreateODBCDateTime

2007-10-16 Thread Aaron Rouse
Out of curiosity if the date/time you want to put in is the system date/time
then why even pass it in via CF over using the databases built in functions
for date/time?

On 10/16/07, Robert Rawlins - Think Blue 
[EMAIL PROTECTED] wrote:

 Hello Guys,

 I've never been in the habit of using CreateODBCDateTime() in the past but
 after reading a few times that it's the recommended route to go when
 entering values into the database I thought I'd give it a shot, however
 its
 causing a few issues and so thought I'd come and clear up how this is best
 applied.

 I'm running SQL Server 2k5 and on my create and update methods I write the
 current date and time to a couple of columns, using the following method:



 DateCreated = cfqueryparam value=#now()# cfsqltype=cf_sql_timestamp
 /



 This has always worked nicely and I've never really had any reason to
 believe that it wouldn't, however, like I say, after reading about the
 createODBCDateTime() method I thought I'd give that a shot if it's
 considered to be a better practice.



 DateCreated = cfqueryparam value=#createODBCDateTime(now())#
 cfsqltype=cf_sql_timestamp /



 However this only enters the date into the database, and the time portion
 is
 left to sit as 00:00:00. Can anyone explain why this is? And perhaps
 elaborate a little on when and where I should be using the
 createODBCDateTime() method and where I should not?



 Thanks for your time guys, this seems like a bit of a silly question to
 ask
 but thought I'd get your thoughts on it.



 Rob





 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291185
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CreateODBCDateTime

2007-10-16 Thread Rick Root
On 10/16/07, Robert Rawlins - Think Blue
[EMAIL PROTECTED] 
 DateCreated = cfqueryparam value=#now()# cfsqltype=cf_sql_timestamp /

 This has always worked nicely and I've never really had any reason to
 believe that it wouldn't, however, like I say, after reading about the
 createODBCDateTime() method I thought I'd give that a shot if it's
 considered to be a better practice.

It's not.  There is NO reason to use createODBCDateTime when you're
using cfqueryparam.  None that I'm aware of.

The function exists so that you can do this:

DateCreated = #createODBCDateTime(Now())#

Without having to worry about the date format that the database wants.

However, when using cfqueryparam, that's all taken care of through
bind variables.

 DateCreated = cfqueryparam value=#createODBCDateTime(now())#
 cfsqltype=cf_sql_timestamp /

 However this only enters the date into the database, and the time portion is
 left to sit as 00:00:00. Can anyone explain why this is?

It's possible that when passing the value generated by
createODBCDateTime() into the query as a bind variable, that the
database simply doesn't understand the time portion of the value.

Solution:  don't do it that way :)

-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291187
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8, Flex, and Remoting over SSL

2007-10-16 Thread Rick Root
On 10/16/07, Tom Chiverton [EMAIL PROTECTED] wrote:
 On Monday 15 Oct 2007, [EMAIL PROTECTED] wrote:
destination = null

 I'm fairly sure that should have the value of the destination in.
 Could you post the server's services-config, the services-config the MXML was
 compiled with, and your MXML code ?

You'd think, wouldn't you?

http://www.it.dev.duke.edu/public/services-config.xml
http://www.it.dev.duke.edu/public/remoting-config.xml

And the MXML (this is for the very first remote object call that the app uses):

mx:RemoteObject id=roAuth destination=ColdFusionSSL
source=components.authorization.Authorize showBusyCursor=true
mx:method name=checkAuthER fault=genericFault(event)
result=checkAuthResult(event);/
/mx:RemoteObject

Rick


-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291186
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CreateODBCDateTime

2007-10-16 Thread Robert Rawlins - Think Blue
That's a good question Aaron, I hadn't thought to use the build in functions
from SQL to do that for me, I like the idea.

Rob

-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2007 12:55
To: CF-Talk
Subject: Re: CreateODBCDateTime

Out of curiosity if the date/time you want to put in is the system date/time
then why even pass it in via CF over using the databases built in functions
for date/time?

On 10/16/07, Robert Rawlins - Think Blue 
[EMAIL PROTECTED] wrote:

 Hello Guys,

 I've never been in the habit of using CreateODBCDateTime() in the past but
 after reading a few times that it's the recommended route to go when
 entering values into the database I thought I'd give it a shot, however
 its
 causing a few issues and so thought I'd come and clear up how this is best
 applied.

 I'm running SQL Server 2k5 and on my create and update methods I write the
 current date and time to a couple of columns, using the following method:



 DateCreated = cfqueryparam value=#now()# cfsqltype=cf_sql_timestamp
 /



 This has always worked nicely and I've never really had any reason to
 believe that it wouldn't, however, like I say, after reading about the
 createODBCDateTime() method I thought I'd give that a shot if it's
 considered to be a better practice.



 DateCreated = cfqueryparam value=#createODBCDateTime(now())#
 cfsqltype=cf_sql_timestamp /



 However this only enters the date into the database, and the time portion
 is
 left to sit as 00:00:00. Can anyone explain why this is? And perhaps
 elaborate a little on when and where I should be using the
 createODBCDateTime() method and where I should not?



 Thanks for your time guys, this seems like a bit of a silly question to
 ask
 but thought I'd get your thoughts on it.



 Rob





 



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291188
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8, Flex, and Remoting over SSL

2007-10-16 Thread Rick Root
Oh hell, this seems to be an IE problem.  What the heck?

It works fine in Firefox.

On 10/16/07, Rick Root [EMAIL PROTECTED] wrote:
 On 10/16/07, Tom Chiverton [EMAIL PROTECTED] wrote:
  On Monday 15 Oct 2007, [EMAIL PROTECTED] wrote:
 destination = null
 
  I'm fairly sure that should have the value of the destination in.
  Could you post the server's services-config, the services-config the MXML 
  was
  compiled with, and your MXML code ?

 You'd think, wouldn't you?

 http://www.it.dev.duke.edu/public/services-config.xml
 http://www.it.dev.duke.edu/public/remoting-config.xml

 And the MXML (this is for the very first remote object call that the app 
 uses):

 mx:RemoteObject id=roAuth destination=ColdFusionSSL
 source=components.authorization.Authorize showBusyCursor=true
mx:method name=checkAuthER fault=genericFault(event)
 result=checkAuthResult(event);/
 /mx:RemoteObject

 Rick


 --
 Rick Root
 Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
 www.opensourcecf.com



-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291189
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8, Flex, and Remoting over SSL

2007-10-16 Thread Rick Root
Problem solved:

http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401472

Damned IE.


On 10/16/07, Rick Root [EMAIL PROTECTED] wrote:
 Oh hell, this seems to be an IE problem.  What the heck?

 It works fine in Firefox.

 On 10/16/07, Rick Root [EMAIL PROTECTED] wrote:
  On 10/16/07, Tom Chiverton [EMAIL PROTECTED] wrote:
   On Monday 15 Oct 2007, [EMAIL PROTECTED] wrote:
  destination = null
  
   I'm fairly sure that should have the value of the destination in.
   Could you post the server's services-config, the services-config the MXML 
   was
   compiled with, and your MXML code ?
 
  You'd think, wouldn't you?
 
  http://www.it.dev.duke.edu/public/services-config.xml
  http://www.it.dev.duke.edu/public/remoting-config.xml
 
  And the MXML (this is for the very first remote object call that the app 
  uses):
 
  mx:RemoteObject id=roAuth destination=ColdFusionSSL
  source=components.authorization.Authorize showBusyCursor=true
 mx:method name=checkAuthER fault=genericFault(event)
  result=checkAuthResult(event);/
  /mx:RemoteObject
 
  Rick
 
 
  --
  Rick Root
  Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
  www.opensourcecf.com
 


 --
 Rick Root
 Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
 www.opensourcecf.com



-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291190
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


anyone using Cisco css?

2007-10-16 Thread Maureen Barger
We are using a cisco css as an edge device for one of our ColdFusion
sites. The dns for the site is pointed there, and routes back to another
dns on the backend. We have recently discovered that cfhttp calls to the
dns defined on the css timeout and never make it back to the server.
However if we replace the cfhttp URL with the backend dns entry it works.

Has anyone ever encountered this and have some insight as to what is
happening? I don't have direct access to the css since it is managed by
another group.
-- 
Maureen Barger CIT Information Systems
120 Maple Ave. Cornell University
[EMAIL PROTECTED]





~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291191
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFC and datasource

2007-10-16 Thread Joe Rinehart
 Is it possible to invoke the whole component with the database  
 information and then call that instance without the dns??

Yep - it's exactly what you should be doing!

This example is simplified (normally, I'd use a CFC to represent a  
datasource instead of using the raw string datasource name.  It shows  
a CFC (Meals) that has a constructor function named init that  
takes all of the configuration data for the CFC instance.  This is a  
common practice in the land of OO ColdFusion, as it matches how  
ColdFusion constructs Java objects.  After a Meals instance is  
constructed, all of its functions can then just use the variables.dsn  
property.

Meals.cfc:

cfcomponent

cffunction name=init hint=Constructor
cfargument name=dsn /

!--- Set dsn to the variables scope, so that it's usable by other  
functions in this CFC. ---
cfset variables.dsn = arguments.dsn /

!--- Return this to send back the built version of this component  
---
cfreturn this /
/cffunction

cffunction name=getMeal

cfset var myQuery =  /

!--- Now, use the stored DSN ---
cfquery datasource=#variables.dsn# name=myQuery
SELECT foo FROM bar
/cfquery

cfreturn myQuery /
/cffunction

/cfcomponent

Calling code:

!--- Create an instance of Meals.  You could create one instance in  
the application scope, shared by all requests! ---
cfset meals = createObject(component, cfc.Meals).init 
(application.dsn) /

cfdump var=#meals.getMeal()# /

Hope this helps,

Joe

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291192
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFC and datasource

2007-10-16 Thread Aaron Rouse
I used to do it this way then I had this bright idea to just extend a CFC
that had a whole slew of application specific values/settings that I
needed.  Then after realizing that was not so bright of an idea, seemed good
on paper, I went back to this.  The only thing I do different is I have a
private method named RaiseInit that basically just checks to make sure that
the object has been initiated before running any of the methods.  I have
that private method for when others use the objects and are not all that
familiar with using them and the need to initialize them.

On 10/16/07, Joe Rinehart [EMAIL PROTECTED] wrote:

  Is it possible to invoke the whole component with the database
  information and then call that instance without the dns??

 Yep - it's exactly what you should be doing!

 This example is simplified (normally, I'd use a CFC to represent a
 datasource instead of using the raw string datasource name.  It shows
 a CFC (Meals) that has a constructor function named init that
 takes all of the configuration data for the CFC instance.  This is a
 common practice in the land of OO ColdFusion, as it matches how
 ColdFusion constructs Java objects.  After a Meals instance is
 constructed, all of its functions can then just use the variables.dsn
 property.

 Meals.cfc:

 cfcomponent

 cffunction name=init hint=Constructor
 cfargument name=dsn /

 !--- Set dsn to the variables scope, so that it's usable by
 other
 functions in this CFC. ---
 cfset variables.dsn = arguments.dsn /

 !--- Return this to send back the built version of this
 component
 ---
 cfreturn this /
 /cffunction

 cffunction name=getMeal

 cfset var myQuery =  /

 !--- Now, use the stored DSN ---
 cfquery datasource=#variables.dsn# name=myQuery
 SELECT foo FROM bar
 /cfquery

 cfreturn myQuery /
 /cffunction

 /cfcomponent

 Calling code:

 !--- Create an instance of Meals.  You could create one instance in
 the application scope, shared by all requests! ---
 cfset meals = createObject(component, cfc.Meals).init
 (application.dsn) /

 cfdump var=#meals.getMeal()# /



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291193
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8, Flex, and Remoting over SSL

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 Damned IE.

That was my next question :-)

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291194
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: anyone using Cisco css?

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 dns on the backend. We have recently discovered that cfhttp calls to the
 dns defined on the css timeout and never make it back to the server.
 However if we replace the cfhttp URL with the backend dns entry it works.

At a guess, your proxy can't take an internal request for an external DNS 
entry and reroute it through correctly.
I have seperate internal and external DNS for just that reason (internal DNS 
for x.y.com gives out the backend host IP, external DNS for x.y.com gives out 
the proxies IP.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291195
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Galleon page

2007-10-16 Thread mac jordan
Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
some sort of landing page here.


-- 
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291197
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IIS 7.0 for CFML Developers

2007-10-16 Thread Bruce Sorge
Actually it runs quite well. The admin interface takes a bit of getting used
to though. I really like the simple way of doing everything before, but what
can you do.
I have been using Vista here at work now since July and overall I don't have
any complaints. I still do not see any benefit of upgrading my computer at
home as XP does everything that Vista does in regards to what I do on a day
to day basis, vista is just shinier.

Bruce


On 10/15/07, Will Tomlinson [EMAIL PROTECTED] wrote:


I can't believe anything would even RUN on Vista. It's still just as useless
 as ever.




~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291196
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread Rick Root
looks fine to me, maybe ray just fixed it :)

On 10/16/07, mac jordan [EMAIL PROTECTED] wrote:
 Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
 some sort of landing page here.


 --
 mac jordan
 www.webhorus.net
 www.nibblous.com
 www.photocena.com


 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291198
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread Crow T. Robot
I am seeing the RIA Forge page for Galleon.  That's not what you are
getting?

On 10/16/07, mac jordan [EMAIL PROTECTED] wrote:

 Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
 some sort of landing page here.


 --
 mac jordan
 www.webhorus.net
 www.nibblous.com
 www.photocena.com


 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291200
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Galleon page

2007-10-16 Thread Che Vilnonis
Ray is having DNS problems. 

-Original Message-
From: mac jordan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 10:12 AM
To: CF-Talk
Subject: Galleon page

Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
some sort of landing page here.


--
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com




~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291199
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Galleon page

2007-10-16 Thread Will Swain
He's having DNS problems:

http://www.coldfusionjedi.com/index.cfm/2007/10/16/RIAForge-DNS 


Will

-Original Message-
From: mac jordan [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2007 15:12
To: CF-Talk
Subject: Galleon page

Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
some sort of landing page here.


--
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com




~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291202
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Galleon page

2007-10-16 Thread Andy Matthews
Ray blogged this morning that he was having problems with DNS for RiaForge.
You were probably seeing the results of that. 

-Original Message-
From: mac jordan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 9:12 AM
To: CF-Talk
Subject: Galleon page

Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
some sort of landing page here.


--
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com




~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291201
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: IIS 7.0 for CFML Developers

2007-10-16 Thread Vince Bonfanti
 Internet Information Server (IIS) 7.0 is the newest release of 
 Microsoft’s web server for Windows. Currently shipping with Windows 
 Vista, IIS 7.0 is also part of Windows Server 2008, scheduled for 

I can't believe anything would even RUN on Vista. It's still just as useless 
as ever.

I know many people have complained (and are complaining) about Vista, but 
personally I've been running it exclusively since Feb this year without any 
problems, so I guess your mileage may vary. The fact that I bought a new laptop 
with Vista pre-installed (rather than upgrading my old laptop) may have helped.

Honestly, though, I'm must less interested in Vista than in IIS 7.0 and Windows 
Server 2008, which have been running microsoft.com since June, and parts of 
myspace.com:

http://blogs.technet.com/mscom/archive/2007/09/07/the-tasty-morsels-found-in-dogfood-mscom-ops-top-10-changes-in-iis7-0.aspx

I'm not a person who tends to have stong feelings about desktop operating 
systems. The best reason I can think to run Vista--and the only reason I 
switched from Windows XP--is to do development on IIS 7.0.

Regards,

Vince Bonfanti
New Atlanta Communications, LLC

P.S. While we're on the subject of IIS, the latest Netcraft survey is 
interesting:

http://news.netcraft.com/archives/2007/10/11/october_2007_web_server_survey.html

According to Netcraft, Apache has around a 10% market share advantage over IIS 
now, which is the smallest gap between the two since IIS was launched in 1996. 
While so many people focused on the browser wars and the fact that IE is 
losing market share to Firefox, IIS is steadily creeping up on Apache. It'll be 
interesting to see if IIS can surpass Apache market share in the next year or 
so.

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291204
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Galleon page

2007-10-16 Thread Matt Quackenbush
+1 on the DNS issue diagnosis.


On 10/16/07, Che Vilnonis wrote:

 Ray is having DNS problems.



~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291203
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, mac jordan [EMAIL PROTECTED] wrote:

 Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
 some sort of landing page here.




Thanks, all, for the update




-- 
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291205
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 Docs: A backward step

2007-10-16 Thread Chris Hebb
Still, why remove a highly functional feature?


Robert B. Harrison
Director of Interactive services
Austin  Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be .
 Has anyone noticed the CF8 docs no longer have a search 
 feature in the local docs. Does that seem like a step 
 backwards?

The PDF documents are searchable, like all PDFs are.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

I agree - a major step backward. Apparently the only way to work efficiently 
offline is to keep cf7 docs installed. The pdf docs will serve if you buy 
Acrobat Pro which will return multiple occurances of the search string. 

The search function is still included in Adobe's cf web help. 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291207
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SYS-Con relies on dead technology

2007-10-16 Thread Scott Stewart
http://www2.sys-con.com/[EMAIL PROTECTED]
http://www2.sys-con.com/[EMAIL PROTECTED]un
subtype=SOAWorld unsubtype=SOAWorld

 

I guess Silverlight can't do email

 

hehehhehehehe

 

 

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

4405 Oakshyre Way

Raleigh, NC. 27616

(703) 220-2835

 

http://www.sstwebworks.com

 http://www.linkedin.com/in/sstwebworks
http://www.linkedin.com/in/sstwebworks

 

 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291206
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SYS-Con relies on dead technology

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 http://www2.sys-con.com/[EMAIL PROTECTED]

I get exactly the same page for any* string, rightly so.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291208
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SYS-Con relies on dead technology

2007-10-16 Thread Raymond Camden
Even better:

http://www2.sys-con.com/globaldelete.cfm?emil=

Notice the full path of the error. I don't normally publicly OUT
problems like this, but hey, Sys-Con deserves it.

FYI - folks - go to your CF Admin and disable Robust Exception Info.
It takes 2 seconds,.

Then go and set a site wide error handler. You can leave the file
blank. Even that is better than what you see above.


On 10/16/07, Scott Stewart [EMAIL PROTECTED] wrote:
 http://www2.sys-con.com/[EMAIL PROTECTED]
 http://www2.sys-con.com/[EMAIL PROTECTED]un
 subtype=SOAWorld unsubtype=SOAWorld



 I guess Silverlight can't do email



-- 
===
Raymond Camden, Camden Media

Email: [EMAIL PROTECTED]
Blog  : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionbloggers.org

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291209
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Galleon page

2007-10-16 Thread Ben Forta
Just to be fair to Ray, it was not his problem. I moved DNS between servers,
and some of the changes talk longer to propagate than others. But, all seems
to be working now. Sorry about this guys.

--- Ben


-Original Message-
From: mac jordan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 10:37 AM
To: CF-Talk
Subject: Re: Galleon page

On 16/10/2007, mac jordan [EMAIL PROTECTED] wrote:

 Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
 some sort of landing page here.




Thanks, all, for the update




-- 
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com




~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291210
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread Raymond Camden
Should be back up now. It is for me. If you need a personal copy of
Galleon, let me know. I offer full downloads for only 4,999, but today
I'm running a special - one copy of Galleon 2 for one iPhone. :


On 10/16/07, mac jordan [EMAIL PROTECTED] wrote:
 On 16/10/2007, mac jordan [EMAIL PROTECTED] wrote:
 
  Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
  some sort of landing page here.




 Thanks, all, for the update




 --
 mac jordan
 www.webhorus.net
 www.nibblous.com
 www.photocena.com


 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291211
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SYS-Con relies on dead technology

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 http://www2.sys-con.com/globaldelete.cfm?emil=

I wonder who [EMAIL PROTECTED] is.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291212
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 Docs: A backward step

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
  Has anyone noticed the CF8 docs no longer have a search
  feature in the local docs. 

Does in Builder. I thought it would have in CFEclipse too, if you've installed 
the RDS plugins.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291213
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, Raymond Camden [EMAIL PROTECTED] wrote:

 Should be back up now. It is for me. If you need a personal copy of
 Galleon, let me know. I offer full downloads for only 4,999, but today
 I'm running a special - one copy of Galleon 2 for one iPhone. :




A veritable bargain!  Ray, while you're here, what's the minimum version of
CF to run Galleons?




-- 
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291214
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Galleon page

2007-10-16 Thread Raymond Camden
6. But it's cooler in 8.

Ok not really, but everything is cooler in 8 I say. 4 out 5 dentists agree.

On 10/16/07, mac jordan [EMAIL PROTECTED] wrote:
 On 16/10/2007, Raymond Camden [EMAIL PROTECTED] wrote:
 
  Should be back up now. It is for me. If you need a personal copy of
  Galleon, let me know. I offer full downloads for only 4,999, but today
  I'm running a special - one copy of Galleon 2 for one iPhone. :




 A veritable bargain!  Ray, while you're here, what's the minimum version of
 CF to run Galleons?



-- 
===
Raymond Camden, Camden Media

Email: [EMAIL PROTECTED]
Blog  : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionbloggers.org

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291216
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Galleon page

2007-10-16 Thread Raymond Camden
I'm still having issues with *.riaforge.org, but www.riaforge.org
works. So it may still be in transition.

All teasing aside - if someone has a need for Galleon now, ping me offlist.

On 10/16/07, Ben Forta [EMAIL PROTECTED] wrote:
 Just to be fair to Ray, it was not his problem. I moved DNS between servers,
 and some of the changes talk longer to propagate than others. But, all seems
 to be working now. Sorry about this guys.

 --- Ben


 -Original Message-
 From: mac jordan [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 16, 2007 10:37 AM
 To: CF-Talk
 Subject: Re: Galleon page

 On 16/10/2007, mac jordan [EMAIL PROTECTED] wrote:
 
  Anyone know what's happened to http://galleon.riaforge.org/ ?  I'm getting
  some sort of landing page here.




 Thanks, all, for the update




 --
 mac jordan
 www.webhorus.net
 www.nibblous.com
 www.photocena.com




 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291215
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Don't quote me on this

2007-10-16 Thread Rand Thacker
I have a form that allows the user to edit data in the database.
Let's now say that data looks like this:

14'6 cable

Now, how does one handle the FORM element INPUT TYPE=text with a prefilled 
value in here?

value=#data# will only show: 14'6 in the text box.
value='#data#' will only show: 14 in the text box.

Am I supposed to double-up the quote marks or something?  Seems like people 
should be running into this all the time.  Maybe I just am not googling for it 
properly.

Any help is appreciated.

Thanks - Rand Thacker 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291217
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SYS-Con relies on dead technology

2007-10-16 Thread Crow T. Robot
worst...signature...ever

On 10/16/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
  http://www2.sys-con.com/globaldelete.cfm?emil=

 I wonder who [EMAIL PROTECTED] is.

 --
 Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor
 and
 ColdSpring, and has done some Flex work ? Would you like to work for a top
 30
 law firm in Manchester, UK ? Are not an agency ? If yes, send email !

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered office address
 is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
 available for inspection at the registered office.  Any reference to a
 partner in relation to Halliwells LLP means a member of Halliwells
 LLP.  Regulated by The Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 8008.

 For more information about Halliwells LLP visit www.halliwells.com.

 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291219
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Nellie_S
Please help. Clients upload PDF files to the server. Our goal is to restrict
some users from printing, copying, etc of PDF files(depends on the user’s
role). This could be done even as a nightly scheduled task. We are using
ColdFusion 7 and SQL Server. Does anybody have experience in that? Thanks
-- 
View this message in context: 
http://www.nabble.com/How-to-apply-security-to-the-PDF-files-%28prevent-user-from-printing%2C-copying-etc%29--tf4634771.html#a13235468
Sent from the Cold Fusion - Technical mailing list archive at Nabble.com.


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291218
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SYS-Con relies on dead technology

2007-10-16 Thread John Rossi
Google is your friend, or enemy depending on how you look at it.

http://people.langeconsulting.com/matt/

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 11:42 AM
To: CF-Talk
Subject: Re: SYS-Con relies on dead technology


On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote:
 http://www2.sys-con.com/globaldelete.cfm?emil=

I wonder who [EMAIL PROTECTED] is.

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top
30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office.  Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291220
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfchart and spry tabs

2007-10-16 Thread Will Swain
Hi,
 
I have a couple of really simple cfcharts in a spry tab. If I browse to one
of the other tabs and then come back to the tab with the charts, I get an
Image Expired. Please refresh the page to see the image error where the
charts should display. I want people to be able to flick through the tabs
and return to the charts when they want without receiving this message. 
 
Any ideas? I looked for a timeout attribute but there doesn't appear to be
one for cfchart.
 
Cheers
 
Will


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291223
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Raymond Camden
If there is any way you can upgrade to CF8, this is super easy with
the CF8 CFPDF tag.

On 10/16/07, Nellie_S [EMAIL PROTECTED] wrote:
 Please help. Clients upload PDF files to the server. Our goal is to restrict
 some users from printing, copying, etc of PDF files(depends on the user's
 role). This could be done even as a nightly scheduled task. We are using
 ColdFusion 7 and SQL Server. Does anybody have experience in that? Thanks
 --
 View this message in context: 
 http://www.nabble.com/How-to-apply-security-to-the-PDF-files-%28prevent-user-from-printing%2C-copying-etc%29--tf4634771.html#a13235468
 Sent from the Cold Fusion - Technical mailing list archive at Nabble.com.


 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291222
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: structisempty vs. structcount

2007-10-16 Thread Barney Boisvert
structCount(url) GT 0  
or
NOT structIsEmpty(url)

Relying on CF's implicit type conversion is generally a bad idea,
particularly when you're dealing with boolean values.  There are just
way too many weirdnesses lurking in the shadows with boolean
conversions.

Of the two, I'd prefer the latter, since you don't care about the
actual count, just whether it's empty or not.

cheers,
barneyb


On 10/16/07, Michael Dinowitz [EMAIL PROTECTED] wrote:
 Is there any consensus in the community as to which to use when checking if a 
 structure has content or not? I'm building a killer onError() handler and I 
 need to remove structures that have no content. I'm leaning towards 
 structcount() as I can do
 cfif structcount(url)
 rather than
 cfif not structisempty(url)

 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291225
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Don't quote me on this

2007-10-16 Thread Charlie Griefer
value=#HTMLEditFormat(data)#

On 10/16/07, Rand Thacker [EMAIL PROTECTED] wrote:
 I have a form that allows the user to edit data in the database.
 Let's now say that data looks like this:

 14'6 cable

 Now, how does one handle the FORM element INPUT TYPE=text with a prefilled 
 value in here?

 value=#data# will only show: 14'6 in the text box.
 value='#data#' will only show: 14 in the text box.

 Am I supposed to double-up the quote marks or something?  Seems like people 
 should be running into this all the time.  Maybe I just am not googling for 
 it properly.

 Any help is appreciated.

 Thanks - Rand Thacker

 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291224
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Don't quote me on this

2007-10-16 Thread Bryan Stevenson
wrap the value in HTMLEditFormat() or maybe it's HTMLCodeFormat()can't 
recall which right nowbut one of those will solve your problem ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291221
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Bryan Stevenson
printing a PDF is a function of the Adobe Reader PluginI think you'll find 
it impossible AFAIK to integarte your security with the plugin.so if they 
can view then they can print!!

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291226
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Don't quote me on this

2007-10-16 Thread Dave Watts
 I have a form that allows the user to edit data in the database.
 Let's now say that data looks like this:
 
 14'6 cable
 
 Now, how does one handle the FORM element INPUT TYPE=text 
 with a prefilled value in here?
 
 value=#data# will only show: 14'6 in the text box.
 value='#data#' will only show: 14 in the text box.
 
 Am I supposed to double-up the quote marks or something? 

Yes.

 Seems like people should be running into this all the time.  
 Maybe I just am not googling for it properly.

I don't know, there just isn't that much to it. If you have double quotes in
a double-quote-delimited string, you need to double them.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291227
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Raymond Camden
While that is true - printing is something you can block with CFPDF so
I assume Acrobat would let you do it as well. So it would be blocked
in the Adobe Reader Plugin. I know I tested it with CF8. It doesn't
stop PrintScreen of course.

On 10/16/07, Ron Gowen [EMAIL PROTECTED] wrote:
 If they can view it they can print screen it

 On 10/16/07, Bryan Stevenson [EMAIL PROTECTED] wrote:
 
  printing a PDF is a function of the Adobe Reader PluginI think you'll
  find
  it impossible AFAIK to integarte your security with the plugin.so if
  they
  can view then they can print!!
 
  Cheers
 
  Bryan Stevenson B.Comm.
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  phone: 250.480.0642
  fax: 250.480.1264
  cell: 250.920.8830
  e-mail: [EMAIL PROTECTED]
  web: www.electricedgesystems.com
 
  Notice:
  This message, including any attachments, is confidential and may contain
  information that is privileged or exempt from disclosure. It is intended
  only for the person to whom it is addressed unless expressly authorized
  otherwise by the sender. If you are not an authorized recipient, please
  notify the sender immediately and permanently destroy all copies of this
  message and attachments.
 
 
 
 

 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291231
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, Raymond Camden [EMAIL PROTECTED] wrote:

 6. But it's cooler in 8.



Great!  That means this client will have to move their hosting to us :)

Thanks for the info.


-- 
mac jordan
www.webhorus.net
www.nibblous.com
www.photocena.com


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291230
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Ron Gowen
If they can view it they can print screen it

On 10/16/07, Bryan Stevenson [EMAIL PROTECTED] wrote:

 printing a PDF is a function of the Adobe Reader PluginI think you'll
 find
 it impossible AFAIK to integarte your security with the plugin.so if
 they
 can view then they can print!!

 Cheers

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com

 Notice:
 This message, including any attachments, is confidential and may contain
 information that is privileged or exempt from disclosure. It is intended
 only for the person to whom it is addressed unless expressly authorized
 otherwise by the sender. If you are not an authorized recipient, please
 notify the sender immediately and permanently destroy all copies of this
 message and attachments.



 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291228
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Paul Hastings
Raymond Camden wrote:
 If there is any way you can upgrade to CF8, this is super easy with
 the CF8 CFPDF tag.

if not, it's relatively easy using iText.

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291229
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: structisempty vs. structcount

2007-10-16 Thread Michael Dinowitz
My initial concern was one of aesthetics. With 18+ different variable scopes
to dump, mixing not structisempty() and structcount() just looked messy.
After further review and comments here, I see that I should err on the side
of proper functions for the proper function rather than having things look
nice. Using the logic of if a structure has 1 or more keys means that ALL
of the keys have to be counted before the comparison. For small structures
this may not be a problem but I've seen people who's code have HUGE
structures. Theoretically, structisempty() simply checks if there's at least
1 key in a structure and returns that information rather than counting each
key.

This is a fragment of what I'm doing:
cfif bitmaskread(arguments.errordisplayvars, 9, 1) and not
structisempty(form)
CFDUmp var=#form# label=formbr
/cfif

cfif bitmaskread(arguments.errordisplayvars, 10, 1) and
structcount(request) gt 1
!--- check the request only if there is more than 1 item in it. The
first item is cfdumpinited ---
CFDUmp var=#request# label=requestbr
/cfif

cfif bitmaskread(arguments.errordisplayvars, 11, 1) and not
structisempty(client)
CFDUmp var=#client# label=Client variablesbr
/cfif

The onError() method in my application.cfc can show different layers of
information based on where it's called from and how. My end goal is to have
an application.cfc based methodology for my apps which will control layout,
template load, ses urls (real ones) and other features. It's looking nice.

On 10/16/07, Barney Boisvert [EMAIL PROTECTED] wrote:

 structCount(url) GT 0  
 or
 NOT structIsEmpty(url)

 Relying on CF's implicit type conversion is generally a bad idea,
 particularly when you're dealing with boolean values.  There are just
 way too many weirdnesses lurking in the shadows with boolean
 conversions.

 Of the two, I'd prefer the latter, since you don't care about the
 actual count, just whether it's empty or not.

 cheers,
 barneyb


 On 10/16/07, Michael Dinowitz [EMAIL PROTECTED] wrote:
  Is there any consensus in the community as to which to use when checking
 if a structure has content or not? I'm building a killer onError() handler
 and I need to remove structures that have no content. I'm leaning towards
 structcount() as I can do
  cfif structcount(url)
  rather than
  cfif not structisempty(url)
 
 

 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291234
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Ron Gowen
I don't think there will be a way to trully secure a PDF from printing,
however you might put a watermark on those viewed by those with lesser
permissions

On 10/16/07, Raymond Camden [EMAIL PROTECTED] wrote:

 While that is true - printing is something you can block with CFPDF so
 I assume Acrobat would let you do it as well. So it would be blocked
 in the Adobe Reader Plugin. I know I tested it with CF8. It doesn't
 stop PrintScreen of course.

 On 10/16/07, Ron Gowen [EMAIL PROTECTED] wrote:
  If they can view it they can print screen it
 
  On 10/16/07, Bryan Stevenson [EMAIL PROTECTED] wrote:
  
   printing a PDF is a function of the Adobe Reader PluginI think
 you'll
   find
   it impossible AFAIK to integarte your security with the plugin.so
 if
   they
   can view then they can print!!
  
   Cheers
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development
   Electric Edge Systems Group Inc.
   phone: 250.480.0642
   fax: 250.480.1264
   cell: 250.920.8830
   e-mail: [EMAIL PROTECTED]
   web: www.electricedgesystems.com
  
   Notice:
   This message, including any attachments, is confidential and may
 contain
   information that is privileged or exempt from disclosure. It is
 intended
   only for the person to whom it is addressed unless expressly
 authorized
   otherwise by the sender. If you are not an authorized recipient,
 please
   notify the sender immediately and permanently destroy all copies of
 this
   message and attachments.
  
  
  
  
 
 

 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291235
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ColdFusion Report Builder (preview problem)

2007-10-16 Thread Becky McDermott
Hello,

I am trying to use the Report Builder to build a simple report.  I've followed 
tutorials on-line to build the report and when I try to preview it, I get the 
following error:

Internet Explorer Script Error
An error has occurred in the script on this page
Line: 2
Char: 1
Error:  Invalid character
Code:  0
URL: http://www.../NewColdFusionReport.cfr (left out full URL)

Do you want to continue running scripts on this page?

Yes  No

The report was very simple, nothing complicated and I used the wizard and Query 
Builder to build it.

Any ideas?

Thank You,
Becky McDermott 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291233
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SYS-Con relies on dead technology

2007-10-16 Thread Bobby Hartsfield
Agreed. Thanks for resending it.

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: Crow T. Robot [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 12:02 PM
To: CF-Talk
Subject: Re: SYS-Con relies on dead technology

worst...signature...ever




~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291232
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Simon Horwith
reminder - links to sys-con pages not only in blog entries and web pages 
but also in e-mails to HoF mail lists (whose threads are web-accessible) 
benefit Sys-Con.  Unless you disagree with the statement that Sys-Con is 
no friend of the F community (and I think we all agree on this), let's 
try to not link to them.  If you want to provide a sys-con URL in a 
post, why not replace www. with www-dot-?  Anyone inclined on 
reading the article/page will figure it out.  Do note that though this 
tactic will reduce their search engine placement, ANY visits to their 
sites helps their traffic, and their traffic numbers are a selling point 
to their advertisers/sponsors.

~Simon

Simon Horwith
Adobe Community Expert
Adobe Certified Master Instructor
http://www.horwith.com




Scott Stewart wrote:
 removed to combat sys-con profitability
  

 I guess Silverlight can't do email

  

 hehehhehehehe

  

  

  

   


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291237
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MSSQL Timeout (Connection: reset)

2007-10-16 Thread Rebecca Wells
I'm getting the same error on a frequent basis and we are not using VMWare. 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291236
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: structisempty vs. structcount

2007-10-16 Thread Barney Boisvert
On 10/16/07, Michael Dinowitz [EMAIL PROTECTED] wrote:
 Theoretically, structisempty() simply checks if there's at least
 1 key in a structure and returns that information rather than counting each
 key.

I can't speak for other JVM implementations, but Sun's implementation
for Windows maintains an internal counter of the number of keys in the
Map, so size() calls are fast regardless of the Map's size.  Whether
structCount and structIsEmpty use the size() method or not, I can't
say, but I'd sure expect them to.  I would expect all the Sun
implementations to share this, as that stuff is implemented in Java,
not native code, so it can be shared.

Premature (or uninformed) optimization is one of the biggest sources
of evil in programming.  ;)

cheers,
barneyb

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291239
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Brad Wood
Yeah, cfpdf lets you set the password and security access.  i.e. keep
them from printing.  In addition to the obvious print screen, it is up
to the individual pdf viewer to choose to obey or ignore the security
flags in a PDF. That means Adobe Acrobat disables the print button, but
dozens of other free PDF viewers let them do whatever they want.  There
are actually utilities out there which will remove all security from a
PDF for you if you forgot your password.

~Brad

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 11:37 AM
To: CF-Talk
Subject: Re: How to apply security to the PDF files (prevent user from
printing, copying etc)?

While that is true - printing is something you can block with CFPDF so
I assume Acrobat would let you do it as well. So it would be blocked
in the Adobe Reader Plugin. I know I tested it with CF8. It doesn't
stop PrintScreen of course.

On 10/16/07, Ron Gowen [EMAIL PROTECTED] wrote:
 If they can view it they can print screen it

 On 10/16/07, Bryan Stevenson [EMAIL PROTECTED] wrote:
 
  printing a PDF is a function of the Adobe Reader PluginI think
you'll
  find
  it impossible AFAIK to integarte your security with the
plugin.so if
  they
  can view then they can print!!
 
  Cheers
 
  Bryan Stevenson B.Comm.
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  phone: 250.480.0642
  fax: 250.480.1264
  cell: 250.920.8830
  e-mail: [EMAIL PROTECTED]
  web: www.electricedgesystems.com
 
  Notice:
  This message, including any attachments, is confidential and may
contain
  information that is privileged or exempt from disclosure. It is
intended
  only for the person to whom it is addressed unless expressly
authorized
  otherwise by the sender. If you are not an authorized recipient,
please
  notify the sender immediately and permanently destroy all copies of
this
  message and attachments.
 
 
 
 

 



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291238
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Bryan Stevenson
hmmm...guess I better find some time to review some of the new CF 8 stuff 
beyond 
AJAX ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291240
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion Report Builder (preview problem)

2007-10-16 Thread Rob Parkhill
Becky,

Are you just trying to preview it directly from Report Builder?  What format 
are you creating it in?

Rob 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291241
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: structisempty vs. structcount

2007-10-16 Thread Michael Dinowitz
Clean code is its own reward. If there's no real difference in performance
then I'm all for clean code.

Premature (or uninformed) optimization is one of the biggest sources
 of evil in programming.  ;)



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291242
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jessica Kennedy
Jessica: 
Also, have you considered using wildcard DNS? As in
http://jessica.sample.com
You can do that by simply adding a * A host entry in your DNS manager.
Michael





This sounds like a good Idea... what would be the proper syntax to use to get 
the username field if I went with a wildcard variable?  I don't have a lot of 
experience with CGI variables, which seems to be what I will need to do this.  

Also, I will be using an IIS server, not apache, and I don't think there is a 
mod_rewrite equivalent with IIS, hopefully somebody can prove me wrong though! 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291243
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jessica Kennedy
Ok, this was what my original thought was... can you explain this part better 
for me please:
This page will parse the cgi.request_uri string into an array based on the
/ character.
--
This is the part that I have been struggling with... thanks!


Use a custom 404 page.  You will need to update the 404 error handling in
your server (Apache, IIS, etc) to point to this new page on all 404 errors.

This page will parse the cgi.request_uri string into an array based on the
/ character.

Do a check in the database for the user which matches the value in the last
position in the array. (or you can do an 'or' check for each of the
positions after the host_name)

If the result is eq 1, then display the agent's website.

If the result is gt 1, then display a 'choice' of which one the user had
intended to type in.

If the result is eq 0, then show your 404 error page.

William

-- 
William E. Seiter
 
Have you ever read a book that changed your life?
Go to: www.winninginthemargins.com
Enter passkey: goldengrove
 
Web Developer 
http://William.Seiter.com

Hi, I am working on a site for a MLM company that wants each person who
 signs up with the company to have their own replicated website. The
 replicated site is really no more than each person having a separate URL
 that is defined by the username they put in when they sign up-
 everyone's site is exactly the same otherwise.  For example, if I signed up
for
 the program with a username of jessica my replicated website's
 address would be http://www.sample.com/jessica;.   

I do not want to have to create a separate folder  index page for each
  every person who signs up, because that seems like it would be kind
 of ridiculous  waste a lot of space, so how can I (firstly) trick the
 server into believing there is a separate page for each person even
 without a folder with their username existing in my directory?

Second, and I guess this question could be answered by the first, how
 can I get that   username to be pulled from the URL for use in dynamic
 queries and the like.

-More or less, I am just wanting to somehow convert a query string such
 as http://www.sample.com?username=jessica; into the more
 user-friendly http://www.sample.com/jessica;.  

I think i am making this harder than it really is.. hopefully I have
 made this clear enough to understand, and any help would be greatly
 appreciated!  Thanks!! 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291244
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Creating replicated sites with coldfusion

2007-10-16 Thread Michael E. Carluen
 
 This sounds like a good Idea... what would be the proper syntax to use to
 get the username field if I went with a wildcard variable?  I don't have a
 lot of experience with CGI variables, which seems to be what I will need
 to do this.
 

You can treat the CGI scope just like any other struct... just cfdump it to
see what's in it.

For this you can use CGI.HTTP_HOST . You can then evaluate the returned var
and treat it as a list delimited by a dot (.).  Get the listlen.  If it has
3 elements, the first one should be your wildcard value, which you can
capture, create a query, then cflocate to the appropriate site.

Hth, Jessica.



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291245
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Ian Skinner
Also, I will be using an IIS server, not apache, and I don't think there is a 
mod_rewrite equivalent with IIS, hopefully somebody can prove me wrong though!

I have never used it, but I have read on the list and others many times that 
there are mod_rewrite ports to IIS out there.



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291246
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread [EMAIL PROTECTED]
What you do is use
ListToArray(list [, delimiters ])

to parse the url.

ListToArray(cgi.request_uri,/)

This will give you an array with each section of the url in its own 
cell.
You want to use the information stored 'after' the url to do your 
search.


-Original Message
-From: [EMAIL PROTECTED]
-Date: Oct 16, 2007 11:51 
-To: CF-Talkcf-talk@houseoffusion.com
-Subj: Re: Creating replicated sites with coldfusion
-
-Ok, this was what my original thought was... can you explain this 
part better for me please:
-This page will parse the cgi.request_uri string into an array based 
on the
-/ character.
---
-This is the part that I have been struggling with... thanks!
-
-
-Use a custom 404 page.  You will need to update the 404 error 
handling in
-your server (Apache, IIS, etc) to point to this new page on all 404 
errors.
-
-This page will parse the cgi.request_uri string into an array based 
on the
-/ character.
-
-Do a check in the database for the user which matches the value in 
the last
-position in the array. (or you can do an 'or' check for each of the
-positions after the host_name)
-
-If the result is eq 1, then display the agent's website.
-
-If the result is gt 1, then display a 'choice' of which one the user 
had
-intended to type in.
-
-If the result is eq 0, then show your 404 error page.
-
-William
-
--- 
-William E. Seiter
- 
-Have you ever read a book that changed your life?
-Go to: www.winninginthemargins.com
-Enter passkey: goldengrove
- 
-Web Developer 
-http://William.Seiter.com
-
-Hi, I am working on a site for a MLM company that wants each person 
who
- signs up with the company to have their own replicated website. The
- replicated site is really no more than each person having a 
separate URL
- that is defined by the username they put in when they sign up-
- everyone's site is exactly the same otherwise.  For example, if I 
signed up
-for
- the program with a username of jessica my replicated website's
- address would be http://www.sample.com/jessica;.   
-
-I do not want to have to create a separate folder  index page for 
each
-  every person who signs up, because that seems like it would be 
kind
- of ridiculous  waste a lot of space, so how can I (firstly) trick 
the
- server into believing there is a separate page for each person even
- without a folder with their username existing in my directory?
-
-Second, and I guess this question could be answered by the first, 
how
- can I get that   username to be pulled from the URL for use in 
dynamic
- queries and the like.
-
--More or less, I am just wanting to somehow convert a query string 
such
- as http://www.sample.com?username=jessica; into the more
- user-friendly http://www.sample.com/jessica;.  
-
-I think i am making this harder than it really is.. hopefully I have
- made this clear enough to understand, and any help would be greatly
- appreciated!  Thanks!! 
-
-


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291247
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Scott Stewart
As penance I will start the Boycott magazine publisher who shall not be
named movement :)

sas

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
4405 Oakshyre Way
Raleigh, NC. 27616
(703) 220-2835
 
http://www.sstwebworks.com
http://www.linkedin.com/in/sstwebworks
 

-Original Message-
From: Simon Horwith [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 1:01 PM
To: CF-Talk
Subject: Re: SPAM - SYS-Con relies on dead technology

reminder - links to sys-con pages not only in blog entries and web pages 
but also in e-mails to HoF mail lists (whose threads are web-accessible) 
benefit Sys-Con.  Unless you disagree with the statement that Sys-Con is 
no friend of the F community (and I think we all agree on this), let's 
try to not link to them.  If you want to provide a sys-con URL in a 
post, why not replace www. with www-dot-?  Anyone inclined on 
reading the article/page will figure it out.  Do note that though this 
tactic will reduce their search engine placement, ANY visits to their 
sites helps their traffic, and their traffic numbers are a selling point 
to their advertisers/sponsors.

~Simon

Simon Horwith
Adobe Community Expert
Adobe Certified Master Instructor
http://www.horwith.com




Scott Stewart wrote:
 removed to combat sys-con profitability
  

 I guess Silverlight can't do email

  

 hehehhehehehe

  

  

  

   




~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291248
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread [EMAIL PROTECTED]
Fear of the name of a thing increases the power of a thing in your 
life.

William

-Original Message
-From: [EMAIL PROTECTED]
-Date: Oct 16, 2007 11:26 
-To: CF-Talkcf-talk@houseoffusion.com
-Subj: RE: SPAM -  SYS-Con relies on quot;deadquot; technology
-
-As penance I will start the Boycott magazine publisher who shall not 
be
-named movement :)
-
-sas
-
--- 
-Scott Stewart
-ColdFusion Developer
- 
-SSTWebworks
-4405 Oakshyre Way
-Raleigh, NC. 27616
-(703) 220-2835
- 
-http://www.sstwebworks.com
-http://www.linkedin.com/in/sstwebworks
- 
-
--Original Message-
-From: Simon Horwith [mailto:[EMAIL PROTECTED] 
-Sent: Tuesday, October 16, 2007 1:01 PM
-To: CF-Talk
-Subject: Re: SPAM - SYS-Con relies on dead technology
-
-reminder - links to sys-con pages not only in blog entries and web 
pages 
-but also in e-mails to HoF mail lists (whose threads are web-
accessible) 
-benefit Sys-Con.  Unless you disagree with the statement that Sys-Con 
is 
-no friend of the F community (and I think we all agree on this), 
let's 
-try to not link to them.  If you want to provide a sys-con URL in a 
-post, why not replace www. with www-dot-?  Anyone inclined on 
-reading the article/page will figure it out.  Do note that though 
this 
-tactic will reduce their search engine placement, ANY visits to 
their 
-sites helps their traffic, and their traffic numbers are a selling 
point 
-to their advertisers/sponsors.
-
-~Simon
-
-Simon Horwith
-Adobe Community Expert
-Adobe Certified Master Instructor
-http://www.horwith.com
-
-
-
-
-Scott Stewart wrote:
- removed to combat sys-con profitability
-  
-
- I guess Silverlight can't do email
-
-  
-
- hehehhehehehe
-
-  
-
-  
-
-  
-
-   
-
-
-
-
-


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291249
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jochem van Dieten
Jessica Kennedy wrote:
 Also, have you considered using wildcard DNS? As in
 http://jessica.sample.com
 
 This sounds like a good Idea... what would be the proper syntax to use to get 
 the username field if I went with a wildcard variable?

ListGetAt(cgi.host_name, ListLen(cgi.host_name, .) - 2, .)

 Also, I will be using an IIS server, not apache, and I don't think there is a 
 mod_rewrite equivalent with IIS, hopefully somebody can prove me wrong 
 though! 

If you have control over the server you could also rewrite the URL in 
JRun with UrlRewriteFilter.

Jochem

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291250
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Charlie Griefer
who said anything about fear?

On 10/16/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Fear of the name of a thing increases the power of a thing in your
 life.

 William

 -Original Message
 -From: [EMAIL PROTECTED]
 -Date: Oct 16, 2007 11:26
 -To: CF-Talkcf-talk@houseoffusion.com
 -Subj: RE: SPAM -  SYS-Con relies on quot;deadquot; technology
 -
 -As penance I will start the Boycott magazine publisher who shall not
 be
 -named movement :)
 -
 -sas
 -
 ---
 -Scott Stewart
 -ColdFusion Developer
 -
 -SSTWebworks
 -4405 Oakshyre Way
 -Raleigh, NC. 27616
 -(703) 220-2835
 -
 -http://www.sstwebworks.com
 -http://www.linkedin.com/in/sstwebworks
 -
 -
 --Original Message-
 -From: Simon Horwith [mailto:[EMAIL PROTECTED]
 -Sent: Tuesday, October 16, 2007 1:01 PM
 -To: CF-Talk
 -Subject: Re: SPAM - SYS-Con relies on dead technology
 -
 -reminder - links to sys-con pages not only in blog entries and web
 pages
 -but also in e-mails to HoF mail lists (whose threads are web-
 accessible)
 -benefit Sys-Con.  Unless you disagree with the statement that Sys-Con
 is
 -no friend of the F community (and I think we all agree on this),
 let's
 -try to not link to them.  If you want to provide a sys-con URL in a
 -post, why not replace www. with www-dot-?  Anyone inclined on
 -reading the article/page will figure it out.  Do note that though
 this
 -tactic will reduce their search engine placement, ANY visits to
 their
 -sites helps their traffic, and their traffic numbers are a selling
 point
 -to their advertisers/sponsors.
 -
 -~Simon
 -
 -Simon Horwith
 -Adobe Community Expert
 -Adobe Certified Master Instructor
 -http://www.horwith.com
 -
 -
 -
 -
 -Scott Stewart wrote:
 - removed to combat sys-con profitability
 -
 -
 - I guess Silverlight can't do email
 -
 -
 -
 - hehehhehehehe
 -
 -
 -
 -
 -
 -
 -
 -
 -
 -
 -
 -
 -


 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291251
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SOT: Automatically sync an access db to SQL 2005

2007-10-16 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hi all,

I hope this is not too off topic.  Does any one know of a methodology to 
automatically move Access data to SQL Server 2005?

Here is the scenario.  The Client is syncing their AS400 to Access.  They want 
to upload the Access db to the server and then run a routine to basically purge 
the tables and repopulate them with the Access data.

My first suggestion was to just do this manually, Second to write a CF routine, 
but then they asked about something at the SQL level.

Any thoughts are welcome. 

Thank you,
Michael 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291252
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Flex problem with Coldfusion 8

2007-10-16 Thread Rick Root
I posted this problem to [EMAIL PROTECTED] a week or so ago but I
haven't gotten a solution yet.  So I'm trying flexcoders and
cf-talk

I have an application that doesn't seem to be working properly.
Basically, I've got a query (in coldfusion 8) that returns a few
columns directly to flex via a remoteobject call.

Some of the columns are DECIMAL(10,2).

Flex is interpreting the results as strings instead of numbers, so
sorting data in my datagrid is failing to work properly.

Here's my query (in cf):

select
   DISTINCT
   GIFTAB1.ENTITY_ID,
   'J. Q. Public' AS PREFERRED_NAME,
   GIFTAB1.CREDTDAT,
   CAST(GIFTAB1.LEGCRAMT AS money) AS LEGCRAMT,
   GIFTAB1.SOFTAMT
FROM ...

Note that I'm casing LEGCRAMT to money, while I'm leaving SOFTAMT as
the regular type DECIMAL(10,2).

My response handler in the Flex app:

private function getMatchingGivingResult2(e:ResultEvent):void
{
   var data = ArrayCollection(e.result);
   dgGivingHistory.dataProvider=data;
   refreshDataProvider();
}

If I put a break in there, I see the contents of data, and both
SOFTAMT and LEGCRAMT are strings.   CREDTDAT is a date, as it should
be.

What's going on here?  I need flex to understand that LEGCRAMT and
SOFTAMT are numbers, not strings, so that when those numbers are
sorted in the datagrid, they are sorted correctly.

Thanks.

-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291255
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Gabriel Robichaud
Hello everyone

I have a bit of code and I am a little confused as to why, when i change the
format attribute to =flash, the whole thing goes crazy. All the values in
my text field are identical to the first row returned by the query.
However, HTML format works quite well with expected output.

Any input would be great. Code is bellow. I am working off Windows XP. CF8
Dev edition.



cfoutput
cfloop query=getLabels

cfform format=html  id=mod#theID#
action=index.cfm?view=labels#session.URLToken#
method=post skin=haloSilver width=310
   cfformgroup type=horizontal
 cfinput type=hidden name=ID value=#theID#
 cfformitem width=25 type=html#theLabelID#/cfformitem
 cfinput width=170 type=text value=#theContent# name=label
 cfinput width=75 type=submit value=Update name=submit
   /cfformgroup
 /cfform


/cfloop
/CFOUTPUT


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291253
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Jochem van Dieten
Nellie_S wrote:
 Please help. Clients upload PDF files to the server. Our goal is to restrict
 some users from printing, copying, etc of PDF files(depends on the user’s
 role). This could be done even as a nightly scheduled task. We are using
 ColdFusion 7 and SQL Server. Does anybody have experience in that?

If it has to be foolproof, you better have a budget because you will 
need Adobe LiveCycle. If it just has to protect against casual printing, 
editing, annotating of PDF files you can quite easily do so with the 
cfpdf tag in CF 8, or with some more difficulty with one of the many 
commercial tools for securing PDFs (some have a command line mode you 
can access from cfexecute).

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291254
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFFORM Flash VS Html

2007-10-16 Thread Gabriel Robichaud
On 10/16/07, Gabriel Robichaud [EMAIL PROTECTED] wrote:

 Hello everyone

 I have a bit of code and I am a little confused as to why, when i change
 the format attribute to =flash, the whole thing goes crazy. All the values
 in my text field are identical to the first row returned by the query.
 However, HTML format works quite well with expected output.

 Any input would be great. Code is bellow. I am working off Windows XP. CF8
 Dev edition.



 cfoutput
 cfloop query=getLabels

 cfform format=html  id=mod#theID# 
 action=index.cfm?view=labels#session.URLToken#
 method=post skin=haloSilver width=310
cfformgroup type=horizontal
  cfinput type=hidden name=ID value=#theID#
  cfformitem width=25 type=html#theLabelID#/cfformitem
  cfinput width=170 type=text value=#theContent# name=label
  cfinput width=75 type=submit value=Update name=submit
/cfformgroup
  /cfform


 /cfloop
 /CFOUTPUT



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291256
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Creating replicated sites with coldfusion

2007-10-16 Thread Ben Doom
Jessica Kennedy wrote:
 Jessica: 
 Also, have you considered using wildcard DNS? As in
 http://jessica.sample.com
 You can do that by simply adding a * A host entry in your DNS manager.
 Michael

 This sounds like a good Idea... what would be the proper syntax to use to get 
 the username field if I went with a wildcard variable?  I don't have a lot of 
 experience with CGI variables, which seems to be what I will need to do this. 
  

I could be wrong, but I don't think IIS supports wildcard sites.  Which 
is too bad, because that's actually a very elegant solution.

 Also, I will be using an IIS server, not apache, and I don't think there is a 
 mod_rewrite equivalent with IIS, hopefully somebody can prove me wrong 
 though! 

I've never used one, but there were a couple brought up on the list a 
while back.  Both were for-pay, I think, but very cheap IIRC.

--Ben Doom


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291261
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Spry and IE Caching

2007-10-16 Thread erik tom
try using something like this 
cfsetting enablecfoutputonly=yes
cfsetting showdebugoutput=no
!--- Query the database and get all the records from the Images table ---
cfquery name=rsImages datasource=dsImages
 SELECT ID, AlbumName, ImagePath, ImageDescription, UploadDate FROM Images
/cfquery
!--- Send the headers ---
cfheader name=Content-type value=text/xml
cfheader name=Pragma value=public
cfheader name=Cache-control value=private
cfheader name=Expires value=-1
cfsetting enablecfoutputonly=no?xml version=1.0 encoding=utf-8?
images
cfoutput query=rsImages
image
ID#ID#/ID
album![CDATA[#AlbumName#]]/album
path![CDATA[#ImagePath#]]/path
description![CDATA[#ImageDescription#]]/description
date![CDATA[#UploadDate#]]/date
/image
/cfoutput
/images


That should have read append a random var to the request. 

You might need to append a random var to the returned string. Timestamp or
something. 

[mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 25, 2007 11:45 AM
To: CF-Talk
Subject: Spry and IE Caching

Hello Guys,

 

First time ever using spry and I'm using the Spry.Utils.updateContent()
function to update content every few seconds in a div. This works perfectly
in Firefox but for some reason IE seems to have a common caching problem
where it'll cache the content totally ruining the point of the auto refresh.

 

I've tried the:

 

cfheader name=Cache-Control value= no-cache cfheader name=Expires
value=0 cfheader name=Pragma value=no-cache

 

Fix as suggested by some people but it doesn't seem to work, can anyone
offer any advice? I know its not strictly CF, but its as near as possible.

 

Thanks guys,

 

Rob 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291257
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion Report Builder (preview problem)

2007-10-16 Thread Becky McDermott
I was trying to preview it directly from Report Builder and the output format 
was the default Flash Paper.  Once I changed the format to PDF, everything 
is fine now.

Thank You!!

 Becky,
 
 Are you just trying to preview it directly from Report Builder?  What 
 format are you creating it in?
 
 Rob 


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291260
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Automatically sync an access db to SQL 2005

2007-10-16 Thread Robert Harrison
 Does anyone know of a methodology to automatically move Access data to SQL
Server 2005?

After you've created a data base shell, right click on the DB source in SQL
server 2005. You should be able to import data and table structures from
access with little problem.

 The Client is syncing their AS400 to Access.

But above AS400 to Access... that I don't get. They run a good chance of
losing data going to Access. On an AS/400 they should be able to run SQL
server and could go straight to that. Much less chance of complications. 



Robert B. Harrison
Director of Interactive services
Austin  Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be .




~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291259
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Billy Cox
Lord Voldemort would heartily agree. 

But seriously, what's with all the hatred of Sys-Con? Did I miss something?


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 1:41 PM
To: CF-Talk
Subject: RE: SPAM - SYS-Con relies on dead technology


Fear of the name of a thing increases the power of a thing in your 
life.

William

-Original Message
-From: [EMAIL PROTECTED]
-Date: Oct 16, 2007 11:26 
-To: CF-Talkcf-talk@houseoffusion.com
-Subj: RE: SPAM -  SYS-Con relies on quot;deadquot; technology
-
-As penance I will start the Boycott magazine publisher who shall not 
be
-named movement :)
-
-sas
-
--- 
-Scott Stewart
-ColdFusion Developer
- 
-SSTWebworks
-4405 Oakshyre Way
-Raleigh, NC. 27616
-(703) 220-2835
- 
-http://www.sstwebworks.com -http://www.linkedin.com/in/sstwebworks
- 
-
--Original Message-
-From: Simon Horwith [mailto:[EMAIL PROTECTED] 
-Sent: Tuesday, October 16, 2007 1:01 PM
-To: CF-Talk
-Subject: Re: SPAM - SYS-Con relies on dead technology
-
-reminder - links to sys-con pages not only in blog entries and web 
pages 
-but also in e-mails to HoF mail lists (whose threads are web-
accessible) 
-benefit Sys-Con.  Unless you disagree with the statement that Sys-Con 
is 
-no friend of the F community (and I think we all agree on this), 
let's 
-try to not link to them.  If you want to provide a sys-con URL in a 
-post, why not replace www. with www-dot-?  Anyone inclined on 
-reading the article/page will figure it out.  Do note that though 
this 
-tactic will reduce their search engine placement, ANY visits to 
their 
-sites helps their traffic, and their traffic numbers are a selling 
point 
-to their advertisers/sponsors.
-
-~Simon
-
-Simon Horwith
-Adobe Community Expert
-Adobe Certified Master Instructor
-http://www.horwith.com
-
-
-
-
-Scott Stewart wrote:
- removed to combat sys-con profitability
-  
-
- I guess Silverlight can't do email
-
-  
-
- hehehhehehehe
-
-  
-
-  
-
-  
-
-   
-
-
-
-
-




~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291258
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Ian Skinner
But seriously, what's with all the hatred of Sys-Con? Did I miss something?

Did you miss all the hullabaloo about Sys-Con dropping the ColdFusion 
Developers Journal in place of a Microsoft Silverlight journal because CF is 
dead?


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291263
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


sort dataset in spry

2007-10-16 Thread erik tom
I have form with drop down and I need to be able to sort by clicking up and 
down buttons. I did that in JS but how about spry 
script type=text/javascript
var dsProducts = new 
Spry.Data.XMLDataSet(category.cfm,categories/category,{ useCache: false});

var dsProductFeatures = new 
Spry.Data.NestedXMLDataSet(dsProducts, features/feature);

/script 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291262
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Scott Stewart
Boycott Syscon

http://www.sstwebworks.com/blog/index.cfm/2007/10/16/Boycotting-SysCon


-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
4405 Oakshyre Way
Raleigh, NC. 27616
(703) 220-2835
 
http://www.sstwebworks.com
http://www.linkedin.com/in/sstwebworks
 
Boycott Sys-Con
 
-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 2:26 PM
To: CF-Talk
Subject: RE: SPAM - SYS-Con relies on dead technology

As penance I will start the Boycott magazine publisher who shall not be
named movement :)

sas

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
4405 Oakshyre Way
Raleigh, NC. 27616
(703) 220-2835
 
http://www.sstwebworks.com
http://www.linkedin.com/in/sstwebworks
 

-Original Message-
From: Simon Horwith [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 1:01 PM
To: CF-Talk
Subject: Re: SPAM - SYS-Con relies on dead technology

reminder - links to sys-con pages not only in blog entries and web pages 
but also in e-mails to HoF mail lists (whose threads are web-accessible) 
benefit Sys-Con.  Unless you disagree with the statement that Sys-Con is 
no friend of the F community (and I think we all agree on this), let's 
try to not link to them.  If you want to provide a sys-con URL in a 
post, why not replace www. with www-dot-?  Anyone inclined on 
reading the article/page will figure it out.  Do note that though this 
tactic will reduce their search engine placement, ANY visits to their 
sites helps their traffic, and their traffic numbers are a selling point 
to their advertisers/sponsors.

~Simon

Simon Horwith
Adobe Community Expert
Adobe Certified Master Instructor
http://www.horwith.com




Scott Stewart wrote:
 removed to combat sys-con profitability
  

 I guess Silverlight can't do email

  

 hehehhehehehe

  

  

  

   






~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291264
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Webservice Initialization Failure?

2007-10-16 Thread Richard Walters
Hi list, 

I am making a very uncomplicated cfinvoke call to a webservice to get some 
information about a visitor.  The code works absolutely perfectly in 
milliseconds every time except for the very first time I run the code after a 
server restart.  

What is more puzzling is that even though I am wrapping the code with a 
cftry/cfcatch and setting a timeout on the cfinvoke of 4 seconds but I can't 
seem to get the code block to stop executing the webservice.  On that initial 
call the page will run until it reaches the coldfusion timeout which is 5 min.

More, if I interrupt the request, the next request starts over from scratch.  
The page must complete to an error, specifically The request has exceeded the 
allowable time limit Tag before the code will work.  Once I get the error, 
every other request works perfectly.

A sample of the code is below, and I am experiencing the error in the following 
systems:  

Server Product  ColdFusion MX  
Version  7,0,2,142559
Edition  Enterprise

Server Product  ColdFusion MX  
Version  7,0,2,142559
Edition  Developer

Here is a sample of the code.  I do not see any of the expected abort outputs, 
instead I will get the time limit error above.

cftry

cfinvoke 
webservice = resourceserver 
method = getProperties 
returnvariable = resultStructure
timeout = 4
cfinvokeargument name = application value=1/
cfinvokeargument name = username value=#pUsername#/
/cfinvoke 

cfdump var=#resultstructure#cfabort

cfcatch type=any
display error inside catch cfabort
/cfcatch

/cftry

display error after cftry cfabort 


Good Fortune,
Rick Walters


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291269
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


sort dataset in spry

2007-10-16 Thread erik tom
I have a drop down menu and I need to be able to sort item in that drop down 
menu by clicking up and down buttons and store that changes into a dataabse 

 script type=text/javascript
var dsProducts = new 
Spry.Data.XMLDataSet(category.cfm,categories/category,{ useCache: false});

var dsProductFeatures = new 
Spry.Data.NestedXMLDataSet(dsProducts, features/feature);

/script 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291266
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Creating replicated sites with coldfusion

2007-10-16 Thread Michael E. Carluen
 I could be wrong, but I don't think IIS supports wildcard sites.  Which
 is too bad, because that's actually a very elegant solution.

Hi Ben, Yes, you can.  But from my experience, it has to be on a 'dedicated'
IP address. By dedicated, I mean- there should be no other sites/domains
sharing the IP address, except for the domain using the wildcard.  (I could
be wrong, and if so, I'm all ears- anyone)






 -Original Message-
 From: Ben Doom [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 16, 2007 12:14 PM
 To: CF-Talk
 Subject: Re: Creating replicated sites with coldfusion
 
 Jessica Kennedy wrote:
  Jessica:
  Also, have you considered using wildcard DNS? As in
  http://jessica.sample.com
  You can do that by simply adding a * A host entry in your DNS manager.
  Michael
 
  This sounds like a good Idea... what would be the proper syntax to use
 to get the username field if I went with a wildcard variable?  I don't
 have a lot of experience with CGI variables, which seems to be what I will
 need to do this.
 
 I could be wrong, but I don't think IIS supports wildcard sites.  Which
 is too bad, because that's actually a very elegant solution.
 
  Also, I will be using an IIS server, not apache, and I don't think there
 is a mod_rewrite equivalent with IIS, hopefully somebody can prove me
 wrong though!
 
 I've never used one, but there were a couple brought up on the list a
 while back.  Both were for-pay, I think, but very cheap IIRC.
 
 --Ben Doom
 
 
 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291267
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flex problem with Coldfusion 8

2007-10-16 Thread Ian Skinner
Do you have a Flex Value Object|Bean|whatever defined for the records 
you are returning?

I am by no means an export here, but I think this is how to handle 
this.  You would define the desired data types of all the properties of 
the bean for this data object.  Then cast|assign|force the data returned 
from the CF call into this bean.  Then Flex will no the numbers are 
numbers not strings.

Hopefully this gives you an idea you can work with since I can not give 
you a detailed step by step example of how to actually do all these 
steps and the various ins and outs that maybe involved.

HTH

Ian

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291265
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Flash form (Gabriel Robichaud)

2007-10-16 Thread Jason Durham
Flash forms play by different rules in many cases.  I doubt you can loop
through a recordset and dynamically generate a Flash form.  Any reason you
aren't staying with an HTML form?



-Original Message-
From: Gabriel Robichaud [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 1:53 PM
To: CF-Talk
Subject: Re: Creating replicated sites with coldfusion

Hello everyone

I have a bit of code and I am a little confused as to why, when i change the
format attribute to =flash, the whole thing goes crazy. All the values in
my text field are identical to the first row returned by the query.
However, HTML format works quite well with expected output.

Any input would be great. Code is bellow. I am working off Windows XP. CF8
Dev edition.



cfoutput
cfloop query=getLabels

cfform format=html  id=mod#theID#
action=index.cfm?view=labels#session.URLToken#
method=post skin=haloSilver width=310
   cfformgroup type=horizontal
 cfinput type=hidden name=ID value=#theID#
 cfformitem width=25 type=html#theLabelID#/cfformitem
 cfinput width=170 type=text value=#theContent# name=label
 cfinput width=75 type=submit value=Update name=submit
   /cfformgroup
 /cfform


/cfloop
/CFOUTPUT




~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291268
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


delivering electric goods after payment

2007-10-16 Thread j s
Looking for options for either a method or service to deliver electric goods 
once the payment was confirmed by a payment gateway.  Any advice would greatly 
be appreciated.

Thanks in advance. 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291270
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Billy Cox
I knew that CFDJ was gone, but I didn't sense any grief at its demise.



-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 2:24 PM
To: CF-Talk
Subject: Re: SPAM - SYS-Con relies on dead technology


But seriously, what's with all the hatred of Sys-Con? Did I miss something?

Did you miss all the hullabaloo about Sys-Con dropping the ColdFusion
Developers Journal in place of a Microsoft Silverlight journal because CF is
dead?




~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291272
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sort dataset in spry

2007-10-16 Thread Massimo Foti
Spry offers pretty good sorting capabilities:
http://labs.adobe.com/technologies/spry/samples/data_region/SortSample.html

If you would like to give Spry a try, I suggest you read this:
http://labs.adobe.com/technologies/spry/articles/data_set_overview/index.html

Everything else you can skip or read at a later stage, but the doc above is 
really important to understand Spry's fundamentals


Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com





~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291271
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Ian Skinner
I knew that CFDJ was gone, but I didn't sense any grief at its demise.

No grief at its demise.  But a lot of discussion on Sys-Con's public statements 
over the reasons behind their decision as well as how they apparently handled 
the matter internally with the CFDJ editorial staff.




~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291274
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: sort dataset in spry

2007-10-16 Thread Raymond Camden
Did you read the Spry docs on how to apply sorts to datasets?

On 10/16/07, erik  tom [EMAIL PROTECTED] wrote:
 I have form with drop down and I need to be able to sort by clicking up and 
 down buttons. I did that in JS but how about spry
 script type=text/javascript
 var dsProducts = new 
 Spry.Data.XMLDataSet(category.cfm,categories/category,{ useCache: false});

 var dsProductFeatures = new 
 Spry.Data.NestedXMLDataSet(dsProducts, features/feature);

 /script

 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291273
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPAM - SYS-Con relies on dead technology

2007-10-16 Thread Simon Horwith
for many it was good riddance, for many others (and, in some way, for us 
all) it was a sad loss... but the truth is that while printed 
periodicals lend some credibility to a given technology, their 
usefulness in this day and age is definitely questionable... and whether 
or not we need a magazine that's run by a publisher with no journalistic 
integrity, no sense of the community they serve, and no loyalty to 
anything but the almighty dollar is, in my opinion, a no brainer.

Wow, did that sound at all bitter?

~Simon

Simon Horwith
Adobe Community Expert
Adobe Certified Master Instructor
http://www.horwith.com




Billy Cox wrote:
 I knew that CFDJ was gone, but I didn't sense any grief at its demise.



 -Original Message-
 From: Ian Skinner [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 16, 2007 2:24 PM
 To: CF-Talk
 Subject: Re: SPAM - SYS-Con relies on dead technology


 But seriously, what's with all the hatred of Sys-Con? Did I miss something?

 Did you miss all the hullabaloo about Sys-Con dropping the ColdFusion
 Developers Journal in place of a Microsoft Silverlight journal because CF is
 dead?




 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291276
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


  1   2   >