MVC Services Gateways

2010-11-15 Thread Clint Willard

Wondering if these checks belong in a gateway, I'll keep it simple:
Assuming I want my service to update a user object only if there's no user 
using the username or email provided by the submitted form.

UserService.cfc
public void function updateUser(username,password,email){
var userid = 0;
userid = usersGateway.getUserByUsername(username);
if(userid eq 0){
userid = usersGateway.getUserByEmail(email);
}
if(userid eq 0){
oUser.save(username,password,email);
}
}

UsersGateway.cfc
public any function getUserByUsername(){
var userid = 0;
//query db: select userid from users where username = #username#
if(qRead.recordcount gt 0){
userid = qRead.userid;
}
return userid;
}
//getUserByEmail() same as above for email query, returns userid = 0 if not 
found.

Basically what I'm fishing for is, do I use the gateway for this type of 
business logic? Considering it is a DB type logic I'm assuming it should stay 
in the data layer, ie Gateway, DAO etc. I wouldn't want my service to do a 
query would I? It just seems to specific and that these kinds of small 
functions could end up making a heavy cfc. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339257
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


question about javascript

2010-01-04 Thread Clint Tredway

I do not know where else to ask this so I am asking here... can javascript
manipulate png files like action script can? ie - adding glows, change the
color?

-- 
“When you choose hope, anything is possible.”
-Christopher Reeve

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329398
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: question about javascript

2010-01-04 Thread Clint Tredway

cool, that may work. actionscript doesn't change the file when changing the
color, just applies a transform which happens to be color.

I am thinking of converting this
http://www.fastlane-grpahix.com/designerinto a javascript app instead
of Flex.

On Mon, Jan 4, 2010 at 2:46 PM, Andy Matthews li...@commadelimited.comwrote:


 Javascript cannot change the file itself, but it can apply filters
 client-side to an image using CSS.


 andy

 -Original Message-
 From: Clint Tredway [mailto:grum...@gmail.com]
 Sent: Monday, January 04, 2010 2:43 PM
 To: cf-talk
 Subject: question about javascript


 I do not know where else to ask this so I am asking here... can javascript
 manipulate png files like action script can? ie - adding glows, change the
 color?

 --
 When you choose hope, anything is possible.
 -Christopher Reeve



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329400
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: integrating with quick books merchant services

2009-07-29 Thread Clint Tredway

thanks David. I appreciate it.

On Tue, Jul 28, 2009 at 2:23 PM, David McGuigan davidmcgui...@gmail.comwrote:


!--- Prep request ---
cfset qAppId = XXX
cfset qAppLogin = whatev.yourdomain.com
cfset qTimeStamp =
 #dateformat(now(),-mm-dd)#T#timeformat(now(),HH:mm:ss)#
cfset qConnTicket = XX

cfsavecontent variable=QBMSXML?xml
 version=1.0?
?qbmsxml version=2.0?
QBMSXML
SignonMsgsRq
SignonDesktopRq

  ClientDateTime#qTimeStamp#/ClientDateTime

  ApplicationLogin#qAppLogin#/ApplicationLogin

  ConnectionTicket#qConnTicket#/ConnectionTicket
LanguageEnglish/Language
AppID#qAppId#/AppID
AppVer1.0/AppVer
/SignonDesktopRq
/SignonMsgsRq
QBMSXMLMsgsRq
CustomerCreditCardChargeRq

  TransRequestID#CreateUUID()#/TransRequestID

  CreditCardNumber#form.ccNumber#/CreditCardNumber

  ExpirationMonth#form.ccMonth#/ExpirationMonth

  ExpirationYear#form.ccYear#/ExpirationYear

  IsCardPresentfalse/IsCardPresent
Amount#numberformat( (
 form.quantity * form.price ),_.99)#/Amount

  NameOnCard#form.ccName#/NameOnCard

  CreditCardAddress#yourCodeThatAssemblesTheAddress( form
 )#/CreditCardAddress

  CreditCardPostalCode#form.contactZipcode#/CreditCardPostalCode

  SalesTaxAmount0.00/SalesTaxAmount

  CardSecurityCode#form.ccCCD#/CardSecurityCode
   /CustomerCreditCardChargeRq
/QBMSXMLMsgsRq
/QBMSXML
/cfsavecontent

!--- Submit request to Quickbooks ---
cfhttp url=
 https://merchantaccount.quickbooks.com/j/AppGateway; method=post
 port=443
cfhttpparam type=Header
 name=Accept-Encoding value=*
cfhttpparam type=Header name=TE
 value=deflate;q=0
cfhttpparam type=header name=content-type
 value=application/x-qbmsxml /
cfhttpparam type=header name=content-length
 value=#len(QBMSXML)# /
cfhttpparam type=body name=requestXML
 encoded=no value=#QBMSXML# /
/cfhttp

!--- Response / debugging ---
cfset QBMSReturn = xmlParse(cfhttp.filecontent) /




 On Tue, Jul 28, 2009 at 1:12 PM, Clint Tredway grum...@gmail.com wrote:

 
  Has anyone been able to integrate with QBMS using CF? I have looked
 around
  some on different forums and the last time someone posted a solution was
  over a year ago. I really need help in finding out how to do this pretty
  quickly. Any help is appreciated.
 
  Thanks!
 
  --
  “When you choose hope, anything is possible.”
  -Christopher Reeve
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325087
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


integrating with quick books merchant services

2009-07-28 Thread Clint Tredway

Has anyone been able to integrate with QBMS using CF? I have looked around
some on different forums and the last time someone posted a solution was
over a year ago. I really need help in finding out how to do this pretty
quickly. Any help is appreciated.

Thanks!

-- 
“When you choose hope, anything is possible.”
-Christopher Reeve

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325051
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Filling In Tax Forms using CF

2006-10-24 Thread Clint Rauscher
Has anyone ever tried to fill in a Tax Form PDF using ColdFusion?

I have created PDFs using CFDocument but of course that just prints onto a 
blank background. I need to either create a PDF of the tax form with all the 
fields filled in from a form or print onto different Tax Forms.

Are there any cf_tags that exist that do this or am i just going to have to 
just try to line everything up to print onto an existing form?

Thanks,

Clint
[EMAIL PROTECTED]

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CFEclipse and FTP (was: MM and CFEclipse)

2005-08-02 Thread Clint Tredway
CFE now has FTP capability.

On 8/2/05, Jordan Michaels [EMAIL PROTECTED] wrote:
 Connie DeCinko wrote:
 
 How are CFE users uploading files to their production sites?  I really like
 the ability in DW to push and pull files between development and production
 without having to drop out to an FTP program.  I don't recall having this
 ability in CFE unless its recently been added.
 
 
 Constanty Connie DeCinko III
 Web Architect, Webmaster, Web Developer
 Lone Jet Enterprises
 Glendale, Arizona
 www.LoneJet.com
 
 
 
 I completely agree with, and second this question. I would be a
 CFEclipse user if it weren't for this sole feature.
 
 --
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 [EMAIL PROTECTED]
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213490
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ANNOUNCE: CFFM 1.1 Released

2005-07-28 Thread Clint Tredway
Also, it may seem bad to upload exe, bats, etc.. but his app is a FILE
MANANGEMENT system which most of them will allow these kinds of files
into the system...

On 7/28/05, Tangorre, Michael [EMAIL PROTECTED] wrote:
  From: Robertson-Ravo, Neil (RX)
  My favourite is the way I could upload and .exe and a .bat file..
 
 Nice tact. How about you email the original poster off-list with your
 feeback/concerns/questions. Everytime someone posts a tool on this list
 people seem to go out of their way to act like complete asses.
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213077
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFIF logic problem

2005-07-20 Thread Clint Tredway
Why not use a switch/case to catch that url param and then inside case
3 put the logic you  need for that specific incident.

my 2 cents

On 7/20/05, Ian Vaughan [EMAIL PROTECTED] wrote:
 However
 
 The cfif url.no IS 3 etc displays dynamic content out of the database
 based on the url.no=.
 
 So for example
 
  http://sitename/test.cfm?no=3
 
 Would bring back the content ' NEWS'
 
 While
 
  http://sitename/test.cfm?no=2
 
 Would bring back the content 'BUSINESS'
 
 
 So I need the cfif statement to display the content as normal if the
 url.no is 1 or 2 or 4 etc..
 
 
 But if it is url.no=3 then apply the logic so that if a user has not
 logged in and they do not have a session.permission is admin then use
 cflocation back to the index.cfm page
 
 -Original Message-
 From: Larry Lyons [mailto:[EMAIL PROTECTED]
 Sent: 20 July 2005 15:01
 To: CF-Talk
 Subject: CFIF logic problem
 
 Hi
 
 
 Is my logic correct in the code below ?
 
 
 cfif url.no IS 3
 cflocation url=index.cfm
 cfelseif (url.no IS 3) and (session.permission is admin)
 
 Page Content
 
 cfelse
 /cfif
 
 What I want is if the url is http://sitename/test.cfm?no=3
 
 Then it will transfer back to the index.cfm page.
 
 However if the url is http://sitename/test.cfm?no=3 and the
 session.permission has been set to 'admin' from the user login then the
 
 page content displays.
 
 At present however the page keeps redirecting to the index.cfm page.
 
 
 You may want to break up the CFIF into something like this:
 
 cfif url.no IS 3
  cfif session.permission is admin
   Page Content
  cfelse
   cflocation url=index.cfm
  /cfif
 /cfif
 
 hth,
 
 larry
 
 --
 Larry C. Lyons
 Web Analyst
 BEI Resources
 American Type Culture Collection
 email: llyons(at)atcc(dot)org
 tel: 703.365.2700.2678
 --
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212316
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Query error

2005-07-15 Thread Clint Tredway
If you have that table open in design view or open at all in Access (I
think), you will get this error.

On 7/15/05, Merrill, Jason [EMAIL PROTECTED] wrote:
 can you post a more informative error message?
 
 OK - I put in some pseudo variables instead of using the ones from Flash
 Remoting and got this when I call the CFC from a CFM:
 
 
 --
 Error Executing Database Query.
 [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC
 Microsoft Access Driver] The table 'Lessons' is already opened
 exclusively by another user, or it is already open through the user
 interface and cannot be manipulated programmatically.
 
 The error occurred in
 C:\CFusionMX7\wwwroot\com\macromedia\test\updateDatabase_2.cfc: line 11
 Called from
 C:\CFusionMX7\wwwroot\com\macromedia\test\invokeUpdateDB2CFC.cfm: line 2
 Called from
 C:\CFusionMX7\wwwroot\com\macromedia\test\updateDatabase_2.cfc: line 11
 Called from
 C:\CFusionMX7\wwwroot\com\macromedia\test\invokeUpdateDB2CFC.cfm: line 2
 
 9 : UPDATE Lessons
 10 :SET Lesson = cfqueryparam
 cfsqltype=CF_SQL_VARCHAR value=#lesson#
 11 :WHERE ID = cfqueryparam
 cfsqltype=CF_SQL_INTEGER value=#row#
 12 : /cfquery
 13 : cfreturn #lesson#
 
 --
 
 Not sure how its being used by someone else, this is all being done
 locally on my workstation and only have ColdFusion accessing the access
 database.  I am also only using the Developer edition of ColdFusion MX
 7, but that shouldn't matter because you get 2 IP addresses to connect
 anyway, right?
 
 What's going on here?
 
 Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com
 
 
 NOTICE:
 This message is for the designated recipient only and may contain privileged 
 or confidential information. If you have received it in error, please notify 
 the sender immediately and delete the original. Any other use of this e-mail 
 by you is prohibited.
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212000
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Playing with Flash Data Access

2005-07-14 Thread Clint Tredway
I have to ask... why not use Flash Remoting, much faster than using
web services...

On 7/14/05, SStewart [EMAIL PROTECTED] wrote:
 I'm just in the beginning stages of playing with Flash as a UI builder. I've 
 set up a web services datasource and a data grid, when I run the data grid I 
 get the following errors. There doesn't seem to be anyplace to correct them
 
 ideas/
 
 
 **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 6: '}' or ',' 
 expected
  {component: application.data.Concrete Field 
 ReportsReceiveWebServiceConnector, property: results, event: [result]},
 
 **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 7: '}' or ',' 
 expected
  {component: application.data.Concrete Field ReportsDataSet, property: 
 dataProvider},
 
 **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 9: Syntax error.
  false);
 
 Total ActionScript Errors: 3 Reported Errors: 3
 
 Error opening URL http://localhost/docwf/navigation/qry_RptsbyStatusDate.cfc
 
 
 
 
 Scott A. Stewart,
 Web Application Developer
 
 Engineering Consulting Services, Ltd. (ECS)
 14026 Thunderbolt Place, Suite 300
 Chantilly, VA 20151
 Phone: (703) 995-1737
 Fax: (703) 834-5527
 
 Many thousands of years ago, a blue faced Pict stepped on a bloated sheep 
 carcass... and thus the Pipes were born
 
  the Scottish Rogues
 
 
 
 
 --
 No virus found in this outgoing message.
 Checked by AVG Anti-Virus.
 Version: 7.0.323 / Virus Database: 267.8.15/49 - Release Date: 07/14/2005
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211910
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Playing with Flash Data Access

2005-07-14 Thread Clint Tredway
depending on what version of CF, the gateway is auto-installed... 

I encourage you to look into remoting over using web services

On 7/14/05, SStewart [EMAIL PROTECTED] wrote:
 Because I'm just starting to dig into this. and I didn't set the servers 
 up so I'm not sure if remoting is even installed...
 
 sas
 
 Scott A. Stewart,
 Web Application Developer
 
 Engineering Consulting Services, Ltd. (ECS)
 14026 Thunderbolt Place, Suite 300
 Chantilly, VA 20151
 Phone: (703) 995-1737
 Fax: (703) 834-5527
 
 Many thousands of years ago, a blue faced Pict stepped on a bloated sheep 
 carcass... and thus the Pipes were born
 
  the Scottish Rogues
 
 
 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 14, 2005 04:01 pm
 To: CF-Talk
 Subject: Re: Playing with Flash Data Access
 Importance: Low
 
 I have to ask... why not use Flash Remoting, much faster than using
 web services...
 
 On 7/14/05, SStewart [EMAIL PROTECTED] wrote:
  I'm just in the beginning stages of playing with Flash as a UI builder. 
  I've set up a web services datasource and a data grid, when I run the data 
  grid I get the following errors. There doesn't seem to be anyplace to 
  correct them
 
  ideas/
 
 
  **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 6: '}' or ',' 
  expected
   {component: application.data.Concrete Field 
  ReportsReceiveWebServiceConnector, property: results, event: [result]},
 
  **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 7: '}' or ',' 
  expected
   {component: application.data.Concrete Field ReportsDataSet, property: 
  dataProvider},
 
  **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame=1:Line 9: Syntax 
  error.
   false);
 
  Total ActionScript Errors: 3 Reported Errors: 3
 
  Error opening URL http://localhost/docwf/navigation/qry_RptsbyStatusDate.cfc
 
 
 
 
  Scott A. Stewart,
  Web Application Developer
 
  Engineering Consulting Services, Ltd. (ECS)
  14026 Thunderbolt Place, Suite 300
  Chantilly, VA 20151
  Phone: (703) 995-1737
  Fax: (703) 834-5527
 
  Many thousands of years ago, a blue faced Pict stepped on a bloated sheep 
  carcass... and thus the Pipes were born
 
   the Scottish Rogues
 
 
 
 
  --
  No virus found in this outgoing message.
  Checked by AVG Anti-Virus.
  Version: 7.0.323 / Virus Database: 267.8.15/49 - Release Date: 07/14/2005
 
 
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211916
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Not to start a flame war.....

2005-07-13 Thread Clint Tredway
Here is how I see it.

If the majority of your developers know CF, then stick with that. It
costs more (both time  money) to learn .Net than it does to learn CF.
 .Net may be free to put on the server, but training and tools (VS
Studio) both cost alot more than tools  training for .Net.

my 2cents

On 7/13/05, Ian Skinner [EMAIL PROTECTED] wrote:
 quote
 (cfhttp, cffile, cfftp, flash forms, cfchart, cfdump, cfreport, cfdocument, 
 flash remoting, omg, where to stop? ).
 /quote
 
 Is it fair and unbiased to say that it is easier to do these things in 
 ColdFusion then ASP.NET?  The Ben Forta article that was referenced earlier 
 gave some good examples.  I particlularly liked the consuming a webservice.  
 But was somewhat disapointed that he just left the ASP.NET version as 
 difficulit without providing a code example.  Anybody have a such a thing? 
 Or similar comparisons for these other features.
 
 This is information is what I was originally looking for.  Other references 
 and opinions have given me other ideas as well and this thread has been very 
 helpful and relatively flame free so far.
 
 The position I'm asked to defened is why should we spend the organizations 
 very scarce dollars on ColdFusion rather then going all ASP.NET?  And I'm 
 basically looking for support for the arguments such as RAD, Varity, these 
 other built in functionalities that are not as simple in ASP.NET
 
 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA
 
 C code. C code run. Run code run. Please!
 - Cynthia Dunning
 
 -Original Message-
 From: Nathan Strutz [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 13, 2005 12:37 PM
 To: CF-Talk
 Subject: Re: Not to start a flame war.
 
 Technically, that's not the right comparison.
 
 ..NET vs Java makes more sense, as they are both comparable runtime
 platforms with their own strengths and weaknesses.
 
 I think you mean the difference between ASP.NET and ColdFusion.
 
 It's not easy to compile a list of everything each platform can do that
 the other can't, and I have no doubts that whatever you find will be
 somewhat one-sided in either direction.
 
 If you have enough time, you can build anything with either platform,
 verity in .NET would be a real difficulty, as well as things like the
 SMS gateway, and a lot of the shortcuts CF gives you (cfhttp, cffile,
 cfftp, flash forms, cfchart, cfdump, cfreport, cfdocument, flash
 remoting, omg, where to stop? ). On the other hand, you'd have to work
 hard and write a fair amount of Java to do a lot of the things you are
 forced to do in .NET, most of them relating to speed and not having to
 go out of cf's box (more powerful io, image processing, integration with
 windows, collections, buffered strings, .net remoting).
 
 Most of the same arguments can be made for cf vs j2ee, as Java is every
 bit as capable as .NET. Through the magic of createObject(java), you
 can do everything asp.net can do using java.
 
 Once you start writing asp.net or jsp  servlets, it opens your mind to
 more things you can do with the platform, like integrating java into CF,
 finding easier solutions through external objects to some problems you
 may have while using CF, and building desktop apps  utilities for site
 management or whatever.
 
 
 -nathan strutz
 
 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Not to start a flame war.....

2005-07-13 Thread Clint Tredway
since i mainly use Eclipse for all my dev (as, cf, php, etc) my tools
are free :)

Figure spending 1-2k per employee on training or more for .Net

On 7/13/05, Ian Skinner [EMAIL PROTECTED] wrote:
 Well, unless you can get a non-profit/education break for Visual Basic 
 Studio.  We can get either IDE for about the same amount.
 
 Training is an issue, but how does that play out long term.  Assuming 
 turnover will be replaced with candidates versed in the chosen platform.  How 
 many upgrades can one get for the price of train current staff to ASP.NET?
 
 
 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA
 
 C code. C code run. Run code run. Please!
 - Cynthia Dunning
 
 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 13, 2005 2:07 PM
 To: CF-Talk
 Subject: Re: Not to start a flame war.
 
 Here is how I see it.
 
 If the majority of your developers know CF, then stick with that. It
 costs more (both time  money) to learn .Net than it does to learn CF.
  .Net may be free to put on the server, but training and tools (VS
 Studio) both cost alot more than tools  training for .Net.
 
 my 2cents
 
 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Not to start a flame war.....

2005-07-13 Thread Clint Tredway
thats a one time cost to get up to speed, but there is always training
as things always change and therefore time/money (arent they the same
these days) will need to be spent to stay up to speed.

On 7/13/05, Ian Skinner [EMAIL PROTECTED] wrote:
 Would you consider that a one time expense or would there be any on-going 
 aspect of it?
 
 
 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA
 
 C code. C code run. Run code run. Please!
 - Cynthia Dunning
 
 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 13, 2005 2:31 PM
 To: CF-Talk
 Subject: Re: Not to start a flame war.
 
 since i mainly use Eclipse for all my dev (as, cf, php, etc) my tools
 are free :)
 
 Figure spending 1-2k per employee on training or more for .Net
 
 On 7/13/05, Ian Skinner [EMAIL PROTECTED] wrote:
  Well, unless you can get a non-profit/education break for Visual Basic
 Studio.  We can get either IDE for about the same amount.
 
  Training is an issue, but how does that play out long term.  Assuming
 turnover will be replaced with candidates versed in the chosen platform.
 How many upgrades can one get for the price of train current staff to
 ASP.NET?
 
 
  --
  Ian Skinner
  Web Programmer
  BloodSource
  www.BloodSource.org
  Sacramento, CA
 
  C code. C code run. Run code run. Please!
  - Cynthia Dunning
 
  -Original Message-
  From: Clint Tredway [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, July 13, 2005 2:07 PM
  To: CF-Talk
  Subject: Re: Not to start a flame war.
  
  Here is how I see it.
  
  If the majority of your developers know CF, then stick with that.
 It
  costs more (both time  money) to learn .Net than it does to learn
 CF.
   .Net may be free to put on the server, but training and tools (VS
  Studio) both cost alot more than tools  training for .Net.
  
  my 2cents
 
  Confidentiality Notice:  This message including any
  attachments is for the sole use of the intended
  recipient(s) and may contain confidential and privileged
  information. Any unauthorized review, use, disclosure or
  distribution is prohibited. If you are not the
  intended recipient, please contact the sender and
  delete any copies of this message.
 
 
 
 
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211828
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Clint Tredway
according to Alexa the top five are

1. Yahoo
2. MSN
3. Google
4. Passport.net
5. Ebay

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210728
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Clint Tredway
i just heard of it the other day... so it is possible for some not to
have heard of it...

On 6/28/05, Rey Bango [EMAIL PROTECTED] wrote:
 hehe. I truly hope you're joking Bryan.
 
 Rey...
 
 Bryan Stevenson wrote:
  Wowmyspace.com must be huge.hm...no waitI've never heard of
  it?? ;-)
 
  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
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210745
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Fw: Your recent email to us

2005-06-28 Thread Clint Tredway
I got that too

On 6/28/05, Bryan Stevenson [EMAIL PROTECTED] wrote:
 Anybody else getting this?  I seem to get one everytime I post to CF-TALK.
 
 Goldman Sachs JBWere's electronic mail policy prohibits the receipt or 
 distribution of  material which may be regarded as offensive or spam mail. If 
 the message is urgent please review the content for any language or material 
 which may be offensive and resend the message or contact the intended 
 recipient by telephone.
 
 
 Message Name: B42c1723a.0001.0005.mml
 
 
 
 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
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sql Server CF, getting field types

2005-06-27 Thread Clint Tredway
try this
execute sp_columns @Table_Name = '#form.table#'

On 6/27/05, Greg Johnson [EMAIL PROTECTED] wrote:
 Long story short, we need to move data from one database to another on a
 daily basis.  Problem is that one of the databases is out of our control
 and the structure is changed regularly.  About the only thing we can
 count on are the table names.
 
 We are talking 100s of fields so what we want to do is to get the
 database to tell us not only what fields are in a table, but what type
 of field it is, len, etc.  This way we can build code that adapats
 automaticaly to changes.
 
 Is there a command we can send via a cfquery that not only returns the
 nomal comma delimited list of field names, but also what type they are
 (nvarchar, int, bit, etc.)
 
 Thanks
 
 --
 Greg Johnson
 Owner  Lead Technician
 [EMAIL PROTECTED]
 
 Techno-Fix-It
 Filling the Gap Between the Store and the Repair Shop
 --
 www.technofixit.com
 Phone:(919)-371-1476
 Fax:(919)-882-9804
 P.O. Box 1094
 Morrisville, N.C. 27560
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210671
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 Flash Remoting

2005-06-15 Thread Clint Tredway
not to be picky, but that app is a flex app and not just flash remoting...


On 6/15/05, Ben Forta [EMAIL PROTECTED] wrote:
 Sure have. That's how this page talks to CF:
 http://www.forta.com/cf/isp/
 
 --- Ben
 
 
 -Original Message-
 From: Aldon Moore [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 15, 2005 2:16 PM
 To: CF-Talk
 Subject: CF7 Flash Remoting
 
 Has any one been able to connect to Flash Remoting in CFMX 7?
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209590
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF7 Flash Remoting

2005-06-15 Thread Clint Tredway
true, but in my exp, flash remoting is different going from flex as
opposed straight from flash... that was the basis for my comment.

On 6/15/05, Ben Forta [EMAIL PROTECTED] wrote:
 Um, no, not to be picky either ... it is Flash accessing a CFC in ColdFusion
 MX 7 via AMF (Flash Remoting). The question was Has any one been able to
 connect to Flash Remoting in CFMX 7?, and that is exactly what that is
 doing. ;-)
 
 --- Ben
 
 
 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 15, 2005 2:31 PM
 To: CF-Talk
 Subject: Re: CF7 Flash Remoting
 
 not to be picky, but that app is a flex app and not just flash remoting...
 
 
 On 6/15/05, Ben Forta [EMAIL PROTECTED] wrote:
  Sure have. That's how this page talks to CF:
  http://www.forta.com/cf/isp/
 
  --- Ben
 
 
  -Original Message-
  From: Aldon Moore [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, June 15, 2005 2:16 PM
  To: CF-Talk
  Subject: CF7 Flash Remoting
 
  Has any one been able to connect to Flash Remoting in CFMX 7?
 
 
 
 
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:209596
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Man, this is so OT...

2005-05-13 Thread Clint Tredway
white under, black over or just black

On 5/13/05, Will Tomlinson [EMAIL PROTECTED] wrote:
 Sweeet! Keep it comin guys. I really appreciate it!
 
 Will
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206643
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: I truly hate Ben Forta

2005-05-11 Thread Clint Tredway
the main reason I buy books is for when I am not online and need a reference... 

On 5/11/05, Ray Champagne [EMAIL PROTECTED] wrote:
 Yea, those books just don't stand up to the pressure.  All three of my
 copies (4.0, 5.0, MX) are in quite horrible condition. :)
 
 Micha Schopman wrote:
  I was astonished; he did not deliver a Ben Forta look-alike fake beard
  along with the book. Without kidding, his books are THE standard for
  learning ColdFusion. The only negative thing I have, after I opened the
  book two pages directly fell out of it. No problem though, fixed it with
  some construction kit I just used for fixing a vase (thank you cats).
 
  Micha Schopman
  Project Manager
 
  Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
  Tel 033-4535377, Fax 033-4535388
  KvK Amersfoort 39081679, Rabo 39.48.05.380
 
  
  
  -
  Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
  de interactie met uw doelgroep.
  Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
  informatie zie www.modernmedia.nl
  
  
  -
  -Original Message-
  From: Calvin Ward [mailto:[EMAIL PROTECTED]
  Sent: woensdag 11 mei 2005 14:19
  To: CF-Talk
  Subject: RE: I truly hate Ben Forta
 
  Not always, and also there's often some neat gems of capabilities hidden
  there.
 
  For example the one for CFMX 6 had a nifty regular expression tester for
  CFMX in it...
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, May 11, 2005 9:04 AM
  To: CF-Talk
  Subject: RE: I truly hate Ben Forta
 
  Q. Why on earth do you need these books now?  The CF Docs are more than
  enoughif not better.
 
 
 
  -Original Message-
  From: Rey Bango [mailto:[EMAIL PROTECTED]
  Sent: 11 May 2005 14:00
  To: CF-Talk
  Subject: I truly hate Ben Forta
 
  Thats right! I said it!! I hate the man! I hate him because everytime a
  new
  version of CF comes out, I find myself TOTALLY plunking down $55 for his
  new
 
  revised version of CFWACK!! He is sucking my bank account dry! Dryer
  than
  the Sahara I tell you.
 
  I hate you, Ben.
 
  Rey...
 
  PS: Of course, this message is all in jest and I don't actually hate
  Ben;
  well, maybe a little. Great books Ben. Keep up the great work bud.
 
 
 
 
 
 
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206350
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: I truly hate Ben Forta

2005-05-11 Thread Clint Tredway
while on an airplane, riding in a car, etc... plus there are times I
want to look at a book and not my screen ;)

On 5/11/05, Tony Weeg [EMAIL PROTECTED] wrote:
 i was about to say the same thing.
 
 if im working, or need cf ANYTHING, im online
 and thats that.
 
 not sure how you can be offline these days?
 
 tony
 
 On 5/11/05, Jeff Garza [EMAIL PROTECTED] wrote:
  Man... doesn't anyone have wireless here??? ;-)  I'm never offline...
 
  Jeff
 
  -Original Message-
  From: Rey Bango [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, May 11, 2005 6:58 AM
  To: CF-Talk
  Subject: Re: I truly hate Ben Forta
 
  Subtle way of saying in the bathroom? ;o)
 
  Rey...
 
  - Original Message -
  From: Clint Tredway [EMAIL PROTECTED]
  To: CF-Talk cf-talk@houseoffusion.com
  Sent: Wednesday, May 11, 2005 9:35 AM
  Subject: Re: I truly hate Ben Forta
 
   the main reason I buy books is for when I am not online and need a
   reference...
  
   On 5/11/05, Ray Champagne [EMAIL PROTECTED] wrote:
   Yea, those books just don't stand up to the pressure.  All three of my
   copies (4.0, 5.0, MX) are in quite horrible condition. :)
  
   Micha Schopman wrote:
I was astonished; he did not deliver a Ben Forta look-alike fake beard
along with the book. Without kidding, his books are THE standard for
learning ColdFusion. The only negative thing I have, after I opened the
book two pages directly fell out of it. No problem though, fixed it
with
some construction kit I just used for fixing a vase (thank you cats).
   
Micha Schopman
Project Manager
   
Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380
   
   
  
   
  
-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep.
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl
   
  
   
  
-
-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED]
Sent: woensdag 11 mei 2005 14:19
To: CF-Talk
Subject: RE: I truly hate Ben Forta
   
Not always, and also there's often some neat gems of capabilities
hidden
there.
   
For example the one for CFMX 6 had a nifty regular expression tester
for
CFMX in it...
   
-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 11, 2005 9:04 AM
To: CF-Talk
Subject: RE: I truly hate Ben Forta
   
Q. Why on earth do you need these books now?  The CF Docs are more than
enoughif not better.
   
   
   
-Original Message-
From: Rey Bango [mailto:[EMAIL PROTECTED]
Sent: 11 May 2005 14:00
To: CF-Talk
Subject: I truly hate Ben Forta
   
Thats right! I said it!! I hate the man! I hate him because everytime a
new
version of CF comes out, I find myself TOTALLY plunking down $55 for
his
new
   
revised version of CFWACK!! He is sucking my bank account dry! Dryer
than
the Sahara I tell you.
   
I hate you, Ben.
   
Rey...
   
PS: Of course, this message is all in jest and I don't actually hate
Ben;
well, maybe a little. Great books Ben. Keep up the great work bud.
   
   
   
   
   
   
   
   
   
  
  
  
  
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206376
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Have A Client with A Specific Need. Read On to See If You're the Right CF Expert for the Job

2005-05-04 Thread Clint Tredway
I had a client with the same issue... after all was said and done, the
only thing that fixed this was moving to CF 6.1 - using the same code,
the server stopped crashing..

On 5/4/05, Jochem van Dieten [EMAIL PROTECTED] wrote:
 Peter Lakanen wrote:
  As of yesterday, I've got a client who recently moved both their web
  server and their database server to bigger, more beefy servers and now
  they can't keep their web site running.
 
  It is ColdFusion-driven (version 5) and is mostly (if not entirely)
  powered by a content mangement system called ActiveMatter.
 
  ColdFusion is dying several times a day and is being re-started.  Web
  site visitors are getting frustrated and the client just wants it all fixed.
 
  We're getting a variety of errors including CFLOCK's timing out and
  references to
  CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode1223335654321.
 
 Do you have configuration details of the old setup? Was it
 running on CF 5 before? Have there been any changes to the
 automatic locking settings for shared scopes?
 
- Their web site traffic has been steadily growing (thousands of
  visitors per day) and they may have reached a tipping point whereby
  thier dynamic, database-driven system can't handle the load.
 
 I don't buy it. They would have had issues at peak time before
 and they just moved to bigger hardware.
 
 Jochem
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205608
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Connecting Flex with Databases

2005-04-29 Thread Clint Tredway
Yup, Remote Object is essentially Flash Remoting and is much more
efficient than web services or HTTP Service...

On 4/29/05, Steven Erat [EMAIL PROTECTED] wrote:
 On 4/29/05, Matt Woodward [EMAIL PROTECTED] wrote
  You can absolutely use CFCs, either as web services or as remote objects.
 
 You could use CFCs by HTTPService too, although you probably wouldn't
 want to, by passing a querystring such as
 ?method=methodnameparam1=value1param2=value2.  The return types
 would be limted to simple types, strings, numerics, or perhaps XML.
 
 RemoteObject is the way to go according to those that have benchmarked it 
 AFAIK.
 
 -Steve
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205075
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CrystalTech Users Beware

2005-04-22 Thread Clint Tredway
one thing is to move your DSN value from the application scope to the
request scope and that issue is fixed...

as for the app name... I always use a different name from dev to stage
to production... that way I know which one I am using...


On 4/22/05, Connie DeCinko [EMAIL PROTECTED] wrote:
 Right, but...  What if you chose a common name and someone on the same
 server does the same.  Also, what if you need to test different versions of
 the same application on the same server?  Shouldn't sandboxing protect you
 from that?
 
 -Original Message-
 From: Damien McKenna [mailto:[EMAIL PROTECTED]
 Sent: Friday, April 22, 2005 11:41 AM
 To: CF-Talk
 Subject: RE: CrystalTech Users Beware
 
 It should be common practice to have all of your applications use
 different names.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:204027
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: wtf are those advertizing links in the text?

2005-04-21 Thread Clint Tredway
I was on an insulin pump mailing list that had a message asking for
donations... if you donated any amount, that message was removed from
the emails... I donated $10 and that took care of that...

I honestly can't believe that people would drop off the list if a
small amount was required...

On 4/21/05, Larry Lyons [EMAIL PROTECTED] wrote:
 I would be forced to withdraw, and I imagine that lots of other people might
 be in the same boat for the same reason that Jochem and Paul Hastings
 mentioned. I've been through this before elsewhere, and I simply wouldn't be
 able to justify the risk. And it's worth pointing out that the list would be
 significantly less valuable if it loses the likes of Jochem and Paul.
 Between the two of them, they cover everything there is to know about RFCs
 and Unicode!
 
 Dave Watts, CTO, Fig Leaf Software
 
 Instead of forcing people to pay to subscribe to the list, an alternative 
 could be an advertising free list for a fee - $20 to $50 a year lets say, and 
 a free, but supported by ads lists. That way if you're willing to suffer the 
 ad links in the contents of the messages, you don't have to pay. But you can 
 get rid of the ads by paying a small fee up front. Then after you log into 
 the HOF site, the ad links in the message content would dissappear.
 
 This way all views are accommodated.
 
 larry
 
 --
 Larry C. Lyons
 Web Analyst
 BEI Resources
 American Type Culture Collection
 email: llyons(at)atcc(dot)org
 tel: 703.365.2700.2678
 --
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203817
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Last ID inserted

2005-04-18 Thread Clint Tredway
Yes, using @@Identity will send you back the LAST inserted ID in that
query/stored proc...

Which means, if you do 2 inserts in a stored proc and you do a Select
@@Identity as RetId, RetId will be from the last insert.

I just did this on SQL Server 7 and it produced this result... I can
try on SQL 2000 later if I need to...

On 4/18/05, Kerry [EMAIL PROTECTED] wrote:
 @@IDENTITY gives you the  identity from the last insert in the
  database
 
 hmmm, BOL says:
 @@IDENTITY contains the last value generated in any table in the current
 session
 
 Anyone know what SQL defines as a session? i.e. is it just that query?
 If so, then @@IDENTITY is 100% safe where I am doing single inserts per
 query (no triggers in DB)...
 
 -Original Message-
 From: Paul Hastings [mailto:[EMAIL PROTECTED]
 Sent: 18 April 2005 15:00
 To: CF-Talk
 Subject: Re: Last ID inserted
 
 Mike Kear wrote:
  Michael got the extract right.   True, books on line doesnt say NOT to
  use @@identity, but it does say it's risky if there are several
  inserts going on at once.
 
 again, where exactly does it say that?
 
 
  @@IDENTITY gives you the  identity from the last insert in the
  database, whereever it was.  Which might or might not be the one you
 
 that is an urban myth or a lack of understanding of how IDENTITY works,
 take your pick. but repeatedly saying that sort of thing based on the
 BoL as reference when it obviously isn't, doesn't make any sense to me.
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203226
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Last ID inserted

2005-04-18 Thread Clint Tredway
That will work if you only need that first @@Identity... but if you
need both of the inserts just returning @@Identity will not work...
you will have to set it after each insert...

my 2 cents...

On 4/18/05, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Whoah there horsey - both of your last posts were unnecessary.  Paul is
 exactly correct - the BOL does *NOT* say or advise or warn against using any
 method.  As you will have seen from posts over the years he is a very
 advanced developer who offers educated and informed technological insights
 (just don't get him started on Unicode) - he asked a question - as did I
 about where BOL mentioned this oddity, I have used SQL Server for a long
 time and never once see or had a behaviour where I was not to use @@.
 
 Take this case  If I am running an SP which does an insert and I have a
 @@IDENTITY after the insert then it will ALWAYS give me the correct entry
 for that last run insert in that scope - i.e. the SP, not matter how many
 people run it at the same time.
 
 -Original Message-
 From: Mike Kear [mailto:[EMAIL PROTECTED]
 Sent: 18 April 2005 15:08
 To: CF-Talk
 Subject: Re: Last ID inserted
 
 I already spelled it out twice, and with the quote of Michael's (who
 beat me to the punch there by about 4 minutes) there are the
 references from the BoL.  A lot of people have the wrong idea about
 what @@IDENTITY does, and as a result are open to risk.  If you can't
 see that in what I wrote, I dont know how you got to where you are in
 this business.
 
 My absolute last on this subject.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 On 4/19/05, Paul Hastings [EMAIL PROTECTED] wrote:
  Mike Kear wrote:
   Ok Paul please yourself I dont care a *^$.   Life's too short to argue.
 
  who's arguing? i was just asking you to clarify your opinions. which
  you aren't doing. so i guess that's the end of that.
 
   You do whatever the hell you like.
 
  well i do *like* facts to be factual. how about you?
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203234
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF 7 and Flash Remoting

2005-04-14 Thread Clint Tredway
If memory serves me right, the NetServices.as is from Flash MX
remoting, in which case you will need to install flash remoting AS1
for mx 2004 pro.

On 4/14/05, Bryan Stevenson [EMAIL PROTECTED] wrote:
 NetServices.as: File not found. is the error
 
 var server = 
 NetServices.createGatewayConnection(http://127.0.0.1/flashservices/gateway;);
 Is probably the line that needs to be fixed up??
 
 I haven't touched remoting in over a yearI know this is where I had 
 trouble before.
 
 I've got Flash MX 2004 Pro installed with ActionScript 2.0 Flash Remoting 
 Components and the UI component set 2.
 
 I'm trying to fire up the Noteboard tutorial from MMs site.
 
 Any thoughts?
 
 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
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202863
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free or *cheap* cf forum

2005-04-10 Thread Clint Tredway
I wrote one like 3 or so years ago and I can't find the code for it..
:) I took a look at the ones posted and they won't work for what I
need and I really don't want to use a php based board... so I started
writing another one...

On Apr 10, 2005 9:51 PM, Eric Dawson [EMAIL PROTECTED] wrote:
 yeah. didn't you write one once?
 
 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: April 9, 2005 4:03 PM
 To: CF-Talk
 Subject: Free or *cheap* cf forum
 
 is there a free or cheap coldfusion based forum application?
 
 --
 My Blog
 http://www.clinttredway.com
 
 Are you diabetic?
 http://www.diabetesforums.com
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202143
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Free or *cheap* cf forum

2005-04-10 Thread Clint Tredway
yes I hate that :)

I know its on a CD somewhere.. I just can't find it.. oh well.. so
much has changed since I wrote that last one, that I would want to
re-write it anyway

On Apr 10, 2005 10:29 PM, Jared Rypka-Hauer - CMG, LLC
[EMAIL PROTECTED] wrote:
 Clint,
 
 I know what you mean about losing source code... a few years ago I
 wrote a full-featured blogger. The only two pieces I was missing was a
 CSS layout and spell checker. Then I lost the source, lost the DB,
 lost the whole thing. But, I found it the other day and I'm going to
 port it to CFCs and CSS2 finally... it was hiding in a set of folders
 on my home drive on the home file server.
 
 Most pleasing when that happens, eh?
 
 Laterz,
 J
 
 
 On Apr 10, 2005 10:03 PM, Clint Tredway [EMAIL PROTECTED] wrote:
  I wrote one like 3 or so years ago and I can't find the code for it..
  :) I took a look at the ones posted and they won't work for what I
  need and I really don't want to use a php based board... so I started
  writing another one...
 
  On Apr 10, 2005 9:51 PM, Eric Dawson [EMAIL PROTECTED] wrote:
   yeah. didn't you write one once?
  
   -Original Message-
   From: Clint Tredway [mailto:[EMAIL PROTECTED]
   Sent: April 9, 2005 4:03 PM
   To: CF-Talk
   Subject: Free or *cheap* cf forum
  
   is there a free or cheap coldfusion based forum application?
  
   --
   My Blog
   http://www.clinttredway.com
  
   Are you diabetic?
   http://www.diabetesforums.com
  
  
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202147
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Free or *cheap* cf forum

2005-04-09 Thread Clint Tredway
is there a free or cheap coldfusion based forum application?

-- 
My Blog
http://www.clinttredway.com

Are you diabetic?
http://www.diabetesforums.com

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202120
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


File Upload question

2004-11-19 Thread Clint Tredway
I am working on a site that is hosted at www.crystaltech.com and all
of a sudden my file uploads start breaking.

Thier supports says I need to change the temp directory where the file
uploads happen... how the heck do I do that?

Here is the error:
Error Occurred While Processing Request  
Security: The requested template has been denied access to
C:\WINDOWS\TEMP\neotmp55062.tmp.
The following is the internal exception message: access denied
(java.io.FilePermission C:\WINDOWS\TEMP\neotmp55062.tmp read)

mind you, this went from working to breaking in one day with no code changes.

thoughts?

-- 
www.fishermenstudios.com

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184860
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Upload question

2004-11-19 Thread Clint Tredway
I have contacted them, here is the response I got.

Due to CFMX Sandbox security, your site is locked to its own folder
structure.  This means that you would not have access to the
windows/temp folder and you should be specifying a temp folder with
the site.  I would assume this worked at one point because there may
have been an error with the sandbox.  Once the sandbox was corrected,
you were denied to a folder outside the site's root.  Let me know if
you need any futher help.



On Fri, 19 Nov 2004 10:02:14 -0500, Ryan Emerle [EMAIL PROTECTED] wrote:
 contat crystaltech.. sounds like someone changes the permissions on
 the windows temp directory which CF uses to temporarily store uploaded
 files.
 
 
 
 
 On Fri, 19 Nov 2004 08:49:02 -0600, Clint Tredway [EMAIL PROTECTED] wrote:
  I am working on a site that is hosted at www.crystaltech.com and all
  of a sudden my file uploads start breaking.
 
  Thier supports says I need to change the temp directory where the file
  uploads happen... how the heck do I do that?
 
  Here is the error:
  Error Occurred While Processing Request
  Security: The requested template has been denied access to
  C:\WINDOWS\TEMP\neotmp55062.tmp.
  The following is the internal exception message: access denied
  (java.io.FilePermission C:\WINDOWS\TEMP\neotmp55062.tmp read)
 
  mind you, this went from working to breaking in one day with no code 
  changes.
 
  thoughts?
 
  --
  www.fishermenstudios.com
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184865
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Upload question

2004-11-19 Thread Clint Tredway
I don't know how to change it either... All I know is that it was
working and now its not and they don't seem to want to help much...

thanks for the comments


On Fri, 19 Nov 2004 09:41:46 -0600, Deanna Schneider
[EMAIL PROTECTED] wrote:
 Well, they must be doing sandboxes very differently than we're doing them.
 Granted I'm not the one creating the sandboxes. But, basically, the gist
 here is that I just tell the server guys where I want to upload _to_ and
 they make the sandbox that lets me do it. I don't alter the temp directory
 at all, and I wouldn't know how to do that
 
 
 
 
 have contacted them, here is the response I got.
 
  Due to CFMX Sandbox security, your site is locked to its own folder
  structure.  This means that you would not have access to the
  windows/temp folder and you should be specifying a temp folder with
  the site.  I would assume this worked at one point because there may
  have been an error with the sandbox.  Once the sandbox was corrected,
  you were denied to a folder outside the site's root.  Let me know if
  you need any futher help.
 
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184876
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Upload question

2004-11-19 Thread Clint Tredway
thats what I thought.. its just frustrating as I have a client
deadline and this is not helping


On Fri, 19 Nov 2004 15:52:56 +, John Beynon [EMAIL PROTECTED] wrote:
 no, it's definitely their error.
 
 You *need* to have permission to write to the temp folder - CFFILE
 writes into it first then the file is moved to the specified location.
 It's invisible to you as a developer but from the server admins should
 know about it  - especially crystaltech!!!
 
 jb.
 
 
 
 
 On Fri, 19 Nov 2004 09:41:46 -0600, Deanna Schneider
 [EMAIL PROTECTED] wrote:
  Well, they must be doing sandboxes very differently than we're doing them.
  Granted I'm not the one creating the sandboxes. But, basically, the gist
  here is that I just tell the server guys where I want to upload _to_ and
  they make the sandbox that lets me do it. I don't alter the temp directory
  at all, and I wouldn't know how to do that
 
 
 
 
   have contacted them, here is the response I got.
  
   Due to CFMX Sandbox security, your site is locked to its own folder
   structure.  This means that you would not have access to the
   windows/temp folder and you should be specifying a temp folder with
   the site.  I would assume this worked at one point because there may
   have been an error with the sandbox.  Once the sandbox was corrected,
   you were denied to a folder outside the site's root.  Let me know if
   you need any futher help.
  
  
 
 
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184880
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Upload question

2004-11-19 Thread Clint Tredway
I have essentially the same code as you. Thats why its so frustrating!


On Fri, 19 Nov 2004 12:10:49 -0800, Bob Haroche
[EMAIL PROTECTED] wrote:
 Clint Tredway wrote:
  thats what I thought.. its just frustrating as I have a client
  deadline and this is not helping
 
 I use a file upload function on my Crystal Tech MX account without
 problem -- just checked it.
 
 I don't know anything about using a temp directory, but I have set the
 permissions for my designated upload directory to allow the account
 owner to have full permissions, and to have everyone have read and
 execute permissions. FWIW, here's my upload code on the action page
 (receiving from an upload form with 5 file upload fields).
 
 !--- Upload only for file fields with content.  ---
 CFLOOP from=1 to=5 index=i
 CFSET ThisfileUploadExpression = Form.fileUpload#i#
 CFSET ThisfileUpload=Evaluate(#ThisfileUploadExpression#)
 CFIF Len(Trim(ThisfileUpload))
   CFFILE
action=Upload
filefield=fileUpload#i#
nameconflict=overwrite
destination=D:\path\to\my\upload\directory\
 /CFIF
 /CFLOOP
 
 HTH.
 
 -
 Regards,
 Bob Haroche
 O n P o i n t  S o l u t i o n s
 www.OnPointSolutions.com
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184928
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How would I code this link for the anchor?

2004-01-27 Thread Clint Tredway
Double the pound sign for the anchor and cf will make it one when the 
output is done.

# change to ##

HTH,
Clint

Rick Faircloth wrote:

 Hi, all...

 How would I code the link below to have the pound sign for the anchor 
 at the
 end
 with CF interpreting it as a variable sign?

 A HREF ="">
 Property_Search.cfm?Details=YesPropertyID=#GetProperties.PropertyID###GetP
 roperties.PropertyID#

 Thanks,

 Rick

 Rick Faircloth
 Hinesville, GA

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




Re: How to do that?

2004-01-26 Thread Clint Tredway
Or, the tool that they built for the articles allows them to enter page 
by page.

Spectrum WebDesign wrote:

 Thanx Dave

 maybe regex? Like inserting a, hmmm, nextpage statement and before 
 inserting in DB regex find that statement and break it? Looks for the 
 next statement and save. Looks for... Ugly solution??

 Thanx once again...

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




Re: Flash for Developers/Programmers WAS: Flash Remoting with Blue Dragon

2004-01-14 Thread Clint Tredway
Flash apps have their place, and they are not websites.

For example, I just rebuilt my companies intranet that was Classic 
ASP/DHTML to Flash MX 2004/CFMX with the frontend all being flash. Now, 
these are financial tools and CRM tools, client tracking, and the like 
and the ASP/DHTML version was a huge pain to maintain where the flash 
one is much easier. I did build a way to narrow list/drop downs while 
you type(this was huge) a _javascript_ version was available, but it was a 
huge pain. Also, the GUI is much easier to use than a HTML GUI, but this 
is not a 'website'. These are specific applications that definitely 
needed a 'richer' interface than a traditional website.

As for speed of development, I can build a flash form app much quicker 
than I can a HTML form app... its drag/drop hook some listenters and 
have my CFC's process the data coming in... but Flash RIA's are not 
needed for everything. I could not have given my customers(other 
employee's) what they wanted in an application without flash this time 
around...

my 2 cents...

Bryan F. Hogan wrote:

 No, I know you didn't mean to discourage anyone. I'm just scared to
 death to pick up flash, because I have a feeling that the simple things
 that take moments to do in html will take a huge amount of time or be
 impossible to do in Flash. For example, allot of my clients love the
 ability to upload files, download excel spreadsheets, etc. It takes a
 few moments to plug this into my html apps, however the upload component
 for flash would need integration. There is no way that I know of to
 embed the excel spread sheet into the site like I can with IE. The same
 thing goes with PDF files. How fast can a select box that when you type
 the results are narrowed. Can you easily highlight a string of search
 result keywords, etc. All this can be done in Flash if not natively by a
 3-party component, but not as quick as can be done in html.


 Basically it comes down to, that I feel by picking up Flash it would
 take us back-in-time. Have to learn the basic things all over again. For
 example, is it possible to change the flash form look and feel via css?
 Can I quickly change the entire look of my application from a css file
 and not have to go in and edit the component code just to change the
 color.


 Flash Remoting to me is a sore spot because the connector has to be
 setup on each new website instance, it's not done automatically. And to
 get it on their we have to run the connector script on all sites and not
 just the one that is needed. If I built an application on flash remoting
 a requirement would have to be the user that installs it having flash
 remoting installed. And if they have problems with that, they call me.
 Not good. With SOAP, those problems are gone. Maybe it's just me and
 that SOAP makes more since to me. It's automatic, no muss, no fuss.


 Sorry for the long post, it's just one of my sore spots, I really want
 to be able to extend my applications beyond the browser, however for
 some of the reasons above, I hesitate to do so. Right now it's kind of
 seems more work than it's worth.


 Flex is a great idea, but how can that be browser-less, how can that sit
 on a users desktop? Like regular flash and soap can.


 Thanks for the offer to help, I have much more time to spend sniffing
 around the bush if you know what I mean before I start. :-)

 -Original Message-
 From: Christian Cantrell [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, January 14, 2004 9:10 AM
 To: CF-Talk
 Subject: Re: Flash for Developers/Programmers WAS: Flash Remoting with
 Blue Dragon

 I certainly didn't intend to discourage the use of Flash!I think
 these types of issues are to be expected when working with such new
 technology.Fortunately, if you know where to look, you can learn from
 other people's experience and avoid most of the frustration.

 If you decide to have a go at it, I can probably help you with any
 issues you run into.And I should probably clarify that I have written
 several Flash/CF applications that integrate through SOAP and work
 great.There are just a couple of issues to watch out for.

 Christian

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




Re: Flash Remoting with Blue Dragon

2004-01-14 Thread Clint Tredway
openamf is a java implementation of Flash remoting. it is said to be 
more robust than MM's flash remoting for java.

clint

Matt Liotta wrote:

 Maybe I missed it, but I didn't see anything like an open source
 implementation of AMF, which is what I assumed I would find given the
 domain name. What am I supposed to find there?

 -Matt

 On Jan 13, 2004, at 5:40 PM, Brian LeRoux wrote:

  Give openamf.org a go. Solves all these issues you mention.
 
  -Original Message-
  From: Matt Liotta [mailto:[EMAIL PROTECTED]
  Sent: January 13, 2004 10:56 AM
  To: CF-Talk
  Subject: Re: Flash Remoting with Blue Dragon
 
   Depends on how you look at portable. At the end of the day a Flash
   app
   can only access a server resource if it resides on the same server as
   the published SWF file or if crossdomain.xml allows it. If you have
   access to the server it really only makes sense to take advantage of
   the
   Remoting performance boost. Remember Remoting works with SOAP but the
   deserialization occurs on the server not the client so the issue of
   SOAP
   vs Remoting really isn't there.
  
  It might make sense to use Flash Remoting, but you have to remember
  that Flash Remoting is a product that costs money, so even if you have
  access to the server, you will still need a license to Flash Remoting
  before you can use it. On the other hand, there are plenty of server
  products that have built-in support for SOAP meaning that adding Flash
  Remoting to the mix will actually cost more.
 
   3. I have found Flash Remoting and AMF to be more robust than the web
   service implementations I have used.I have forced myself to use web
   services in newer projects rather than Flash Remoting just to get the
   experience, and I have found bugs in both the Flash implementation
  and
   in Apache Axis which caused a lot of frustration and would have been
   avoided if I had used Flash Remoting.So far, I have not run into
  any
   significant bugs with Flash Remoting that I can recall.
  
   Very true.
  
  Maybe true for some, but there are plenty of Flash Remoting issues that
  still haven't been addressed. For example, you still can't consume
  services from Java classes and CFCs in the same context as both rely on
  different gateways that are not compatible. Further, there is serious
  marshaling challenges for Java-based services that Flash Remoting
  consumes not the least of which is corrupted objects.
 
  -Matt
 _
 

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




Re: flash remoting help

2004-01-06 Thread Clint Tredway
In my experience its not configuring Flash Remoting, its configuring how 
the webroots are setup. The paths for flash remoting are based on your 
webroot. I use a shared environment with Crystal Tech, and remoting 
works just fine.

You need to find out what your webroot is. Then, you can figure out your 
correct path.

HTH,
Clint

Mauricio Giraldo wrote:

  Yes I am using Flash Remoting in a shared hosting environemnt

 Tell me about it. Some sysadmins just dont know how to configure flash 
 remoting. Is it Windows or Linux hosting? Please provide the most 
 information.

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




Re: Flash question - newbie

2004-01-05 Thread Clint Tredway
The only 2 tools you need Flash MX 2004 Professional and Sapien's 
PrimalScript www.sapien.com.

There are a couple of good books to get you going:
Macromedia Flash MX 2004 ActionScript: Training from the Source
http://www.amazon.com/exec/obidos/tg/detail/-/0321213432/qid=1073329947//ref=sr_8_xs_ap_i0_xgl14/103-1014540-8267857?v=glances=booksn=507846

Macromedia Flash MX Professional 2004 for Server Geeks:
http://www.amazon.com/exec/obidos/tg/detail/-/0735713820/ref=pd_sim_books_4/103-1014540-8267857?v=glances=books

That's my 2 cents...

Clint

Stephen Hait wrote:

 I'm interested in learning about developing applications on CFMX
 that utilize Flash but I confess I'm confused as to what I would
 need to do this. There seem to be various products; Flash MX
 2004, Flash MX Pro 2004 and Studio MX 2004 with Flash Pro,
 etc. that might do this.

 What's the minimum software requirement for developing Flash
 apps? What would be the benefits of alternatives to the minimum?

 I own CF Studio 5 if that's a factor.

 Sorry this sounds so lame but I've never created anything with
 Flash and am clueless.

 Regards,
 Stephen

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




Re: Flash question - newbie

2004-01-05 Thread Clint Tredway
It's not really, but its a much better editor with a class browser for 
AS2... Plus it has some good CF stuff and it just plain rocks.

Nick de Voil wrote:

 Clint

   The only 2 tools you need Flash MX 2004 Professional and Sapien's
   PrimalScript www.sapien.com.
 
What's the minimum software requirement for developing Flash
apps? What would be the benefits of alternatives to the minimum?

 Why is PrimalScript part of the minimum requirement?

 Nick

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




Re: Flash question - newbie

2004-01-05 Thread Clint Tredway
to use any of the new data components, you have to get the pro version. 
AFAIK you can use FMX 2004 with remoting, but not to the extent as you 
can with the Pro version.

Stephen Hait wrote:

 How does Flash Remoting fit into the equation? Or does it?
 Stephen

  The only 2 tools you need Flash MX 2004 Professional and Sapien's
  PrimalScript www.sapien.com.

  
   What's the minimum software requirement for developing Flash
   apps? What would be the benefits of alternatives to the minimum?

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




Re: OT: flash remoting help

2003-12-30 Thread Clint Tredway
What happens if you go to the gateway url in a browser? You should get a 
blank page. That means the gateway is working.

You also, don't need the stop()that will kill your movie's timeline.

HTH,
Clint

Ryan Mitchell wrote:

 Hello

 I'm playing with flash remoting to a cfc for the first time, and having a
 few difficulties trying to get it all working...

 Its on a shared hosting server, so within the flash I'm accessing the 
 server
 as follows (the coldfusion server runs on port 27000 so I'm assuming 
 that¹s
 the port for flash remoting!)

 stop();
 // Include the Required NetService class files
 #include NetServices.as
 // Connect to the Flash Remoting service
 // Make the Gateway connection
 NetServices.setDefaultGatewayUrl(http://www.lightwillrise.com:27000/flashse
 rvices/gateway);
 gatewayConnnection = NetServices.createGatewayConnection();
 // path relative to webroot
 svc = gatewayConnnection.getService(cfc.sendmail, this);

 function insertIt() {
 
svc.sendMail();

 }

 The file sendmail.cfc im trying to access is found in a folder cfc within
 the webroot... So is cfc.sendmail the right path to put in?

 The sendmail.cfc file itself is very simple...

 cfcomponent
cffunction name=sendMail access=remote returntype=boolean

!--- validate and insert ---
cfmail to=[EMAIL PROTECTED] subject=blah 
 from=[EMAIL PROTECTED]

test email

/cfmail

cfreturn true

/cffunction

 Flash *seems* to connect to the server, but it just doesn¹t seem to 
 send the
 email!! Any help gratefully received...

 Ryan

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




Re: OT: flash remoting help

2003-12-30 Thread Clint Tredway
The stop is what is stopping your remoting call... How are you calling 
your function?

Also, sometimes they way you are setting your gateway, Flash doesn't 
create the connection properly..
try this:
if(inited == null) {
 inited = true;
 var conn = 
NetServices.createGatewayConnection(http://www.lightwillrise.com:27000/flashservices/gateway);
 var svc = conn.getService(cfc.sendMail, this);
}

HTH

Ryan Mitchell wrote:

 Yeah I do get a blank page...
 I want the stop there to stop my movie :O)

 On 30/12/03 2:13 pm, Clint Tredway [EMAIL PROTECTED] wrote:

  What happens if you go to the gateway url in a browser? You should get a
  blank page. That means the gateway is working.
 
  You also, don't need the stop()that will kill your movie's timeline.
 
  HTH,
  Clint

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




RE: OT: flash remoting help

2003-12-30 Thread Clint Tredway
when I put in a stop it stops everything...

Clint Tredway
www.digital12studios.com

Original Message:
+AD4-From: +ACI-chris kief+ACI- +ADw-chris+AEA-riseinteractive.com+AD4-
+AD4-To: CF-Talk +ADw-cf-talk+AEA-houseoffusion.com+AD4-
+AD4-Subject: RE: OT: flash remoting help
+AD4-Date: Tue, 30 Dec 2003 17:00:13 -0800

+AD4-That is incorrect. stop() only controls the timeline - not the execution of
+AD4-AS. He just wasn+IBk-t invoking his function after he declared it.
+AD4-
+AD4-chris
+AD4-
+AD4AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXw-
+AD4-From: Clint Tredway +AFs-mailto:clint+AEA-digital12studios.com+AF0- 
+AD4-Sent: Tuesday, December 30, 2003 6:29 AM
+AD4-To: CF-Talk
+AD4-Subject: Re: OT: flash remoting help
+AD4-
+AD4-The stop is what is stopping your remoting call... How are you calling 
+AD4-your function?
+AD4-
+AD4-Also, sometimes they way you are setting your gateway, Flash doesn't 
+AD4-create the connection properly..
+AD4-try this:
+AD4-if(inited +AD0APQ- null) +AHs-
+AD4AoACgAKA- inited +AD0- true+ADs-
+AD4AoACgAKA- var conn +AD0- 
+AD4-NetServices.createGatewayConnection(+ACI-http://www.lightwillrise.com:27000/flas
+AD4-hservices/gateway+ACI-)+ADs-
+AD4AoACgAKA- var svc +AD0- conn.getService(+ACI-cfc.sendMail+ACI-, this)+ADsAoACgAKA-
+AD4AfQ-
+AD4-
+AD4-HTH
+AD4-
+AD4-Ryan Mitchell wrote:
+AD4-
+AD4APg- Yeah I do get a blank page...
+AD4APg- I want the stop there to stop my movie :O)
+AD4APg-
+AD4APg- On 30/12/03 2:13 pm, +ACI-Clint Tredway+ACI- +ADw-clint+AEA-digital12studios.com+AD4- wrote:
+AD4APg-
+AD4APg- +AD4- What happens if you go to the gateway url in a browser? You should get a
+AD4APg- +AD4- blank page. That means the gateway is working.
+AD4APg- +AD4-
+AD4APg- +AD4- You also, don't need the stop()that will kill your movie's timeline.
+AD4APg- +AD4-
+AD4APg- +AD4- HTH,
+AD4APg- +AD4- Clint
+AD4APg-
+AD4AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXwBfAF8AXw-
+AD4-
+AD4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfgB+AH4AfA-
+AD4-This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.
+AD4-http://www.cfhosting.com
+AD4-
+AD4-Message: http://www.houseoffusion.com/lists.cfm?link+AD0-i:4:148256
+AD4-Archives: http://www.houseoffusion.com/lists.cfm?link+AD0-t:4
+AD4-Subscription: http://www.houseoffusion.com/lists.cfm?link+AD0-s:4
+AD4-Unsubscribe: http://www.houseoffusion.com/cf+AF8-lists/unsubscribe.cfm?user+AD0-13.7.4
+AD4-
+AD4-
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Joining the dark side - using DWMX

2003-12-21 Thread Clint Tredway
Go buy PrimalScript for $169 and use an editor that beats DWMX and HS+/CF Studio(in my opinion because PrimalScript is more stable) and be happier and spend less money.

also, since I coe in multiple languages PrimalScript fits me better than DW or HS+/CF Studio.

Clint Tredway
www.digital12studios.com

Original Message:
From: Calvin Ward [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: Joining the dark side - using DWMX
Date: Sun, 21 Dec 2003 21:32:32 -0500

Exactly, HomeSite is just HomeSite, which is the html editor...

HomeSite+ is ColdFusion Studio, which is the cfml editor. There are differences. 

Also of note, ColdFusion Studio listed at $499, whereas DWMX 2004 lists at $399 and includes HomeSite+ (ColdFusion Studio).

- Calvin
- Original Message - 
From: Scott Brady 
To: CF-Talk 
Sent: Sunday, December 21, 2003 5:19 PM
Subject: Re: Joining the dark side - using DWMX


Tom Kitta wrote:

 Actually, you can buy HS by itself, it costs you something like $99 
 and $29 for upgrade. It is version 5.5 which comes with DWMX2004.

 http://shop.macromedia.com/dr/v2/ec_MAIN.Entry17c?CID=0PN=5SP=10007SID=46165PID=582404DSP=CUR=840PGRP=0CACHE_ID=0 
 http://shop.macromedia.com/dr/v2/ec_MAIN.Entry17c?CID=0PN=5SP=10007SID=46165PID=582404DSP=CUR=840PGRP=0CACHE_ID=0

Actually, the version that comes with DWMX2004 is HS+ 5.5, which is 
different from Homesite 5.5.HS 5.5 doesn't have all of the CF 
Studio features that are in HS+ 5.5.

Scott

-- 
---
Scott Brady
http://www.scottbrady.net/


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




Re: Joining the dark side - using DWMX

2003-12-19 Thread Clint Tredway
I have stopped using DreamWeaver and I now use PrimalScript from 
www.sapien.com - kicks DW's tail any day...

my 2 cents

Raymond Camden wrote:

 Ah, but you can still turn them on/off as well as setting a particular
 order.

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




Re: Another CFML app server...

2003-12-04 Thread Clint Tredway
I would like to try it, but none of the links work on the site ;)

Tim Blair wrote:

 Morning,

 Has anyone seen this before: http://www.pcaonline.com/coral/

 It's a new one on me...

 Tim.

 ---
 RAWNET LTD - Internet, New Media and ebusiness Gurus.
 Visit our new website at http://www.rawnet.com for
 more information about our company, or call us free
 anytime on 0800 294 24 24.
 ---
 Tim Blair
 Web Application Engineer, Rawnet Limited
 Direct Phone : +44 (0) 1344 393 441
 Switchboard : +44 (0) 1344 393 040
 ---
 This message may contain information which is legally
 privileged and/or confidential.If you are not the
 intended recipient, you are hereby notified that any
 unauthorised disclosure, copying, distribution or use
 of this information is strictly prohibited. Such
 notification notwithstanding, any comments, opinions,
 information or conclusions expressed in this message
 are those of the originator, not of rawnet limited,
 unless otherwise explicitly and independently indicated
 by an authorised representative of rawnet limited.
 ---

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




RE: diagrams for cfc's

2003-12-02 Thread Clint Tredway
go to gmodler.com

Clint Tredway
www.digital12studios.com

Original Message:
From: Tony Weeg [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: diagrams for cfc's
Date: Tue, 2 Dec 2003 15:58:12 -0500

there is a web based thing for creating uml designs, not sure of the url,
but ive seen it here before
someone will most certainly chime in with it, im sure!

...tony

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

-Original Message-
From: Michael Hodgdon [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 02, 2003 3:52 PM
To: CF-Talk
Subject: diagrams for cfc's

I was wondering what people are using to diagram CFC's.Are you using UML
diagrams or some other type of diagram?Do you recommend software
(preferably shareware) to diagram CFC's

Any suggestions?

Mike


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




re: Flash Remoting question

2003-11-11 Thread Clint Tredway
You have to buy the .Net version.

Clint Tredway
www.digital12studios.com

Does the Flash Remoting component that comes with CFMX work for .NET as well?Or do I have to purchase Flash Remoting separately for .NET?


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




RE: What CMS do you use?

2003-10-22 Thread Clint Tredway
I was able to view the site. I am in Texas.

Clint Tredway
www.digital12studios.com

Original Message:

Return-Path: [EMAIL PROTECTED] Wed Oct 22 07:08:01 2003
Received: from houseoffusion.com [64.118.64.245] by mail16.webcontrolcenter.com with SMTP;
Wed, 22 Oct 2003 07:08:01 -0700
Received: from LOCALHOST by LOCALHOST
	with ESMTP id 789A59E1A1F47D48A5734FEDF8E995E4
	Wed, 22 Oct 2003 10:09:53 -0400
Date: Wed, 22 Oct 2003 10:07:48 -0400
From: Greg Luce [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Precedence: bulk
References: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Subject: RE: What CMS do you use?
To: CF-Talk [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=_NextPart_000_1066817394_CFX_iMSMail_25465297
Content-Transfer-Encoding: 7bit


Neil,
 Did you try that url and it worked? I've been trying it all morning
with no luck. Do I have to turn my CPU upside down or something to hit a
site down-under in Australia? :-)
 
Greg

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 22, 2003 8:51 AM
To: CF-Talk
Subject: RE: What CMS do you use?


Yes,We use FarCry...download it from http://farcry.daemon.com.au
http://farcry.daemon.com.au 


:-)

-Original Message-
From: Greg Luce [mailto:[EMAIL PROTECTED]
Sent: 22 October 2003 13:38
To: CF-Talk
Subject: RE: What CMS do you use?

Geoff,
 I'm interested in FarCRY. Is there somewhere it can be downloaded?
http://www.farcry.daemon.com.au/ http://www.farcry.daemon.com.au/
doesn't
seem to work.

Greg

-Original Message-
From: Geoff Bowers [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 21, 2003 7:00 PM
To: CF-Talk
Subject: Re: What CMS do you use?

Bob,

Robert Everland III wrote:
 Not really looking for products you have seen but for a CMS you use or

 your company uses and what you think of it. I know some are very
pricey, 
 some don't run CF. Just looking for some ideas to be used where I at 
 now. Thanks.

We built FarCry CMS and released the entire thing as open source (the 
largest open source code base in CF).Obviously we like it and use it 
every day but don't take our word for it.

ColdFusion Content Management Systems
http://davidcrow.ca/2003/07/22/coldfusion_content_management_systems.htm
http://davidcrow.ca/2003/07/22/coldfusion_content_management_systems.ht
m 
l

Join our developer mailing list and ask about -- plenty of folks across 
the globe are getting hooked.

FarCry is an enterprise solution we use to sell for about 35kAU per 
server and now its free.We've turned our business around to be service

oriented as opposed to license oriented -- but that hasn't stopped 
development.FarCry CMS v2 was released to much acclaim this month from

the joint effort of Daemon and community developers.

(I guess I'm trying to stress that it's not some mickey-mouse, shot in 
the head, one foot nailed to the floor open source project that was 
abandoned in the 90's -- FarCry CMS rocks! :)

FarCry CMS website:
http://farcry.daemon.com.au/ http://farcry.daemon.com.au/ 

FarCry Developer  User Mailing Lists
http://farcry.daemon.com.au/go/support/mailing-lists
http://farcry.daemon.com.au/go/support/mailing-lists 

Hope that helps,

-- geoff bowers
Managing Director
Daemon Internet Consultants
Macromedia Premier Solutions Partner
http://www.daemon.com.au/ http://www.daemon.com.au/ 
p. 02 9380 4162
f. 02 9380 4204

_

_


_



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




re: Database conversion tool??

2003-10-21 Thread Clint Tredway
MsSQL already has an Access Upsize tool.

There used to be an Access-MySQL tool, but I have not seen it in awhile.

Clint Tredway
www.digital12studios.com

Original Message:

Return-Path: [EMAIL PROTECTED] Tue Oct 21 10:39:23 2003
Received: from houseoffusion.com [64.118.64.245] by mail16.crystaltech.com with SMTP;
Tue, 21 Oct 2003 10:39:23 -0700
Received: from LOCALHOST by LOCALHOST
	with ESMTP id E83B45E308ABBB47957702E05D048D5E
	Tue, 21 Oct 2003 13:39:55 -0400
Date: Tue, 21 Oct 2003 14:32:41 -0300
From: Yves Arsenault [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
Subject: Database conversion tool??
To: CF-Talk [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=_NextPart_000_1066743595_CFX_iMSMail_42353931
Content-Transfer-Encoding: 7bit


Hey there,

Anyone know of any, or have a preffered DB conversion tool that would allow
me to convert Access DBs to MySQL, MySQL to Access, Access to MS SQL
server basically dealing with Access, MySQL, MS SQL.

TIA,

Yves Arsenault
Carrefour Infotech
5,promenade Acadian
Charlottetown, IPE
C1C 1M2
[EMAIL PROTECTED]
(902)368-1895 ext.242
ICQ #117650823


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




re: CF Forum 2000

2003-10-17 Thread Clint Tredway
Is the forum using Access or SQL Server?

If it is using Access then up the database to SQL Server and that should help alot.

Clint Tredway
www.digital12studios.com

Original Message:

Return-Path: [EMAIL PROTECTED] Thu Oct 16 21:25:44 2003
Received: from houseoffusion.com [64.118.64.245] by mail16.crystaltech.com with SMTP;
Thu, 16 Oct 2003 21:25:44 -0700
Received: from LOCALHOST by LOCALHOST
	with ESMTP id 17CC6E829D9BA3479E8EF2803401F19A
	Fri, 17 Oct 2003 00:27:32 -0400
Date: Fri, 17 Oct 2003 14:21:35 +1000
From: Ryan Sabir [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Precedence: bulk
References: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Subject: CF Forum 2000
To: CF-Talk [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=_NextPart_000_1066350452_CFX_iMSMail_141555966
Content-Transfer-Encoding: 7bit


Hi all,

Has anyone here implemented a high volume site using CF FORUM 2000?

We have just inherited one, and am wondering how solid the code is.
Its a very busy forum, doing about 3 gigs of traffic per day, and its
started to show signs of breaking down, e.g. deadlock errors,
timeouts, No more data available to read errors.

Should I be looking for different forum software? Or re-write the code
myself?

Has anyone done an optimisation job on the CFFORUM code and can give a
few pointers on where the bottlenecks are?

thanks, bye!

---
Ryan Sabir
Newgency Pty Ltd
2a Broughton St
Paddington 2021
Sydney, Australia
Ph (02) 9331 2133
Fax (02) 9331 5199
Mobile: 0411 512 454
http://www.newgency.com/index.cfm?referer=rysig 


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




re: Giving up on DW 2004 MX

2003-10-15 Thread Clint Tredway
I use it everyday for development and I don't have any issues with it. I use for CFC stuff for my RIA's.

Other than a memory hog, I think DW 2004 is much better than the MX version.

Clint Tredway
www.digital12studios.com

Original Message:

Return-Path: [EMAIL PROTECTED] Wed Oct 15 05:01:13 2003
Received: from houseoffusion.com [64.118.64.245] by mail16.crystaltech.com with SMTP;
Wed, 15 Oct 2003 05:01:13 -0700
Received: from LOCALHOST by LOCALHOST
	with ESMTP id CC7A93AA65EDD64AAC91A95603BA6CE8
	Wed, 15 Oct 2003 08:01:13 -0400
Date: Wed, 15 Oct 2003 13:00:34 +0100
From: Adam Reynolds [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
Subject: Giving up on DW 2004 MX
To: CF-Talk [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=_NextPart_000_1066204874_CFX_iMSMail_396336621
Content-Transfer-Encoding: 7bit


Anybody else got this far. The product is flaky and some very basic stuff
falls over.

Oh well back to DW. Hope the first patch sorts out a load of stuff.

Adam




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




RE: flash remoting and dotted directories

2003-10-14 Thread Clint Tredway
He is using Flash Remoting. It makes the data transfer between Flash and CF much easier and faster.

Clint Tredway
www.digital12studios.com

Original Message:

Return-Path: [EMAIL PROTECTED] Tue Oct 14 01:28:42 2003
Received: from houseoffusion.com [64.118.64.245] by mail16.crystaltech.com with SMTP;
Tue, 14 Oct 2003 01:28:42 -0700
Received: from LOCALHOST by LOCALHOST
	with ESMTP id FF01B99DCCD1904A92A1DFC5C2D766BB
	Tue, 14 Oct 2003 04:30:25 -0400
Date: Tue, 14 Oct 2003 09:28:12 +0100
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
Subject: RE: flash remoting and dotted directories
To: CF-Talk [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=_NextPart_000_1066105825_CFX_iMSMail_297287797
Content-Transfer-Encoding: 7bit


Why is using a Flash site to talk to MySQl via CFCs a wierd config ?

-Original Message-
From: Mauricio Giraldo [mailto:[EMAIL PROTECTED]
Sent: 14 October 2003 03:26
To: CF-Talk
Subject: flash remoting and dotted directories


Hi

I am developing a flash-based site that uses CFCs to communicate with a 
MySQL database under Windows (yea... I know it's a weird config). Right now 
we have the site under a name-based hosting provider (I know there are other

CFMX ISPs out there... I didn't choose...). 
http://siteIP/flashservices/gateway http://siteIP/flashservices/gateway
is returning a blank page (good news... 
Remoting is up). However, our site is under something like 
H:/username/site.dot.com/ (note the dots in my directory name).

The problem is:
Do you have any tips for mapping my CFCs in Flash? I am trying something 
like:

NetServices.setDefaultGatewayUrl(http://siteIP/flashservices/gateway);
this.conn = NetServices.createGatewayConnection();
this.service = this.conn.getService(cfc.cfcname,this);

Suppose there is a directory named cfc in which all CFCs are stored (cfc

is inside site.dot.com).

Any help will be appreciated

Mauricio


_



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




Re: CF Flash grid

2003-10-10 Thread Clint Tredway
For that matter, Flash MX has a datagrid and by default all the columns 
are sortable.

http://www.digital12studios.com/contact/

HTH,
Clint

Ben Densmore wrote:

 Flash MX 2004 Pro has a Datagrid component. That is essentially what
 CFGRID is but it might be more stable than CFGRID.

 Ben

 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
 Sent: Friday, October 10, 2003 1:43 PM
 To: CF-Talk
 Subject: CF Flash grid

 Is there a flash grid that acts in many ways like the CFGRID tag and is
 easy to impliment. I'm looking for something that I can slap onto a page
 like this:
 swf call
 line data1
 line data2
 line data3
 etc.

 If it can be (or has been) wrapped into a custom tag then cool. The mail
 thing needed is the ability to sort some of the columns and have links
 in the columns.
 Thanks

_

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




Re: CF Flash grid

2003-10-10 Thread Clint Tredway
You can resize the columns dynamically.. it takes a bit of code but you 
can do that.

In my example app, the bottom datagrid is reused for the address, email, 
and phone data. Each time I reload that grid with the new columns and 
resize the columns. This was purely use for an example, but it is possible.

Now, for the horizontal scroll... that I haven't figured out yet 
though it probably could be done with a scrollpane and some actionscript...

Clint

Jim Davis wrote:

 There was one on one of the DevNet kits (the second, I think) - I was
 impressed but as it couldn't scroll horizontally it didn't suit my need.
 If anybody knows of one that DOES scroll horizontally (or allows for
 columns to be resized dynamically) AND meets Michael's requirements
 please let us know!


 Jim Davis


 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
 Sent: Friday, October 10, 2003 1:43 PM
 To: CF-Talk
 Subject: CF Flash grid


 Is there a flash grid that acts in many ways like the CFGRID tag and is
 easy to impliment. I'm looking for something that I can slap onto a page
 like this:
 swf call
 line data1
 line data2
 line data3
 etc.

 If it can be (or has been) wrapped into a custom tag then cool. The mail
 thing needed is the ability to sort some of the columns and have links
 in the columns.
 Thanks
_

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




Re: CF Flash grid

2003-10-10 Thread Clint Tredway
What do you mean by params? from the cfm or html file? sure just pass 
that in and use the array as the dataprovider for the datagrid...

Clint

Michael Dinowitz wrote:

 So nothing already out there? I'm looking for something that will 
 allow the column data as Params.

 For that matter, Flash MX has a datagrid and by default all the columns
 are sortable.
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CF Flash grid

2003-10-10 Thread Clint Tredway
Go to my example and you can 'grab' the columns and resize them by default.

Clint

Jim Davis wrote:

 I meant an end user resizing the columns.


 In this case the information being presented in financial transaction
 information.So we would like to display the screen with no horizontal
 scroll bar if at all possible - but give the user the ability to
 click'n'drag column widths (with the appropriate interface cues) to see
 hidden information.This is something CFGRID does but I've yet to see
 implemented well in any Flash component (in effect a real mimicking of
 the generic Windows grid control).


 Jim Davis


 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Friday, October 10, 2003 2:01 PM
 To: CF-Talk
 Subject: Re: CF Flash grid


 You can resize the columns dynamically.. it takes a bit of code but you
 can do that.

 In my example app, the bottom datagrid is reused for the address, email,

 and phone data. Each time I reload that grid with the new columns and
 resize the columns. This was purely use for an example, but it is
 possible.

 Now, for the horizontal scroll... that I haven't figured out yet
 though it probably could be done with a scrollpane and some
 actionscript...

 Clint

 Jim Davis wrote:

  There was one on one of the DevNet kits (the second, I think) - I was
  impressed but as it couldn't scroll horizontally it didn't suit my
 need.
  If anybody knows of one that DOES scroll horizontally (or allows for
  columns to be resized dynamically) AND meets Michael's requirements
  please let us know!
 
 
  Jim Davis
 
 
  -Original Message-
  From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
  Sent: Friday, October 10, 2003 1:43 PM
  To: CF-Talk
  Subject: CF Flash grid
 
 
  Is there a flash grid that acts in many ways like the CFGRID tag and
 is
  easy to impliment. I'm looking for something that I can slap onto a
 page
  like this:
  swf call
  line data1
  line data2
  line data3
  etc.
 
  If it can be (or has been) wrapped into a custom tag then cool. The
 mail
  thing needed is the ability to sort some of the columns and have links
  in the columns.
  Thanks
 _
 
 
_

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




Re: CF Flash grid

2003-10-10 Thread Clint Tredway
I work for a Financial Planning firm and use the datagrid in our apps. I 
wrote a help screen that showed how they can use the datagrid to sort 
and move the columns. We have some pretty simple users but once they saw 
the help, they knew right away how to use it.

Clint

im Davis wrote:

 True - but the interface cues aren't there - in other words unless you
 TELL me that I can, I don't know it.;^)When using a general Windows
 (or Mac) interface component when you approach an unlabeled control the
 cursor always changes to indicate it - it's something that's very often
 left off of Flash (and Java) controls.


 This application is for financial services customers/reps - not computer
 people.It has to be as self-explanatory as possible (we get enough
 calls as it is from people confused by CFGrid - we're not going to
 replace it unless we find something with greater usability, which we'd
 really like to find!)


 Jim Davis


 -Original Message-
 From: Clint Tredway [mailto:[EMAIL PROTECTED]
 Sent: Friday, October 10, 2003 4:24 PM
 To: CF-Talk
 Subject: Re: CF Flash grid


 Go to my example and you can 'grab' the columns and resize them by
 default.

 Clint

 Jim Davis wrote:

  I meant an end user resizing the columns.
 
 
  In this case the information being presented in financial transaction
  information.So we would like to display the screen with no
 horizontal
  scroll bar if at all possible - but give the user the ability to
  click'n'drag column widths (with the appropriate interface cues) to
 see
  hidden information.This is something CFGRID does but I've yet to
 see
  implemented well in any Flash component (in effect a real mimicking of
  the generic Windows grid control).
 
 
  Jim Davis
 
 
  -Original Message-
  From: Clint Tredway [mailto:[EMAIL PROTECTED]
  Sent: Friday, October 10, 2003 2:01 PM
  To: CF-Talk
  Subject: Re: CF Flash grid
 
 
  You can resize the columns dynamically.. it takes a bit of code but
 you
  can do that.
 
  In my example app, the bottom datagrid is reused for the address,
 email,
 
  and phone data. Each time I reload that grid with the new columns and
  resize the columns. This was purely use for an example, but it is
  possible.
 
  Now, for the horizontal scroll... that I haven't figured out yet
  though it probably could be done with a scrollpane and some
  actionscript...
 
  Clint
 
  Jim Davis wrote:
 
   There was one on one of the DevNet kits (the second, I think) - I
 was
   impressed but as it couldn't scroll horizontally it didn't suit my
  need.
   If anybody knows of one that DOES scroll horizontally (or allows for
   columns to be resized dynamically) AND meets Michael's requirements
   please let us know!
  
  
   Jim Davis
  
  
   -Original Message-
   From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
   Sent: Friday, October 10, 2003 1:43 PM
   To: CF-Talk
   Subject: CF Flash grid
  
  
   Is there a flash grid that acts in many ways like the CFGRID tag and
  is
   easy to impliment. I'm looking for something that I can slap onto a
  page
   like this:
   swf call
   line data1
   line data2
   line data3
   etc.
  
   If it can be (or has been) wrapped into a custom tag then cool. The
  mail
   thing needed is the ability to sort some of the columns and have
 links
   in the columns.
   Thanks
  _
  
  
 _
 
 
_

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




Re: Dynamic FORM.variables

2003-10-07 Thread Clint Tredway
I have done this.
cfloop index=i from=1 to=6 step=1
cfparam name=form.var#i# default=
/cfloop

You can also do:
cfloop index=i from=1 to=6 step=1
input type=text name=var#i#
/cfloop

HTH
Clint

Scott Wilhelm wrote:

 How would I create a dynamic FORM.variable?


 I am trying to call a series of variables from a form that are created 
 through a loop, but I'm not sure how to write them out...


 Would it be something like this:


 cfloop index=i from=1 to=6 step=1
 #FORM.var  index#
 /cfloop


 Thanks,


 Scott

 Scott Wilhelm
 Computer Technician/Web Developer
 http://www.sllboces.org 
 http://www.sllboces.org//http://scott.sllboces.org/ 
 http://scott.sllboces.org (digital desktop)
 [EMAIL PROTECTED]

 Canton (Mon/Tue)
 St. Lawrence-Lewis BOCES
 PO Box 231, 139 State Street Road
 Canton, NY 13617
 P.315-386-4504 x 164
 F.315-386-3395

 Heuvelton (Wed/Thu)
 Heuvelton Central School
 PO Box 375, 87 Washington Street
 Heuvelton, NY 13654
 P.315-344-2414 x 3651

 Massena (Fri)
 Massena Central School
 Massena, NY
 P.315-769-3700 x 3049?xml:namespace prefix = o ns = 
 urn:schemas-microsoft-com:office:office /




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




Re: Hosting at CrystalTech or EdgeWebHosting

2003-09-29 Thread Clint Tredway
I have 3 sites at crystaltech and they are great.

Clint


Snake Hollywood wrote:

 cfmxhosting.co.uk are good, good reviews, nice control panel. Do pretty
 much anything CF wise.



 -Original Message-
 From: Ryan Sabir [mailto:[EMAIL PROTECTED]
 Sent: 29 September 2003 01:21
 To: CF-Talk
 Subject: Hosting at CrystalTech or EdgeWebHosting


 Hey all,

 I remember some talk a while ago about some of you guys who were
 hosting with CrystalTech. How have they been lately? Most of the
 reviews I find about them say they are really good. I'm thinking of
 moving a high volume site over there.

 I'm also looking at another company called EdgeWebHosting has anyone
 tried them out?

 seeya!


 ---
 Ryan Sabir
 Newgency Pty Ltd
 2a Broughton St
 Paddington 2021
 Sydney, Australia
 Ph (02) 9331 2133
 Fax (02) 9331 5199
 Mobile: 0411 512 454
 http://www.newgency.com/index.cfm?referer=rysig

_

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



Re: Flash Chat

2003-09-26 Thread Clint Tredway
Cutter - I am open for IM chat if you need help.AOl - clint1274MSN - [EMAIL PROTECTED]YIM - clinttredwaycfhelp wrote: http://www.pipey.com/chat/default.asp http://www.pipey.com/chat/default.asp  http://www.pipey.com/chat/default.asp%3E Rick -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2003 7:38 AM To: CF-Talk Subject: OT: Flash Chat Does anyone know of a site with chat on Flash development? I've seen a hundred forums, and sites with Flash based chat clients, but not any chats on Flash dev... Cutter_ 
 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]



Re: OT: Flash question

2003-09-25 Thread Clint Tredway
Sure, I will help you...

Clint

Cutter (CF-Talk) wrote:

Anybody out there who might be willing to get into a Chat session with 
me for a few minutes about a Flash dev question?

Cutter


~|
ColdFusion MX 6.1, now 2.5 times faster. 
http://www.macromedia.com/software/coldfusion/productinfo/upgrade/jump/introducing.html?trackingid=ColdFusion_468x60g_HouseofFusion_carat_082803

Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138491
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MX Hosting Site recommendations

2003-09-23 Thread Clint Tredway
crystaltech.com has a plan that costs 16.95 a month
http://www.crystaltech.com/plan1.htm

Clint

Andy Ousterhout wrote:

I am looking for a new host for my MX with Access site.  Any recommendations?
My current host seems unable to operate the two together.  My site has been
down for 1 week as they try to figure it out.

Andy



~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138171
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: MX Hosting Site recommendations

2003-09-23 Thread Clint Tredway
Yes, I have multiple sites with them and love it.

Clint

Andy Ousterhout wrote:

Have you used them?  My problem with my existing provider is knowledge of
MX.

-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 23, 2003 1:20 PM
To: CF-Talk
Subject: Re: MX Hosting Site recommendations


crystaltech.com has a plan that costs 16.95 a month
http://www.crystaltech.com/plan1.htm

Clint

Andy Ousterhout wrote:

  

I am looking for a new host for my MX with Access site.  Any


recommendations?
  

My current host seems unable to operate the two together.  My site has been
down for 1 week as they try to figure it out.

Andy







~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138186
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Clint Tredway
Matt Liotta wrote:

Win IE5.5 required = unusable.


... by about 5% users...



That kind of perspective is how we got stuck with Microsoft in the 
first place!

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Any way to get Homesite+ 5.5 without Dreamweaver?

2003-09-12 Thread Clint Tredway
I jst have one thing to say...

Everyone needs to remember that DW in all its forms was never and 
probably will not ever be touted as a code only editor. To expect to be 
is silly because MM is targeting multiple levels of abilities with one tool.

Clint

Tony Weeg wrote:

I second that.

im not sure where they are/were going with the whole dwmx thing, to be
quite honest
it doesn't seem to be much of a choice of an ide for most CODERS 

but what it does do, is give the *my cousin is a web master and is going
to build me a web commerce email website thingie for $250 bucks*
something to work with, really slow, and produce shit, so that we can
get the takeover on those types of sites, and make money ,faster better
and cheaper using a real ide, like hs+ or cfs.

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: jon hall [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 12, 2003 10:26 AM
To: CF-Talk
Subject: Re: Any way to get Homesite+ 5.5 without Dreamweaver?


Yeah...I tried DW 2004...
I tried navigating to this file I wanted to open, but I think I fell
asleep actually trying to navigate to it with that lovely little file
pane, but not before being amazed by how much time must have been spent
on all those really cute, Fisher-Price looking, rounded edges
everywhere. After I passed out...my face must have hit the keyboard and
it got uninstalled somehow.

The DW UI team should really spend some time at a usability seminar or
two imo. Just like on a web site, the content should be the focus, in an
IDE, the code should be the focus. The code should not be overshadowed
by all these bright colorful buttons, and other distractions. Of
course...since the DW team is probably in San Francisco.oh
nevermind.

  




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


Re: Any way to get Homesite+ 5.5 without Dreamweaver?

2003-09-12 Thread Clint Tredway
Not really. What is more cost effective, having one tool that multiple 
levels of people can use or multiple tools for different levels of people?

We may not agree or like what MM is doing with DW, but I for one and 
happy with the new enhancements and I still use other editors for 
different purposes.

Clint


Claude Schneegans wrote:

MM is targeting multiple levels of abilities with one tool.
  


Now THIS is what is silly! ;-)


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: Anyone know of a decent SQL ide?

2003-09-12 Thread Clint Tredway
On that note also look at Rapid SQL from Embarcadero. It is expensive 
but very good.

Clint

jon hall wrote:

Check out Embarcadero's DBArtisan...beware sticker shock though.

  




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


FB4 Downloads

2003-09-09 Thread Clint Tredway
Does anyone know where FB4 can be downloaded? It seems the FB beta site 
is down and I really need to get these files.

Thanks,
Clint


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: FB4 Downloads

2003-09-09 Thread Clint
Ihave done the same thing and no files have been sent. I really need these
for a contract that I am about to start.

Thanks,
Clint

- Original Message - 
From: Stephenie Hamilton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, September 09, 2003 6:14 PM
Subject: FB4 Downloads


 the site has been coming and going, however, i have hit the request page
about 6 times with 2 email addresses and no files have shown up.
 steph



 Beta site seems to be up.  If not let me know and I will email them to
you.
 
 
 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Firefly

2003-09-04 Thread Clint Tredway
I can tell you from getting it with our DevNet, that it would be best to 
wait until Flash 2004 because the current FireFly is a pian to work with.

Remoting is more stable and a whole lot easier to work with at this point.

Clint

[EMAIL PROTECTED] wrote:

Seems kinda weird to drop it before the replacement is readywe want to
start looking at firefly and, at the moment, it would seem there is no way
of doing it.

Anyone know the ETA of Flash 2004?

Neil

  




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: query output to Excel file

2003-09-04 Thread Clint Tredway
Assuming SQL Server, the easiest way would be to do a DTS export 
directly an excel file.

If you are not using SQL Server, then there really isn't an easy way.

Clint


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: query output to Excel file

2003-09-04 Thread Clint Tredway
You can point to any excel file that the SQL Server can see. I can pump 
a DTS export to any excel file on our network.

Clint

Robertson-Ravo, Neil (RX) wrote:

The problem you will have about the excel file is that it usually writes to
the SQL server local dir.

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 04 September 2003 16:09
To: CF-Talk
Subject: RE: query output to Excel file


interesting... may have to try that as an avenue ;) thanks!

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 04, 2003 10:59 AM
To: CF-Talk
Subject: Re: query output to Excel file


Assuming SQL Server, the easiest way would be to do a DTS export 
directly an excel file.

If you are not using SQL Server, then there really isn't an easy way.

Clint





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: Pound sign question

2003-09-02 Thread Clint Tredway
Just use 2 # in the anchor and it will work fine.

Clint

E Creese wrote:

I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. 
How can I do this. What I am trying to do is list a menu category across the top of 
the page that will connect to the linked area further down in the page. Need to put a 
back to the top link in as well.

Eric


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: Authorize.NET Custom Tag?

2003-08-27 Thread Clint Tredway
I use the one from Oleani Technologies and it works great.
http://www.oleani.com/products.cfm?pid=2

I use this with CFMX and it was the only one that I could get to work.

Clint

- Original Message - 
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, August 27, 2003 11:27 AM
Subject: Re: Authorize.NET Custom Tag?


 Jeff,

 If you find a good one, please let me know.  About 4 months ago (before
 Authorize.net changed the way you communicate with their system), I tried
to
 use them.  It was a total nightmareI talked to 8 techs and a few
 managersnone gave me the same story and nobody could tell me how to
 reference the stuff they send back (i.e. approval codes etc.).  They said
 there were no variables and their thing they send back was a list of
 key/value pairsbut it didn't have a name!!!  Yeah rightso how to I
 reference it I saidthey saidyou just do!!.

 Soif ya find a tag that works. ;-)

 Cheers

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

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Jeff Chastain [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, August 27, 2003 9:14 AM
 Subject: Authorize.NET Custom Tag?


  I am putting together a shopping cart on very short notice for another
  developer and am looking for a way to communicate with Authorize.NET for
  payment processing.  I am looking at the Macromedia Exchange and there
are
  several different tags available.  Has anybody worked with one in
 particular
  that you could recommend?
 
  Thanks
  -- Jeff
 
 
 
 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CF Studio/HomeSite+

2003-08-26 Thread Clint Tredway
True, and Dreamweaver is cheaper than Studio was.

Clint

- Original Message - 
From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 21, 2003 9:14 AM
Subject: RE: CF Studio/HomeSite+


 Homesite+ is the only version of 'Studio' which MM still actively supports
 and develops AFAIKit is also ONLY included with DWMX

 -Original Message-
 From: Jim McAtee [mailto:[EMAIL PROTECTED]
 Sent: 21 August 2003 10:32
 To: CF-Talk
 Subject: CF Studio/HomeSite+


 Which of the two is still being maintained, even if not sold directly, by
 Macromedia?  Would it be Homesite+, since it's included with Dreamweaver
MX?

 We need to purchase a couple of additional licenses for CF Studio.  We're
 not
 working with CF6 MX and have no plans to move away from CF5 Server.  We
 don't
 have much use for Dreamweaver or any of the other Studio MX components. So
 what
 would be the best (and cheapest) route to aquiring a couple of
 Studio/Homesite+
 licenses?   If contacted directly, will Macromedia sell you CF Studio
 licenses,
 even though its no longer a product available for purchase from their web
 page?

 Jim


 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


Re: CF Studio/HomeSite+

2003-08-26 Thread Clint Tredway
True, and Dreamweaver is cheaper than Studio was.

Clint

- Original Message - 
From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 21, 2003 9:14 AM
Subject: RE: CF Studio/HomeSite+


 Homesite+ is the only version of 'Studio' which MM still actively supports
 and develops AFAIKit is also ONLY included with DWMX

 -Original Message-
 From: Jim McAtee [mailto:[EMAIL PROTECTED]
 Sent: 21 August 2003 10:32
 To: CF-Talk
 Subject: CF Studio/HomeSite+


 Which of the two is still being maintained, even if not sold directly, by
 Macromedia?  Would it be Homesite+, since it's included with Dreamweaver
MX?

 We need to purchase a couple of additional licenses for CF Studio.  We're
 not
 working with CF6 MX and have no plans to move away from CF5 Server.  We
 don't
 have much use for Dreamweaver or any of the other Studio MX components. So
 what
 would be the best (and cheapest) route to aquiring a couple of
 Studio/Homesite+
 licenses?   If contacted directly, will Macromedia sell you CF Studio
 licenses,
 even though its no longer a product available for purchase from their web
 page?

 Jim


 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CF Studio/HomeSite+

2003-08-21 Thread Clint Tredway
True, and Dreamweaver is cheaper than Studio was.

Clint

- Original Message - 
From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 21, 2003 9:14 AM
Subject: RE: CF Studio/HomeSite+


 Homesite+ is the only version of 'Studio' which MM still actively supports
 and develops AFAIKit is also ONLY included with DWMX

 -Original Message-
 From: Jim McAtee [mailto:[EMAIL PROTECTED]
 Sent: 21 August 2003 10:32
 To: CF-Talk
 Subject: CF Studio/HomeSite+


 Which of the two is still being maintained, even if not sold directly, by
 Macromedia?  Would it be Homesite+, since it's included with Dreamweaver
MX?

 We need to purchase a couple of additional licenses for CF Studio.  We're
 not
 working with CF6 MX and have no plans to move away from CF5 Server.  We
 don't
 have much use for Dreamweaver or any of the other Studio MX components. So
 what
 would be the best (and cheapest) route to aquiring a couple of
 Studio/Homesite+
 licenses?   If contacted directly, will Macromedia sell you CF Studio
 licenses,
 even though its no longer a product available for purchase from their web
 page?

 Jim


 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: MS SQL Server vs. MySQL

2003-08-21 Thread Clint Tredway
I will add my 2 cents..

In my tests, MySQL is faster than MSSQL. PHPMyAdmin is great from my view.
It has a learning curve, but it keeps getting better and better.

Clint

- Original Message - 
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 21, 2003 12:11 PM
Subject: MS SQL Server vs. MySQL


 Hey All,

 I'm not all that familiar with MySQL, but from what I hear it's not as
good
 as MS SQL Server (which I use along with Oracle).

 I've tried using MyPHPAdmin to administer MySQL before and all I can say
is
 it sucked eggs...security was confusing as all hell.

 The MySQL.com website says that upcoming features for version 5 include:
 -views
 -stored procedures
 -triggers
 -sub-queries

 Now if it's missing all that then what is itAccess on steroids?? ;-)

 Opinions please

 TIA

 Cheers

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

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com

 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: TEST - Please reply *at least once

2003-08-15 Thread Clint
got it ;)

- Original Message - 
From: B G [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 14, 2003 3:00 PM
Subject: TEST - Please reply *at least once


 Sorry to do this to you all, but I haven't seen any of my messages or
 responses in the last few days.

 Thanks!

 _
 Tired of spam? Get advanced junk mail protection with MSN 8.
 http://join.msn.com/?page=features/junkmail

 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Good News: (was RE: Mach II 1.0 )

2003-08-14 Thread Clint
I would second that book.

Clint

- Original Message - 
From: Calvin Ward [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 14, 2003 7:36 AM
Subject: Re: Good News: (was RE: Mach II 1.0 )


 Try this for starters:
 Dicovering CFCs by Helms, Edwards

 - Calvin

 - Original Message - 
 From: Murat Demirci [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, August 14, 2003 6:57 AM
 Subject: RE: Good News: (was RE: Mach II 1.0 )


  Who is the audience?
 
  You say we, CFMX developers, need to learn OO.
 
  OK. I want to learn it to create powerful apps but how? There is no
source
  for OO programming in CF?
 
  -Original Message-
  From: Hal Helms [mailto:[EMAIL PROTECTED]
  Sent: Thursday, August 14, 2003 11:40 AM
  To: CF-Talk
  Subject: RE: Good News: (was RE: Mach II 1.0 )
 
 
  You won't really need to know much about XML, Michael, but you will need
 to
  know OO to do a lot with Mach-II.
 
  Hal Helms
  Java for CF Programmers class
  in Las Vegas, August 18-22
  www.halhelms.com
 
  -Original Message-
  From: Mike Kear [mailto:[EMAIL PROTECTED]
  Sent: Thursday, August 14, 2003 1:35 AM
  To: CF-Talk
  Subject: Good News: (was RE: Mach II 1.0 )
 
 
  Hal put a new version of Mach-II on the site Mach-II.com last night, and
  bingo!  The problem was I wasn't using US date format.  In a jiffy, he
  corrected the bug so it accepted international date formats and now it
 goes.
 
  Like lightning it goes!
 
  It installed and the sample apps worked just like that - right out of
the
  box. No muss, no fuss.
 
  Now I want to know more about how this whole thing works.
 
  I get the impression that working in the Mach-II environment is going to
  require a knowledge of object-oriented programming terminology that I
 don't
  have.  Is that right? For example I rather get the impression that
  expressions like MVC - Model View Conroller are familiar to people
who've
  done other programming.  Is this so? If I want to become adept at
  using
  Mach-ii am I going to have to learn about OO Programming?
 
  I can see that amongst the disciplines I'm going to have to know well
are
  XML, but I need to learn more about that anyway.  Anything else?
 
  Cheers,
  Michael Kear
  Windsor, NSW, Australia
  AFP Webworks.
 
 
 
 
 
 
 
 
 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


Re: session/client variables 101

2003-08-14 Thread Clint
The only time I could see locking a session var is if it changes, i.e.
adding a total up for a shopping cart. If you are just setting an id to a
session var, then I do not think its necessary to lock it.

My 2 cents.

Clint

- Original Message - 
From: Bruce Sorge [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, August 07, 2003 3:32 PM
Subject: RE: session/client variables 101


 Although the chances of session variables getting crossed are pretty slim
in
 CFMX, it is still good practice to lock them.

 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 07, 2003 3:18 PM
 To: CF-Talk
 Subject: session/client variables 101

 Hello,  I am implementing session  client variables for the first time
(on
 a job/resume posting site).  This is in a shared hosting environment.  The
 server uses CFMX



 Based on recent postings I've read, it appears locking of session
variables
 is no longer necessary in the CFMX server environment  Is this true?



 TIA


 Tim Laureska

 e-mail: [EMAIL PROTECTED]




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

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

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



Re: CFMX + Remoting Assistance Needed

2003-08-04 Thread Clint
You have to change the flash gateway url for each machine.

So if you developed on http://www.first machine.com the moved the site to
http://www.secondmachine.com you will need to change the gate url.

HTH
Clint
- Original Message - 
From: Graham Pearson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, August 04, 2003 8:01 AM
Subject: CFMX + Remoting Assistance Needed


 I am working on an application which I have working on my development
 machine which uses CFMX (in Standalone Mode) and Visnetic Website Pro. I
am
 able on the local machine view all of the Flash Remoting Stuff and the
site
 is running smooth. Now I have a Semi-Production Server which is the same
as
 my development machine that I have been using to test my code before it
 goes live and the code works from the local console on this machine as
 well. My Problem is when I view the site from a remote location the Flash
 Remoting Stuff does not work. All of the .swf's are on the same machine in
 the same directory as the .cfm pages.


 Is their a way to debug remotely why the Flash stuff does not work on a
 remote computer browsing the site and why it works from sitting at the
console?



 Do you use the Macromedia MX Suite of Products? A new book has just
 been published called Macromedia MX: Building Rich Internet Applications

 Link:

http://www.amazon.com/exec/obidos/ASIN/0321158814/onsite/102-7426355-5264145

===
 Graham Pearson, System Administrator / Certified Webmaster / Published
 Northern Indiana Educational Services Center
 Voice: (574) 254-0444 Ext 108 / (800) 326-5642 Fax: (574) 254-0148
 Http://www.niesc.k12.in.us  http://support.niesc.k12.in.us   Email:
 [EMAIL PROTECTED]

===

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

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

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



Re: CFMX + Remoting Assistance Needed

2003-08-04 Thread Clint
I do the same thing and it works for me except for if the swf file is on
site1.com and I am trying to call it from site2.com; that I have not gotten
to work.

Clint

- Original Message - 
From: Graham Pearson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, August 04, 2003 8:45 AM
Subject: Re: CFMX + Remoting Assistance Needed


 In my code I pass CGI.Server_Name to the .swf file for the gate url. This
 works on both local consoles just not from a remote location.



 At 08:20 AM 8/4/2003, you wrote:
 You have to change the flash gateway url for each machine.
 
 So if you developed on http://www.first machine.com the moved the site to
 http://www.secondmachine.com you will need to change the gate url.
 
 HTH
 Clint
 - Original Message -
 From: Graham Pearson [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, August 04, 2003 8:01 AM
 Subject: CFMX + Remoting Assistance Needed
 
 
   I am working on an application which I have working on my development
   machine which uses CFMX (in Standalone Mode) and Visnetic Website Pro.
I
 am
   able on the local machine view all of the Flash Remoting Stuff and the
 site
   is running smooth. Now I have a Semi-Production Server which is the
same
 as
   my development machine that I have been using to test my code before
it
   goes live and the code works from the local console on this machine as
   well. My Problem is when I view the site from a remote location the
Flash
   Remoting Stuff does not work. All of the .swf's are on the same
machine in
   the same directory as the .cfm pages.
  
  
   Is their a way to debug remotely why the Flash stuff does not work on
a
   remote computer browsing the site and why it works from sitting at the
 console?
  
  
  
   Do you use the Macromedia MX Suite of Products? A new book has just
   been published called Macromedia MX: Building Rich Internet
Applications
  
   Link:
  

http://www.amazon.com/exec/obidos/ASIN/0321158814/onsite/102-7426355-526414
5
  

===
   Graham Pearson, System Administrator / Certified Webmaster / Published
   Northern Indiana Educational Services Center
   Voice: (574) 254-0444 Ext 108 / (800) 326-5642 Fax: (574) 254-0148
   Http://www.niesc.k12.in.us  http://support.niesc.k12.in.us   Email:
   [EMAIL PROTECTED]
  

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

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

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



Re: Hosting Revisited.

2003-07-28 Thread Clint Tredway
i tried replyong just to you... i would def hammer it..

 I need one more person to test out my servers.  I really would like 
it to be
 some one that's going to hammer it.  Flash Remoting, CFCs, and Web 
Services
 will need to be tested hard.
 
 Let me know if your interested
 
 Tim
 
 ---
 [This E-mail scanned for viruses by Declude Virus]
 
 

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

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

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



Re: cf hosting

2003-07-25 Thread Clint
I would have to second crystaltech. I have 2 clients there and I have not
had any issues.

Clint

- Original Message - 
From: Michael T. Tangorre [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, July 25, 2003 10:09 AM
Subject: Re: cf hosting


 I know they are expensive... we use them now, and they ... well... anyways
 :-)
 I am looking around.

 Mike


 - Original Message - 
 From: Dirk Marshall [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Friday, July 25, 2003 11:00 AM
 Subject: Re: cf hosting


  Looks expensive, check out Crystaltech.  www.crystaltech.com   I have
been
  very satisfied with their service.  You get quite a bit for the amount
of
  money you pay.
 
  Dirk
  - Original Message - 
  From: Michael T. Tangorre [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Friday, July 25, 2003 7:52 AM
  Subject: cf hosting
 
 
   Anyone use datapipe?  (www.datapipe.com)
  
   if so...  likes, dislikes?
  
   Thanks,
  
   Mike
  
  
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

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



Re: Cons to Fusebox

2003-07-17 Thread Clint
You can accomplish the same thing with dynamic paths and still not have to
use fusebox. There are easier ways to do this and not have all the overhead
of FB.

Clint

- Original Message - 
From: Brian Kotek [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 12:48 PM
Subject: Cons to Fusebox


 First, I just want to be sure you understand what the fuseaction actually
is.  It's in the format circuit.targetfuseaction, where the circuit part
is the alias of a Fusebox circuit, and the targetfuseaction part is the
actual action within that circuit that you want to execute. I just wanted to
make sure that was clear.  So...

 Abstraction is one huge benefit of circuits.  When I do
index.cfm?fuseaction=store.productdetails, I don't know, or care, WHERE
the store circuit is.  This applies to both the logical and physical
structure of the site.  Using circuit aliases masks these dependencies
because the core file handles translation of the alias to a directory path
to be called.  So as a team developer creating a link to that section of the
site, I don't need to know anything about the application's directory
structure or where that part of the site is located.

 On the other hand, using /root/store/products/productdetails.cfm in a
link requires you to know EVERYTHING about the physical structure of the
site for EVERY link.  And if for some reason I refactor the site, and part
of the change is to alter the physical location of my products directory, or
break it up into more than one directory?  Better open up a lot of files or
break out the extended search and replace, because every link that points
there is going to have to be changed.

 Circuits also allow for very easy dynamic links.  If I have a component
that creates a form, and I want to reuse that form in multiple places in the
system but I want it to post to different things, this is really easy with
circuits.  You do: form action=index.cfm?fuseaction=#xfa.formAction#.
Then at runtime, you can set xfa.formAction to be anything you need it to
be.  Bam...like magic the form can now post to any fuseaction you need it
to...and you never need to touch the code itself, only set the xfa variable.

 Pretty much, your question goes right to the heart of why Fusebox uses
circuits in the first place.  The answer is that when related code is
grouped together, that code is easier to maintain and change.  Placing code
into directories can do this as well, in fact Fusebox circuits are aliases
for directories.  But with circuits, you get that layer of abstraction
between the alias of the circuit and it's actual path. I can tell you from
real world experience that when you have to make significant changes to the
structure of your application, it is REALLY nice to be able to edit a few
lines in your circuit definitions and be done with it, instead of having to
change links all over the place.

 Hope that helps,

 Brian

 Mosh Teitelbaum wrote:
 I've been pondering the benefits and downsides of this approach for a
while
 now.  Since you bring it up, I was wondering what everyone else thought
 about all requests having to come in through an application spine?  That
is,
 what benefits exist and/or are perceived to exist from structuring all of
 your HREFs like index.cfm?fuseaction=foo.bar or
index.cfm?displayPage=5
 instead of /foo/bar.cfm and page5.cfm respectively?
 
 Anyone?
 
 --
 Mosh Teitelbaum
 evoch, LLC
 Tel: (301) 942-5378
 Fax: (301) 933-3651
 Email: [EMAIL PROTECTED]
 WWW: http://www.evoch.com/
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

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



Re: Cons to Fusebox

2003-07-17 Thread Clint
I agree with this ;)

Clint

- Original Message - 
From: Benoit Hediard [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 1:23 PM
Subject: RE: Cons to Fusebox


 it is REALLY nice to be able to edit a few lines in your circuit
 definitions and be done with it, instead of having to change links all
over
 the place.

 I agree with most of your points.
 But if you decide to change your fuseaction names and circuits structure,
 don't you have to change links all over the place, plus the fusebox
 configuration files?
 (fuseaction names and circuits are also harcoded all over the place,
 instead of file names and directories)

 It solves the problem by adding another one and add complexity/overhead to
 your app.
 Always the same dilemma : when to stop to add levels/layers of
abstration...
 :)

 Benoit Hediard
 www.benorama.com

  -Message d'origine-
  De : Brian Kotek [mailto:[EMAIL PROTECTED]
  Envoyé : jeudi 17 juillet 2003 19:48
  À : CF-Talk
  Objet : Cons to Fusebox
 
 
  First, I just want to be sure you understand what the fuseaction
  actually is.  It's in the format circuit.targetfuseaction,
  where the circuit part is the alias of a Fusebox circuit, and
  the targetfuseaction part is the actual action within that
  circuit that you want to execute. I just wanted to make sure that
  was clear.  So...
 
  Abstraction is one huge benefit of circuits.  When I do
  index.cfm?fuseaction=store.productdetails, I don't know, or
  care, WHERE the store circuit is.  This applies to both the
  logical and physical structure of the site.  Using circuit
  aliases masks these dependencies because the core file handles
  translation of the alias to a directory path to be called.  So as
  a team developer creating a link to that section of the site, I
  don't need to know anything about the application's directory
  structure or where that part of the site is located.
 
  On the other hand, using
  /root/store/products/productdetails.cfm in a link requires you
  to know EVERYTHING about the physical structure of the site for
  EVERY link.  And if for some reason I refactor the site, and part
  of the change is to alter the physical location of my products
  directory, or break it up into more than one directory?  Better
  open up a lot of files or break out the extended search and
  replace, because every link that points there is going to have to
  be changed.
 
  Circuits also allow for very easy dynamic links.  If I have a
  component that creates a form, and I want to reuse that form in
  multiple places in the system but I want it to post to different
  things, this is really easy with circuits.  You do: form
  action=index.cfm?fuseaction=#xfa.formAction#.  Then at runtime,
  you can set xfa.formAction to be anything you need it to be.
  Bam...like magic the form can now post to any fuseaction you need
  it to...and you never need to touch the code itself, only set the
  xfa variable.
 
  Pretty much, your question goes right to the heart of why Fusebox
  uses circuits in the first place.  The answer is that when
  related code is grouped together, that code is easier to maintain
  and change.  Placing code into directories can do this as well,
  in fact Fusebox circuits are aliases for directories.  But with
  circuits, you get that layer of abstraction between the alias of
  the circuit and it's actual path. I can tell you from real world
  experience that when you have to make significant changes to the
  structure of your application, it is REALLY nice to be able to
  edit a few lines in your circuit definitions and be done with it,
  instead of having to change links all over the place.
 
  Hope that helps,
 
  Brian
 
  Mosh Teitelbaum wrote:
  I've been pondering the benefits and downsides of this approach
  for a while
  now.  Since you bring it up, I was wondering what everyone else thought
  about all requests having to come in through an application
  spine?  That is,
  what benefits exist and/or are perceived to exist from structuring all
of
  your HREFs like index.cfm?fuseaction=foo.bar or
  index.cfm?displayPage=5
  instead of /foo/bar.cfm and page5.cfm respectively?
  
  Anyone?
  
  --
  Mosh Teitelbaum
  evoch, LLC
  Tel: (301) 942-5378
  Fax: (301) 933-3651
  Email: [EMAIL PROTECTED]
  WWW: http://www.evoch.com/
  
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

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

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



Re: Cons to Fusebox

2003-07-17 Thread Clint
This was my point as well... Thanks Matt.

Clint
- Original Message - 
From: Matt Robertson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 2:13 PM
Subject: RE: Cons to Fusebox


 Barney wrote:
 Take this snip from FB4:
   !-- this automatically adds the current circuit --
   xfa name=process value=process /
   ...
   a href=#self##xfa.process#link text/a
 versus this snip from a non-FB app:
   a href=../products/processproductform.cfmlink text/a

 Or versus this snip from a non-FB app:

 a href=#request.ProductsBaseHRef#processproductform.cfmlink text/a

 Or to stretch it a bit (too far perhaps):

 a
 href=#request.BaseHRef##request.ProductsFolder#processproductform.cfm
 link text/a

 Or this:

 a href=#cgi.script_name#?#client.defaultparms#blah=blahlink
 text/a

 You certainly don't need FB to standardize locations.  Why would you
 point to something that's so simple to achieve in so simple a fashion?
 I can move an entire web site by a)copying the files, b)reassigning to a
 new dsn and c)editing a db record to change urls and physical paths.
 Elapsed time is maybe 5 minutes, with 3 of that being the copy process.
 In a simpler app this could simply go into something like
 application.cfm.

 
  Matt Robertson   [EMAIL PROTECTED]
  MSB Designs, Inc.  http://mysecretbase.com
 

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

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

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



Re: OT: Generating a flash file on the fly question

2003-07-16 Thread Clint
Or you can use PHP/MING and do this..

- Original Message - 
From: Thomas Chiverton [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 9:37 AM
Subject: Re: OT: Generating a flash file on the fly question


 On Wednesday 16 Jul 2003 15:26 pm, Brian Ferrigno wrote:
  Can I do this without having to use
  Flash MX to generate the files?

 Yes. Use Perl.

 -- 
 Thomas C
 Advanced ColdFusion Programmer

 HANDLE WITH EXTREME CARE: This Email Contains Minute Electrically Charged
 Particles Moving at Velocities in Excess of Five Hundred Million Miles Per
 Hour.
 PLEASE ALSO NOTE: I don't speak for the company that sent this.

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

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

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



RE: Cons to Fusebox

2003-07-16 Thread Clint Tredway
I recently helped on a project that used Fusebox. I tell you what.. Talk
about doing more than what you need. I will never understand using
Fusebox. It took more time to build the parts that I needed to get done
using Fusebox than it would have had I just built it the way that I do
it. 

I know it may work for some, but for me.. I don't like it. 

My 2 cents...

Clint


-Original Message-
From: GL [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 7:45 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


Right Barney. I've architected dozens of FB3 sites without ever needing
to use a recursive call to the fusebox. 

Earlier in the thread someone mentioned that FB3 has garnered a lot of
bad press. Everyone in the FB community loves FB3! I've been to most of
the conferences and have been on the HOF list for a few years. In my
opinion the only bad press I've heard is from overly clever folks who
try to make things as complicated as possible rather than just getting
the job done. FB 3 gets the job done with tons of upside. FB4 sounds
like it'll be great also, but shouldn't take anything away from FB3.

Greg

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 7:26 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


Wow.  I'm impressed.

From what I've gathered, applications making heavy use of recursive
calls to the fusebox are not the norm for FB3 applications, and the
performance gain you mention is tied directly to that style of coding.
If you don't make use of recursive calls, you'll see a performance
increase with FB4 over FB3, but it won't be nearly that substantial.

I'm not beating a dead horse, just don't want to let anyone get the idea
that FB4 is orders of magnitude faster for all situations.  It might be
for some, but not all.

cheers,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com


 -Original Message-
 From: Brian Kotek [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 16, 2003 4:43 PM
 To: CF-Talk
 Subject: Cons to Fusebox


 I should have been clearer, in that the application in question used
 multiple CFMODULE calls to recursively call the Fusebox core and 
 populate several sections of content.  Other than the change from FB3 
 to FB4 (along with the elimination of the CFMODULEs), no other changes

 were made to the application.  The processing time for an average page

 in this application dropped from 400 ms to 40 ms when using Fusebox 4
 in production mode (a setting in the fusebox.xml file).  Obviously, 
 your mileage may vary, but I feel this is a pretty good example of the

 increase in performance that FB4 can deliver.

 Brian's comparison needs qualification.  If a request takes
 400ms to render,
 but 350 of that was a slow query, then it'll only drop to around
 360ms with
 FB4.  It's only the framework code that is enormously faster, not the

 application code.  In my experiences, the framework overhead was
 annoying,
 but fairly small (never more than 10-15%) of total execution
 time.  Assuming
 that tenfold decrease is valid (it's probably reasonable), you're
 only looking at shaving 10% off your total execution time.  The point
 is that FB3
 isn't horribly slower, it's the application that takes most of
 the time, not
 the framework.  FB4 is has a lighter weight execution time, but
 it's a small
 difference overall.
 


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

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

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



RE: Cons to Fusebox

2003-07-16 Thread Clint Tredway
It was FB3 and this was the first 'official' project that I had used it
but I had used it on my to see if it was something that I wanted to use.
I found that it wasn't.

In a nutshell, I don't like having all my files going through a switch
and having a to add a case statement every time I add a section. There
are too many things for me to list here that I don't like and that drove
me nuts while working on that project.

I have been using CF since 3.11 and just have found FB3 or any FB
version for that matter too much work to get the job done. This is all
my opinion as I have seen that it works for some... Just not me.

Clint

-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 8:07 PM
To: CF-Talk
Subject: Cons to Fusebox


Could you be more detailed, Clint?  What exactly took so long?  How was
it 'more than you needed'?  What version of Fusebox was used?  How much
experience have you had with it?

I've been using Fusebox for years, and CF since version 3, and I've had
much different results with Fusebox.  Not only does it make things a
whole lot easier, but when you are working on a team and you all know
Fusebox, the productivity can be amazing.


I recently helped on a project that used Fusebox. I tell you what.. 
Talk about doing more than what you need. I will never understand using

Fusebox. It took more time to build the parts that I needed to get done

using Fusebox than it would have had I just built it the way that I do 
it.

I know it may work for some, but for me.. I don't like it.

My 2 cents...

Clint

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

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

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



RE: Cons to Fusebox

2003-07-16 Thread Clint Tredway
I do use a framework, just not FB. I feel that FB adds a lot of overhead
to my dev time. 

Now I am doing lots of RIA's with Flash and so most if not all of my
current and future apps will not have an HTML interface and so I do not
need FB. But, again, this is all my opinion.. ;)

Clint

-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 8:39 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


My FB knowledge is a bit old (FB2 days), but what I remember is that FB
basically provided a programming framework.  For those of us that had a
programming background (i.e. desktop applications), building a
programming structure is/was a natural thing.  On the otherhand, web
developers without that programming background (i.e. they knew HTML, and
are/were relatively new to scripting) would benifit from FB because it
imposed structure on the applications they were creating.

I know FB has evolved since those days, so maybe this view is outdated.
From what I've seen of this thread, it might be worth looking at FB 
again.
But now that I can build components, and basically implement OOP
techniques, I don't know if FB would offer me anything that I can't
already do through another method.

My thoughts, not yours

Shawn

-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 6:57 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


I recently helped on a project that used Fusebox. I tell you what.. Talk
about doing more than what you need. I will never understand using
Fusebox. It took more time to build the parts that I needed to get done
using Fusebox than it would have had I just built it the way that I do
it. 

I know it may work for some, but for me.. I don't like it. 

My 2 cents...

Clint


-Original Message-
From: GL [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 7:45 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


Right Barney. I've architected dozens of FB3 sites without ever needing
to use a recursive call to the fusebox. 

Earlier in the thread someone mentioned that FB3 has garnered a lot of
bad press. Everyone in the FB community loves FB3! I've been to most of
the conferences and have been on the HOF list for a few years. In my
opinion the only bad press I've heard is from overly clever folks who
try to make things as complicated as possible rather than just getting
the job done. FB 3 gets the job done with tons of upside. FB4 sounds
like it'll be great also, but shouldn't take anything away from FB3.

Greg

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 16, 2003 7:26 PM
To: CF-Talk
Subject: RE: Cons to Fusebox


Wow.  I'm impressed.

From what I've gathered, applications making heavy use of recursive
calls to the fusebox are not the norm for FB3 applications, and the
performance gain you mention is tied directly to that style of coding.
If you don't make use of recursive calls, you'll see a performance
increase with FB4 over FB3, but it won't be nearly that substantial.

I'm not beating a dead horse, just don't want to let anyone get the idea
that FB4 is orders of magnitude faster for all situations.  It might be
for some, but not all.

cheers,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com


 -Original Message-
 From: Brian Kotek [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 16, 2003 4:43 PM
 To: CF-Talk
 Subject: Cons to Fusebox


 I should have been clearer, in that the application in question used 
 multiple CFMODULE calls to recursively call the Fusebox core and 
 populate several sections of content.  Other than the change from FB3 
 to FB4 (along with the elimination of the CFMODULEs), no other changes

 were made to the application.  The processing time for an average page

 in this application dropped from 400 ms to 40 ms when using Fusebox 4 
 in production mode (a setting in the fusebox.xml file).  Obviously, 
 your mileage may vary, but I feel this is a pretty good example of the

 increase in performance that FB4 can deliver.

 Brian's comparison needs qualification.  If a request takes
 400ms to render,
 but 350 of that was a slow query, then it'll only drop to around
 360ms with
 FB4.  It's only the framework code that is enormously faster, not the

 application code.  In my experiences, the framework overhead was
 annoying,
 but fairly small (never more than 10-15%) of total execution
 time.  Assuming
 that tenfold decrease is valid (it's probably reasonable), you're 
 only looking at shaving 10% off your total execution time.  The point
 is that FB3
 isn't horribly slower, it's the application that takes most of
 the time, not
 the framework.  FB4 is has a lighter weight execution time, but
 it's a small
 difference overall

  1   2   3   4   5   6   >