Need help to configure SMS with CF application

2014-04-29 Thread Sathyanarayanan Ramanathan

Dear Friends,

I have been provided with below details. I don't know how to configure SMS with 
CF application. Your valuable time  help is really appreciated.

SMS short code details:
Action: Provide
ShortCode: (4 digit no)
Sender ID: Admin
Throughput: 5
Classification: Normal

SMS Connectivity details:
IP address: 
Action: Provide

Thanks,
Sathya
(sathya0...@gmail.com) 

~|
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:358453
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Need help to configure SMS with CF application

2014-04-29 Thread John M Bliss

Perhaps helpful...?  http://smsgateway.riaforge.org


On Tue, Apr 29, 2014 at 3:17 AM, Sathyanarayanan Ramanathan 
sathya0...@gmail.com wrote:


 Dear Friends,

 I have been provided with below details. I don't know how to configure SMS
 with CF application. Your valuable time  help is really appreciated.

 SMS short code details:
 Action: Provide
 ShortCode: (4 digit no)
 Sender ID: Admin
 Throughput: 5
 Classification: Normal

 SMS Connectivity details:
 IP address: 
 Action: Provide

 Thanks,
 Sathya
 (sathya0...@gmail.com)

 

~|
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:358454
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Russ Michaels

If I recall there is optipn to throw error on timeout on some tags

Regards
Russ Michaels
www.michaels.me.uk
www.cfmldeveloper.com - Free CFML hosting for developers
www.cfsearch.com - CF search engine
On Nov 30, 2012 1:43 AM, Andrew Scott andr...@andyscott.id.au wrote:


 Well technically a timeout is an error, but it is ColdFusion throwing it
 because it can't run the page in the specified time, and is still not
 handled by cftry.

 --
 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


 On Fri, Nov 30, 2012 at 12:30 PM, Russ Michaels r...@michaels.me.uk
 wrote:

 
  A timeout usually results in an error though.
 
  Regards
  Russ Michaels
  www.michaels.me.uk
  www.cfmldeveloper.com - Free CFML hosting for developers
  www.cfsearch.com - CF search engine
 
 


 

~|
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:353316
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Andrew Scott

I would be guessing this is a page time out, only because there seems to be
a number of cfhttp calls going on. I don't think page time outs fall into
the same category you're thinking Russ.

However I did a bit of research and found the following article by Ben
Nadel.

http://www.bennadel.com/blog/916-Graceful-ColdFusion-Timeout-Disaster-Recovery-Thanks-Barney-Boisvert-.htm

My guess is that one could reset the page time out using this method, so
for example if you know that all the cfhttp calls are going to take around
2-3 secs (Just pulling numbers here) then in theory before the loop moves
into its next iteration or at the beginning of the loop one could make sure
that the page time out is reset to 30 secs.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Fri, Nov 30, 2012 at 7:17 PM, Russ Michaels r...@michaels.me.uk wrote:


 If I recall there is optipn to throw error on timeout on some tags

 Regards
 Russ Michaels
 www.michaels.me.uk
 www.cfmldeveloper.com - Free CFML hosting for developers
 www.cfsearch.com - CF search engine



~|
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:353317
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Claude Schnéegans

 I would be guessing this is a page time out, only because there seems to be
a number of cfhttp calls going on.

Right, the time required for the HTTP calls represents a high percentage of the 
total time in the loop, so chances the time limit occurs during the HTTP are 
high.

But I still don't see why CF cannot throw an error on a time limit in this case.
No error is catched, no error is reported and onRequestEnd is not executed.
IMO at least ONE of these three should occur.


~|
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:353318
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Russ Michaels

Actually there is a setting in the cfadmin for a pagetodisplay on timeouts.

Regards
Russ Michaels
www.michaels.me.uk
www.cfmldeveloper.com - Free CFML hosting for developers
www.cfsearch.com - CF search engine
On Nov 30, 2012 3:51 PM,  wrote:


  I would be guessing this is a page time out, only because there seems
 to be
 a number of cfhttp calls going on.

 Right, the time required for the HTTP calls represents a high percentage
 of the total time in the loop, so chances the time limit occurs during the
 HTTP are high.

 But I still don't see why CF cannot throw an error on a time limit in this
 case.
 No error is catched, no error is reported and onRequestEnd is not executed.
 IMO at least ONE of these three should occur.


 

~|
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:353319
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Claude Schnéegans

 Actually there is a setting in the cfadmin for a pagetodisplay on timeouts.

Thanks. Didn't know that.


~|
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:353320
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-30 Thread Andrew Scott

That is news to me...

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Sat, Dec 1, 2012 at 3:00 AM, Russ Michaels r...@michaels.me.uk wrote:


 Actually there is a setting in the cfadmin for a pagetodisplay on timeouts.

 Regards
 Russ Michaels
 www.michaels.me.uk
 www.cfmldeveloper.com - Free CFML hosting for developers
 www.cfsearch.com - CF search engine
 On Nov 30, 2012 3:51 PM,  wrote:

 



~|
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:353321
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Claude Schnéegans

 it is because your dumping the
cfcatch which actually does contain the error that occurred.

I don't understand what you mean.
The dump never occurs, thus the error is not catched.

Anyway the problem was simply a time limit of 60 sec by default.
This is weird because exception type is Any by default, and it should catch 
timout exceptions.


~|
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:353310
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott

Then that indicates that there is no error...

If it is not ending up in the catch, I think you will find that your not
thinking about this correctly.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411



On Fri, Nov 30, 2012 at 4:16 AM,  wrote:


  it is because your dumping the
 cfcatch which actually does contain the error that occurred.

 I don't understand what you mean.
 The dump never occurs, thus the error is not catched.

 Anyway the problem was simply a time limit of 60 sec by default.
 This is weird because exception type is Any by default, and it should
 catch timout exceptions.




~|
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:353311
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Claude Schnéegans

 Then that indicates that there is no error...

There was an error, a timeout error.
A far as I can remember, timeout errors were thrown, even while executing a 
CFHTTP request.


~|
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:353312
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott

Timeout errors are ColdFusion problems, they are not captured by the cftry.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Fri, Nov 30, 2012 at 11:35 AM,  wrote:


  Then that indicates that there is no error...

 There was an error, a timeout error.
 A far as I can remember, timeout errors were thrown, even while executing
 a CFHTTP request.


 

~|
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:353313
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Russ Michaels

A timeout usually results in an error though.

Regards
Russ Michaels
www.michaels.me.uk
www.cfmldeveloper.com - Free CFML hosting for developers
www.cfsearch.com - CF search engine
On Nov 30, 2012 12:42 AM, Andrew Scott andr...@andyscott.id.au wrote:


 Timeout errors are ColdFusion problems, they are not captured by the cftry.

 --
 Regards,
 Andrew Scott
 WebSite: http://www.andyscott.id.au/
 Google+:  http://plus.google.com/113032480415921517411


 On Fri, Nov 30, 2012 at 11:35 AM,  wrote:

 
   Then that indicates that there is no error...
 
  There was an error, a timeout error.
  A far as I can remember, timeout errors were thrown, even while executing
  a CFHTTP request.
 
 
 

 

~|
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:353314
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott

Well technically a timeout is an error, but it is ColdFusion throwing it
because it can't run the page in the specified time, and is still not
handled by cftry.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Fri, Nov 30, 2012 at 12:30 PM, Russ Michaels r...@michaels.me.uk wrote:


 A timeout usually results in an error though.

 Regards
 Russ Michaels
 www.michaels.me.uk
 www.cfmldeveloper.com - Free CFML hosting for developers
 www.cfsearch.com - CF search engine




~|
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:353315
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF application ends prematurely in CFHTTP

2012-11-28 Thread Claude Schnéegans

Hi,
I have an application that reads pages in a loop using CFHTTP.
It works well, but when the number of pages read reaches some variable 
threshold,
the application seems to abort from inside the CFHTTP command.

Roughly, the code looks like this:

CFLOOP QUERY=getAddresses
CFTRY
CFOUTPUTOutput something 1/CFOUTPUT
CFHTTP URL=#getAddresses.address# METHOD=GET
   charset = iso8859-1 TIMEOUT=10
   CFCATCH
 CFDUMP var=#cfcatch#cfabort
   /CFCATCH
   /CFTRY
CFOUTPUTOutput something 2/CFOUTPUT
 ...
/CFLOOP


Before the loop ends, the browser receives the content of the page.
The last line shows Output something 1
so obviously the application exits from CFHTTP, but no error is thrown, and 
onRequestEnd.cfm is not called,
neither the template set in CFERROR.

It happens on differents visited sites, only when the number of requests exceed 
a couple of hundreds.
It is not an issue with the remote server deciding it gets too many requests,
if I add a sleep(2000) in the loop, the application ends after a much smaller 
number of loops, but about the same time amount.

I have other applications that take more time and work to the end with no 
problem.

Any hint ?


~|
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:353306
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF application ends prematurely in CFHTTP

2012-11-28 Thread Andrew Scott

No error will be shown, well actually it is because your dumping the
cfcatch which actually does contain the error that occurred.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+:  http://plus.google.com/113032480415921517411


On Thu, Nov 29, 2012 at 1:31 PM,  wrote:


 Hi,
 I have an application that reads pages in a loop using CFHTTP.
 It works well, but when the number of pages read reaches some variable
 threshold,
 the application seems to abort from inside the CFHTTP command.

 Roughly, the code looks like this:

 CFLOOP QUERY=getAddresses
 CFTRY
 CFOUTPUTOutput something 1/CFOUTPUT
 CFHTTP URL=#getAddresses.address# METHOD=GET
charset = iso8859-1 TIMEOUT=10
CFCATCH
  CFDUMP var=#cfcatch#cfabort
/CFCATCH
/CFTRY
 CFOUTPUTOutput something 2/CFOUTPUT
  ...
 /CFLOOP


 Before the loop ends, the browser receives the content of the page.
 The last line shows Output something 1
 so obviously the application exits from CFHTTP, but no error is thrown,
 and onRequestEnd.cfm is not called,
 neither the template set in CFERROR.

 It happens on differents visited sites, only when the number of requests
 exceed a couple of hundreds.
 It is not an issue with the remote server deciding it gets too many
 requests,
 if I add a sleep(2000) in the loop, the application ends after a much
 smaller number of loops, but about the same time amount.

 I have other applications that take more time and work to the end with no
 problem.

 Any hint ?


 

~|
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:353307
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: how to restart a specific CF application (not app server)

2011-05-05 Thread Dan Joxer

How do I do this in application.cfm? I'm working with a legacy web site that 
was developed by someone else on an external host.

Thanks.

Something like this could work for your needs.

cffunction name=onRequestStart returnType=boolean output=true
cfargument name=thePage type=string required=true
!--- Let's re-initialize the application if somename_refresh is
present in the URL. ---
cfif StructKeyExists(URL,somename_refresh)
cfset OnApplicationStart()
/cfif 

~|
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:344268
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: how to restart a specific CF application (not app server)

2011-05-05 Thread Ian Skinner

 I know I could restart the ColdFusion service and that would probably 
 do the trick.  However I'm anticipating needing to do modify 
 onApplicationStart several times during the course of development, and 
 I would prefer to find a way to restart just this particular 
 application.

Set the applicationTimeOut values (i.e. this.applicaitonTimeOut) to 0.  Run a 
template in the application and the application immediately times out.  Then 
the next time (and all times until you again change the applicationTimeOut 
value) the onApplicationStart event will fire.



~|
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:344270
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: how to restart a specific CF application (not app server)

2011-05-05 Thread Jeffrey Battershall

Another approach - simply change the name of the application in
application.cfm.  Forces a new application.

On Thu, May 5, 2011 at 12:33 PM, Ian Skinner h...@ilsweb.com wrote:

 I know I could restart the ColdFusion service and that would probably
 do the trick.  However I'm anticipating needing to do modify
 onApplicationStart several times during the course of development, and
 I would prefer to find a way to restart just this particular
 application.

 Set the applicationTimeOut values (i.e. this.applicaitonTimeOut) to 0.  Run a 
 template in the application and the application immediately times out.  Then 
 the next time (and all times until you again change the applicationTimeOut 
 value) the onApplicationStart event will fire.



 

~|
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:344271
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Best practice for backup of CF Application server?

2010-10-13 Thread Chuck Wyatt

We're running ColdFusion 9, and I understand we can backup the XML files in 
Web-INF to get the datasource meta data for a less troublesome restore, God 
forbid we'd have to do that at any point.

Aside from CFM templates of the site itself, should we also backup the CFIDE 
tree? Anything else that would be a good practice in the event we'd need to 
recover a site on short notice?

Thanks so much,

Chuck 

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


Re: Best practice for backup of CF Application server?

2010-10-13 Thread Dave Watts

 We're running ColdFusion 9, and I understand we can backup the XML files in 
 Web-INF to get the datasource meta data for a
 less troublesome restore, God forbid we'd have to do that at any point.

 Aside from CFM templates of the site itself, should we also backup the CFIDE 
 tree? Anything else that would be a good practice
 in the event we'd need to recover a site on short notice?

You might want to back up your web server configuration also - there's
typically a bunch of important details in there. If you're using
Apache, this is typically very easy to do. If you're using IIS, you
can explicitly back up the entire metabase (or whatever they call it
now) or specific items.

If you're using SSL certificates, you want to make sure you have the
certificate files (including CSRs) backed up somewhere also.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

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


Re: Best practice for backup of CF Application server?

2010-10-13 Thread Russ Michaels

actually you can take a copy of the whole coldfusion install folder, and if
you have to reinstall CF, you can just copy it over the top and everything
will be restored.
Stopping the services first of course.
We have also used this method to roll back after a failed cf 9.0.1 upgrade.


Russ


On Wed, Oct 13, 2010 at 3:23 PM, Chuck Wyatt cwy...@clarku.edu wrote:


 We're running ColdFusion 9, and I understand we can backup the XML files in
 Web-INF to get the datasource meta data for a less troublesome restore,
 God forbid we'd have to do that at any point.

 Aside from CFM templates of the site itself, should we also backup the
 CFIDE tree? Anything else that would be a good practice in the event we'd
 need to recover a site on short notice?

 Thanks so much,

 Chuck

 

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


RE: Best practice for backup of CF Application server?

2010-10-13 Thread Justin Scott

 You might want to back up your web server configuration also

For IIS6, here is the batch file we use to perform a scheduled backup of the
metabase as well as an XML export.  Hopefully it can benefit anyone else out
there who isn't backing up their metabase regularly.  (Note: gf-bigmama is a
file server which holds our initial backups before they get shipped
off-site, so replace that with a path you're comfortable with)

@echo off
md \\gf-bigmama\metabases\%computername%
cd %SystemRoot%\system32
cscript.exe iisback.vbs /backup /b SchedBackup /v 0 /overwrite
del \\gf-bigmama\metabases\%computername%\%computername%.xml
cscript iiscnfg.vbs /export /f
\\gf-bigmama\metabases\%computername%\%computername%.xml /sp /lm /inherited
/children
MOVE %SystemRoot%\system32\inetsrv\MetaBack\SchedBackup.*
\\gf-bigmama\metabases\%computername%


My understanding for IIS7 is that any configuration changes made to a site
are written to web.config in the site's root folder, so backing up that file
along with the rest of the site brings its settings along with it.  I'm not
familiar with where IIS7 stores its actual site listing though, I'm fairly
certain they did away with the metabase itself though.  I suspect there's
some XML file hanging out somewhere that would just need to be copied.


-Justin



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


RE: Best practice for backup of CF Application server?

2010-10-13 Thread Jacob

For CF application... I backup the XML files and custom tags when I make
changes.

All of our templates are on a separate hard drive in the server and that is
backed up every night.

-Original Message-
From: Chuck Wyatt [mailto:cwy...@clarku.edu] 
Sent: Wednesday, October 13, 2010 7:23 AM
To: cf-talk
Subject: Best practice for backup of CF Application server?


We're running ColdFusion 9, and I understand we can backup the XML files in
Web-INF to get the datasource meta data for a less troublesome restore,
God forbid we'd have to do that at any point.

Aside from CFM templates of the site itself, should we also backup the CFIDE
tree? Anything else that would be a good practice in the event we'd need to
recover a site on short notice?

Thanks so much,

Chuck 



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


Re: Need a Google Analytic like reporting tools for CF Application

2008-08-15 Thread David Stockton
We're releasing a new tool called FusionAnalytics soon. This will allow you=
 to analyse all sorts of data. However, with our experience from ColdFusion=
  FusionReactor we're going to be focusing on CF at first.

The tool will let you cross analyse data from your CF logs, FR logs, Web lo=
gs, custom application logs, DB usage. All sorts of metrics. It'll allow yo=
u to do this historically ie: how is my server performing compared to last =
week/month/year.
Capacity planning - when will I need a bigger server / more servers?
Finding problem templates / requests / sessions.
Comparing servers across a cluster.

It's built on a really simple plugin architecture so if there's something w=
e haven't provided - you can just add it yourself!

Keep up with the news here:

http://www.fusion-reactor.com/fr/analytics.cfm

The Fusion Team


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Need a Google Analytic like reporting tools for CF Application use history

2008-08-14 Thread coldfusion . developer
I want to analize the historical activies of our applications that Google 
Analytics can't track.  
We recently started using GA some there's isn't a lot of history.

I’m trying to get a sense of utilization of the various sections of our site, 
especially those supported by a specialized application.  I can dig out a lot 
of view usage via Google Analytics by viewing and parsing URL strings, however, 
that only paints some of the picture.  Since I have access to the back end, I 
was looking for a tools I could use see run reports on query information for 
instance how many store locator searches are performed.  

Thanks

D-

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Re: Need a Google Analytic like reporting tools for CF Application use history

2008-08-14 Thread Wil Genovese
Weblog expert can do this.  It uses your webserver logs and you can  
customize reports. Even generate reports based on the query string.   
hey have a free trial so it does not hurt to try it.

Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Aug 14, 2008, at 10:39 AM, [EMAIL PROTECTED] wrote:

 I want to analize the historical activies of our applications that  
 Google Analytics can't track.
 We recently started using GA some there's isn't a lot of history.

 I’m trying to get a sense of utilization of the various sections of  
 our site, especially those supported by a specialized application.   
 I can dig out a lot of view usage via Google Analytics by viewing  
 and parsing URL strings, however, that only paints some of the  
 picture.  Since I have access to the back end, I was looking for a  
 tools I could use see run reports on query information for instance  
 how many store locator searches are performed.

 Thanks

 D-

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Re: exporting from a CF Application to MYOB

2008-01-16 Thread Mike Kear
There is a connector you can get to allow direct ODBC connection
between MYOB and a SQLServer (and other ) database.

I'm currently building an application where there is going to be
nightly transfers of data between a web site (customer supplied info
going into MYOB) and MYOB (updated credit limits going up to customer
records in the web site)

I'm not at my office for another 10 days but if you want i can send
you details of how to do it then.   If you cant wait that long,
contact support at MYOB and ask about a subscription to the connection
key for ODBC.  (You have to pay something each year to keep the key
working).

Hope this helps.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month


On Jan 16, 2008 1:04 AM, Rob Parkhill [EMAIL PROTECTED] wrote:
 Toby,

 I have done this, but it depends on the version of MYOB that you are running
 on.  My solution works on V 11, and since it has been removed from the
 shelves here in Canada, I can't confirm that it would work with any other
 verions.

 If that column order will help, I can get this to you.

 Rob


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

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


exporting from a CF Application to MYOB

2008-01-15 Thread Toby King
Hi there

I'm trying to setup to do an export from MySQL to an Excel Spreadsheet so that 
I can then import the spreadsheet to MYOB.

I'm wondering if anyone else happens to have done this and if so do I need to 
have the spreadsheet setup with all the exact columns as a spreadsheet which 
has been created as a result of exporting from MYOB.

Thanks in advance.

T 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

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


Re: exporting from a CF Application to MYOB

2008-01-15 Thread Rob Parkhill
Toby,

I have done this, but it depends on the version of MYOB that you are running
on.  My solution works on V 11, and since it has been removed from the
shelves here in Canada, I can't confirm that it would work with any other
verions.

If that column order will help, I can get this to you.

Rob

On Jan 15, 2008 7:14 AM, Toby King [EMAIL PROTECTED] wrote:

 Hi there

 I'm trying to setup to do an export from MySQL to an Excel Spreadsheet so
 that I can then import the spreadsheet to MYOB.

 I'm wondering if anyone else happens to have done this and if so do I need
 to have the spreadsheet setup with all the exact columns as a spreadsheet
 which has been created as a result of exporting from MYOB.

 Thanks in advance.

 T

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

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


Re: FREE Change Management CF application?

2007-11-29 Thread Tom Chiverton
On Thursday 29 Nov 2007, James Blaha wrote:
 Otherwise if you know of a free application for (Task  Projects) that
 would be great also.

For what size of team/projects ? Do you need support for specific 
methodologies (e.g. Agile) ?

-- 
Tom Chiverton
Helping to conveniently leverage transparent functionalities
on: http://thefalken.livejournal.com



Please note, as of 10th December 2007 the registered office address of 
Halliwells LLP will be at 3 Hardman Square, Spinningfields, Manchester, M3 3EB



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

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

CONFIDENTIALITY

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

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

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

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


FREE Change Management CF application?

2007-11-29 Thread James Blaha
Hello All,

Does anyone know of any free change management CF application?
Otherwise if you know of a free application for (Task  Projects) that would be 
great also.

Regards,
-Jim


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

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


Re: FREE Change Management CF application?

2007-11-29 Thread James Blaha
Hi Tom,

I need to build a app that i.e. 10 people can log into and see where things 
stand that programmers might be working on for them. 

Simple project management and change request management.. Any flavor...

-Jim 

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

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


Re: Adding Sound to a CF application

2007-11-06 Thread Tom Chiverton
On Monday 05 Nov 2007, Toby King wrote:
 I was wondering if

you really sent that 3 times, or if our Exchange server had fouled up again ?

-- 
Tom Chiverton
Helping to globally accelerate leading-edge meta-services
on: http://thefalken.livejournal.com



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

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

CONFIDENTIALITY

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

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

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

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


Adding Sound to a CF application

2007-11-05 Thread Toby King
Hi all

I have an application which I have been working on for a little while.

Basically the application displays different output according to times.  i.e. 
when a booking with a personal trainer has less than 5 minutes to go the 
display of remaining time is highlighted.

I was wondering if it might be possible as well as displaying the rmaining time 
as being highlighted whether it would be possible to attach a sound to this 
event as well.

I guuess something as simple as a sound when an email message arrives in 
Microsoft Outlook would be OK.

I look forward to what people know about this as to if its possible and also 
how it would be done.

Regards


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

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


My First Open Source Apollo/CF Application!

2007-05-11 Thread Rick Root
Yay!

http://url.rickroot.com/u/e

-- 
CFMBB - Coldfusion Message Boards, Version 1.21 Now Available!
http://www.cfmbb.org

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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


image viewer from an CF application

2007-05-07 Thread the_oslo Kid
Hi all,
   
  CF server 6.1...
   
  I've got a screen where I view property details.  Attached to the property 
details
  are a number of images - of varying sizes...  I currently do this:
   
  cfif trim(products.Picture) NEQ 
a 
href=javascript:PopupWindow('ViewProductImage.cfm?name=#URLEncodedFormat(replace(products.Picture,\,/))#',900,1000);img
 src=images/camera.gif border=0 width=16 height=16 alt=Click to view 
product image/a

  This has a number of problems:
  * it doesn't force fit the image
  * I can only view one image at the time
  * If I return to the calling screen without closing - when I want to view the 
next image 
the PopUpWindow doesn't automatically get focus (although the image is 
updated).
   
  1) What would be the best method to open another window where the various 
images
  can be displayed - but forced to fit the size of the newly opened window?
   
  2) Do I pass in to the new window a list of images to be displayed (as image 
names)
  and then go and get the images when the user go next / prev?
   
  3) How do I force the PopUp to be brought to the front (again)?
   
  Any help (especially if a snippet of code is included) would be greatly 
appreciated.
   
  Kind regards,
  Knut

 
-
It's here! Your new message!
Get new email alerts with the free Yahoo! Toolbar.

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


Re: image viewer from an CF application

2007-05-07 Thread Mark Flewellen
This is the script I use to open a pop up window, this will also refocus the 
window if you click on a new image. As well as this if javascript is disbaled 
it will just open in a new window. Normally I record the sizes of the images in 
the database so when I load a thumbnail it already knows the size of the image. 

var newWin = null;
function popUp(strURL, strType, strHeight, strWidth) {
 if (newWin != null  !newWin.closed)
   newWin.close();
 var strOptions=;
 if (strType==console)
   strOptions=resizable,height=+
 strHeight+,width=+strWidth;
 if (strType==fixed)
   strOptions=status,height=+
 strHeight+,width=+strWidth;
 if (strType==elastic)
   strOptions=toolbar,menubar,scrollbars,+
 resizable,location,height=+
 strHeight+,width=+strWidth;
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}


to then open the image

a href=linktopagecallingtheimage 
onclick=popUp(this.href,'console',popupheightgoeshere,popupwidthgoeshere);return
 false; target=_blank

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


RE: image viewer from an CF application

2007-05-07 Thread Pete
Hi - interesting looking script.  Any chance of seeing an example or where
it is used.

Thanks

Peter


-Original Message-
From: Mark Flewellen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 8 May 2007 11:12 AM
To: CF-Talk
Subject: Re: image viewer from an CF application

This is the script I use to open a pop up window, this will also refocus the
window if you click on a new image. As well as this if javascript is
disbaled it will just open in a new window. Normally I record the sizes of
the images in the database so when I load a thumbnail it already knows the
size of the image. 

var newWin = null;
function popUp(strURL, strType, strHeight, strWidth) {
 if (newWin != null  !newWin.closed)
   newWin.close();
 var strOptions=;
 if (strType==console)
   strOptions=resizable,height=+
 strHeight+,width=+strWidth;
 if (strType==fixed)
   strOptions=status,height=+
 strHeight+,width=+strWidth;
 if (strType==elastic)
   strOptions=toolbar,menubar,scrollbars,+
 resizable,location,height=+
 strHeight+,width=+strWidth;
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}


to then open the image

a href=linktopagecallingtheimage
onclick=popUp(this.href,'console',popupheightgoeshere,popupwidthgoeshere);r
eturn false; target=_blank



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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


Re: image viewer from an CF application

2007-05-07 Thread the_oslo Kid
Hi Mark,
   
  Thank you very much - it did the trick  
  Also - found this tool very useful - it resizes an image (or a selection of 
images) - thus
  I always know the size of my images!
   
  Image Resizer.exe :
   
  http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx
   
  Kind regards,
  Knut
  

Mark Flewellen [EMAIL PROTECTED] wrote:
  This is the script I use to open a pop up window, this will also refocus the 
window if you click on a new image. As well as this if javascript is disbaled 
it will just open in a new window. Normally I record the sizes of the images in 
the database so when I load a thumbnail it already knows the size of the image. 

var newWin = null;
function popUp(strURL, strType, strHeight, strWidth) {
if (newWin != null  !newWin.closed)
newWin.close();
var strOptions=;
if (strType==console)
strOptions=resizable,height=+
strHeight+,width=+strWidth;
if (strType==fixed)
strOptions=status,height=+
strHeight+,width=+strWidth;
if (strType==elastic)
strOptions=toolbar,menubar,scrollbars,+
resizable,location,height=+
strHeight+,width=+strWidth;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}


to then open the image





~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: image viewer from an CF application

2007-05-07 Thread Mark Flewellen
http://www.mapmagazine.co.uk/index.cfm?page=984F1E34-BDF5-2379-71075D0184E53D92articleid=69

When you click on the image at the top of the article this will pop up using 
the script I have mentioned

MF

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


how to restart a specific CF application (not app server)

2007-04-27 Thread Jay Allen
I've ran into an interesting conundrum with an app. I am currently developing.

I've already deployed application.cfc and other files for the app. to my 
testing server, but now I need to go back and set some additional application 
scope vars inside my onApplicationStart function.

Ofcourse that function only fires at the very first hit for the application 
... so even though I can add the code I need in onApplicationSTart, it won't be 
executed when I hit the pages again.

I know I could restart the ColdFusion service and that would probably do the 
trick.  However I'm anticipating needing to do modify onApplicationStart 
several times during the course of development, and I would prefer to find a 
way to restart just this particular application.

Bear in mind, I am working in a development environment (not production), so 
this doesn't have to be a best practice or anything.

With that in mind, I'd appreciate any suggestions about how to go about 
restarting an individual application.  Is there some way I can explicitly call 
my onApplicationStart function, or some other built-in way to this?

Thanks!

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


Re: how to restart a specific CF application (not app server)

2007-04-27 Thread Casey Dougall
Something like this could work for your needs.

cffunction name=onRequestStart returnType=boolean output=true
cfargument name=thePage type=string required=true
!--- Let's re-initialize the application if somename_refresh is
present in the URL. ---
cfif StructKeyExists(URL,somename_refresh)
cfset OnApplicationStart()
/cfif


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

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


Re: how to restart a specific CF application (not app server)

2007-04-27 Thread Jay Allen
Something like this could work for your needs.

cffunction name=onRequestStart returnType=boolean output=true
cfargument name=thePage type=string required=true
!--- Let's re-initialize the application if somename_refresh is
present in the URL. ---
cfif StructKeyExists(URL,somename_refresh)
cfset OnApplicationStart()
/cfif

Cool this did the trick.  Thank you!

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

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


Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ali Majdzadeh
Hi: I need a sample CF application that has a tutorial. I know the basics and I 
need some intermediate sample application with several pages it will help me 
alot.
Thanks
Benign

~|
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:260630
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Doug Brown
You should find the ows application on the CD that comes with the
coldfusion MX7 WACK book. I would say that it is intermediate.



Doug B.


- Original Message - 
From: Ali Majdzadeh [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, November 16, 2006 3:07 AM
Subject: Full intermediate CF application with step_by_step tutorial


 Hi: I need a sample CF application that has a tutorial. I know the basics
and I need some intermediate sample application with several pages it will
help me alot.
 Thanks
 Benign

 

~|
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:260635
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ben Nadel
Benign,

This is something that I am working on. It's not for everyone, and
it's not complete yet... But it's about the most step by step example
that I have seen:

http://www.skin-spider.com

Cheers,

..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Ali Majdzadeh [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 5:08 AM
To: CF-Talk
Subject: Full intermediate CF application with step_by_step tutorial

Hi: I need a sample CF application that has a tutorial. I know the
basics and I need some intermediate sample application with several
pages it will help me alot.
Thanks
Benign



~|
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:260643
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Bobby Hartsfield
OWS ranges from very basic to intermediate and I'd agree with Doug. I think
it's exactly what you are looking for.

http://www.forta.com/books/0321223675/

The majority of us started from one version or another of the CFWACK (I'm
not giving my version age heh)
 
..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

 

-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 7:44 AM
To: CF-Talk
Subject: Re: Full intermediate CF application with step_by_step tutorial

You should find the ows application on the CD that comes with the
coldfusion MX7 WACK book. I would say that it is intermediate.



Doug B.


- Original Message - 
From: Ali Majdzadeh [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, November 16, 2006 3:07 AM
Subject: Full intermediate CF application with step_by_step tutorial


 Hi: I need a sample CF application that has a tutorial. I know the basics
and I need some intermediate sample application with several pages it will
help me alot.
 Thanks
 Benign

 



~|
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:260647
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Munson, Jacob
 The majority of us started from one version or another of the 
 CFWACK (I'm
 not giving my version age heh)

This is something that's interesting to me in the programmer world.
Most people I know love to learn from books, but I'm just the opposite.
I started with CF 4, but didn't seriously get into CF until a later job
with CF 5.  But I have almost never used books.  I /much/ prefer using
the Internet and/or documentation, and that's how I learned all I know
about CF.  That said, I do think books can be an excellent reference
tool, to look things up on occasion.  But even though I've got the
Advanced CFMX App. Development book, it usually doesn't fully answer my
question, and I find myself online again looking for the rest of the
story.



--
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==
EMF idahopower.com made the previous annotations.

~|
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:260674
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Bobby Hartsfield
No books are going to cover everything. Neither will one online resource. A
large collection of books however, very well could cover anything you might
run into... and in the same respect... so could a large online resource
like...say... the internet heh.

The only difference is preference and price. I'd much rather take a book to
the old baño than my laptop though :-) 

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

 

 


-Original Message-
From: Munson, Jacob [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 11:25 AM
To: CF-Talk
Subject: RE: Full intermediate CF application with step_by_step tutorial

 The majority of us started from one version or another of the 
 CFWACK (I'm
 not giving my version age heh)

This is something that's interesting to me in the programmer world.
Most people I know love to learn from books, but I'm just the opposite.
I started with CF 4, but didn't seriously get into CF until a later job
with CF 5.  But I have almost never used books.  I /much/ prefer using
the Internet and/or documentation, and that's how I learned all I know
about CF.  That said, I do think books can be an excellent reference
tool, to look things up on occasion.  But even though I've got the
Advanced CFMX App. Development book, it usually doesn't fully answer my
question, and I find myself online again looking for the rest of the
story.




--
This transmission may contain information that is privileged, confidential
and/or exempt from disclosure under applicable law. If you are not the
intended recipient, you are hereby notified that any disclosure, copying,
distribution, or use of the information contained herein (including any
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
in error, please immediately contact the sender and destroy the material in
its entirety, whether in electronic or hard copy format. Thank you. 


==
EMF idahopower.com made the previous annotations.



~|
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:260700
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Munson, Jacob
 The only difference is preference and price. I'd much rather 
 take a book to
 the old baño than my laptop though :-) 

I've been known to take my laptop to the baño.  So I guess that explains why I 
don't prefer books.  ;)




--
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==
EMF idahopower.com made the previous annotations.

~|
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:260711
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Aaron Roberson
My very first introduction to ColdFusion was a book called ColdFusion
MX: From Static to Dynamic in 10 Steps by Barry Moore. I wouldn't
really call it intermediate level, but he takes an entire static
website and converts it into a dynamic site (including ecommerce) in
10 steps. It doesn't go into custom tags, UDFs, components, web
services and exception handeling which I would consider intermediate
level.

I guess it depends on your definition of beginner, intermediate and
advanced. I would consider syntax, master-detail data sets, program
flow, lists, arrays and structures all as basics. I would consider
intermediate as the aforementioned. Though it is a bit controversial
right now, I consider advanced as using frameworks and methodologies,
Object Oriented Programming, clustering, extending CFML with Java, and
such.

-Aaron

On 11/16/06, Ali Majdzadeh [EMAIL PROTECTED] wrote:
 Hi: I need a sample CF application that has a tutorial. I know the basics and 
 I need some intermediate sample application with several pages it will help 
 me alot.
 Thanks
 Benign

 

~|
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:260713
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ben Nadel
Ha ha ha :) who hasn't done that ;)

The limiting factor for me is the commute. I don't want to take my laptop on 
the subway every day, but a book I can whip out anywhere. 


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Munson, Jacob [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 12:58 PM
To: CF-Talk
Subject: RE: Full intermediate CF application with step_by_step tutorial

 The only difference is preference and price. I'd much rather take a 
 book to the old baño than my laptop though :-)

I've been known to take my laptop to the baño.  So I guess that explains why I 
don't prefer books.  ;)




--
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==
EMF idahopower.com made the previous annotations.



~|
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:260722
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Bobby Hartsfield
Great. THAT'S the image I wanted branded into my brain. Remind me to never
use your laptop ;-) lol

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

 

-Original Message-
From: Munson, Jacob [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 12:58 PM
To: CF-Talk
Subject: RE: Full intermediate CF application with step_by_step tutorial

 The only difference is preference and price. I'd much rather 
 take a book to
 the old baño than my laptop though :-) 

I've been known to take my laptop to the baño.  So I guess that explains why
I don't prefer books.  ;)





--
This transmission may contain information that is privileged, confidential
and/or exempt from disclosure under applicable law. If you are not the
intended recipient, you are hereby notified that any disclosure, copying,
distribution, or use of the information contained herein (including any
reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
in error, please immediately contact the sender and destroy the material in
its entirety, whether in electronic or hard copy format. Thank you. 


==
EMF idahopower.com made the previous annotations.



~|
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:260723
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Full intermediate CF application with step_by_step tutorial

2006-11-16 Thread Ali Majdzadeh
Hi Ben:
I tried your link but it was dead so I searched Skin Spider and found 
http://www.bennadel.com/skin-spider/overview.htm. I nebelieve you meant this 
website. It is very very cool and I just wonder if you have any other projects 
links like Skin Spider in your mind?
Thanks
Benign

~|
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:260780
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


dreamweaver CF application Var for images/ root web folder

2006-09-26 Thread Paul Ihrig
hey guys, hope all is well

this is a dreamweaver issue i believe

i have a application variable set up in application.cfm for my root dir.
like cfset wRoot= /mySite

on my page default.cfm i have images though out like:
#wRoot#/images/lb.gif

the rendered code works just fine.
but in DW i do not see my images unless i replace the #wRoot#/ with
either ../images or mySite/Images

again the code i have works just fine.
would just like to be able to visualize the page better instead of
seeing all the broken image holder in Dreamweaver.

any ideas would be great!
thanks
-paul

~|
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:254248
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: dreamweaver CF application Var for images/ root web folder

2006-09-26 Thread Dave Watts
 the rendered code works just fine. but in DW i do not see my images 
 unless i replace the #wRoot#/ with either ../images or mySite/Images

Of course, because Dreamweaver isn't actually running your code to show you
design view. If you've configured your Dreamweaver site settings correctly,
you should be able to use the Live Data View button available from within
Design View.

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

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

~|
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:254249
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: dreamweaver CF application Var for images/ root web folder

2006-09-26 Thread Massimo Foti
 on my page default.cfm i have images though out like:
 #wRoot#/images/lb.gif

 the rendered code works just fine.
 but in DW i do not see my images unless i replace the #wRoot#/ with
 either ../images or mySite/Images

 again the code i have works just fine.
 would just like to be able to visualize the page better instead of
 seeing all the broken image holder in Dreamweaver.

You may try using Live Data View (check the docs for additional details), 
and see if it fits your needs


Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com



~|
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:254251
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: dreamweaver CF application Var for images/ root web folder

2006-09-26 Thread Paul Ihrig
yeh the site is set up correctly.
but live data view dosnt work.
maybe it will is i define the variable in the page instead of in application.cfm

kinda crappy

On 9/26/06, Dave Watts [EMAIL PROTECTED] wrote:
  the rendered code works just fine. but in DW i do not see my images
  unless i replace the #wRoot#/ with either ../images or mySite/Images

 Of course, because Dreamweaver isn't actually running your code to show you
 design view. If you've configured your Dreamweaver site settings correctly,
 you should be able to use the Live Data View button available from within
 Design View.

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

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

 

~|
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:254253
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: dreamweaver CF application Var for images/ root web folder

2006-09-26 Thread Jon Clausen
Paul,

It's been awhile since I've used DW and I don't have it on my machine  
anymore, but in the Application panel there is a way your can specify  
site-specific variables for data display and preview.I think it's  
the Server Behaviors tab.

HTH
Jon


On Sep 26, 2006, at 12:58 PM, Paul Ihrig wrote:

 yeh the site is set up correctly.
 but live data view dosnt work.
 maybe it will is i define the variable in the page instead of in  
 application.cfm

 kinda crappy

 On 9/26/06, Dave Watts [EMAIL PROTECTED] wrote:
 the rendered code works just fine. but in DW i do not see my images
 unless i replace the #wRoot#/ with either ../images or mySite/Images

 Of course, because Dreamweaver isn't actually running your code to  
 show you
 design view. If you've configured your Dreamweaver site settings  
 correctly,
 you should be able to use the Live Data View button available  
 from within
 Design View.

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

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



 

~|
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:254262
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Programmically ending a CF application?

2006-07-25 Thread Ian Skinner
How can one 'end' a CF application so that the OnApplicationStart method of an 
application.cfc will run again?

Something better then the two options I've come up with? One, restarting the 
service.  And two setting the application timeout to 0.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 



~|
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:247648
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Programmically ending a CF application?

2006-07-25 Thread Ben Nadel
What are you trying to accomplish in the long run? Maybe there is a
different route to take?

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 25, 2006 2:35 PM
To: CF-Talk
Subject: Programmically ending a CF application?

How can one 'end' a CF application so that the OnApplicationStart method of
an application.cfc will run again?

Something better then the two options I've come up with? One, restarting the
service.  And two setting the application timeout to 0.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 





~|
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:247661
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Programmically ending a CF application?

2006-07-25 Thread Burns, John D
I think setting your application timeout to 0 is the best. You don't
have to do it programmatically through the cfapplication you have in
your application.cfm. You could have a endApplication.cfm that simply
has a cfapplication tag in it with the timeout set to 0 and that will
timeout the app. Then redirect to a normal page and that will trigger
the cfapplication in your application.cfm that will set the timeout
back to normal.

John

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 25, 2006 3:03 PM
To: CF-Talk
Subject: RE: Programmically ending a CF application?

What are you trying to accomplish in the long run? Maybe there is a
different route to take?


Ben Nadel 
www.bennadel.com

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 25, 2006 2:35 PM
To: CF-Talk
Subject: Programmically ending a CF application?

How can one 'end' a CF application so that the OnApplicationStart method
of
an application.cfc will run again?

Something better then the two options I've come up with? One, restarting
the
service.  And two setting the application timeout to 0.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 







~|
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:247666
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Programmically ending a CF application?

2006-07-25 Thread Ian Skinner
What are you trying to accomplish in the long run? Maybe there is a different 
route to take?


During development, when changes have been made to code in the 
OnApplicationStart to end the current application so that the new code will run 
with the next request.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 




~|
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:247671
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Programmically ending a CF application?

2006-07-25 Thread Ben Nadel
To handle such scenarios in my applications, my OnApplicationStart() method
just turns around and calls the custom function (inside Application.cfc)
called InitApplication()... Then when I make changes to my application, I
just call that method directly and it re-initializes the application without
actually ending it's session.

Then you can send a flag in URLs.

cffunction name=OnApplicationStart
cfset InitApplication() /
/cffunction


cffunction name=OnRequestStart
cfparam name=URL.InitApplication type=numeric default=0 /

cfif URL.InitApplication
cfset InitApplication() /
/cfif
/cffunction


Not sure if it is the best way to go... But it works great for my purposes.


...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 25, 2006 3:37 PM
To: CF-Talk
Subject: RE: Programmically ending a CF application?

What are you trying to accomplish in the long run? Maybe there is a
different route to take?


During development, when changes have been made to code in the
OnApplicationStart to end the current application so that the new code will
run with the next request.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 






~|
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:247674
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Programmically ending a CF application?

2006-07-25 Thread Dave Watts
 How can one 'end' a CF application so that the 
 OnApplicationStart method of an application.cfc will run again?

You can directly call onApplicationStart, I think. You could do this from
within onRequestStart based on some flag value.

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

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


~|
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:247677
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Resetting a CF application.

2006-05-19 Thread Raymond Camden
Just be aware that a manual call is not single threaded like a 'real'
startup call. While this won't matter 99% of the time, it is something
to keep in mind.

On 5/18/06, Dave Watts [EMAIL PROTECTED] wrote:
  How could one reset an application so that the
  onApplicationStart method of the application CFC can be
  re-run after new code has been added to it?

 You can simply call onApplicationStart from within one of your other
 Application.cfc methods. This is actually covered in the Adobe Advanced
 ColdFusion Development course.

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

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


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240979
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


Resetting a CF application.

2006-05-18 Thread Ian Skinner
How could one reset an application so that the onApplicationStart method of 
the application CFC can be re-run after new code has been added to it?

Is there anything more elegant then restarting the entire CF Service?


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

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. 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240944
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: Resetting a CF application.

2006-05-18 Thread Ryan Guill
Im not sure, but im pretty sure you could call the
onApplicationStart() directly.  Maybe add a flag to your
onRequestStart(), if structKeyExists(url,reloadApplication) and
url.reloadApplication EQ Truecfset onApplicationStart() //cfif


On 5/18/06, Ian Skinner [EMAIL PROTECTED] wrote:
 How could one reset an application so that the onApplicationStart method of 
 the application CFC can be re-run after new code has been added to it?

 Is there anything more elegant then restarting the entire CF Service?


 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 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.



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240945
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: Resetting a CF application.

2006-05-18 Thread Dave Watts
 How could one reset an application so that the 
 onApplicationStart method of the application CFC can be 
 re-run after new code has been added to it?

You can simply call onApplicationStart from within one of your other
Application.cfc methods. This is actually covered in the Adobe Advanced
ColdFusion Development course.

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

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240946
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: Resetting a CF application.

2006-05-18 Thread Alan Rother
I usually add a restart to the onRequest method like this


cfif IsDefined(url.Init)
cfset foo = onApplicationStart
/cfif


This is off the cuff and has not been tested or validity, so use a guideline
only.
-- 
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240948
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: CF Application Design

2004-09-29 Thread Dan O'Keefe
Thanks Dave, I see they have an edition for Eclipse as well.

Dan

- Original Message -
From: Dave Carabetta [EMAIL PROTECTED]
Date: Tue, 28 Sep 2004 15:49:33 -0400
Subject: Re: CF Application Design
To: CF-Talk [EMAIL PROTECTED]

On Tue, 28 Sep 2004 15:14:55 -0400, Dan O'Keefe [EMAIL PROTECTED] wrote:
  Sean,
  
  What would your requirement ID signify. Just a tracking number to be
  used throughout the process to tie together the one to one record of
  requirements? I just looked at Together as well as the tutorial on all
  of the UML diagrams. Very cool product, but $3500 for the solo
  license. Yikes!
  

 Dan,

 I can't answer the first part, but for the pricing, Borland (who owns
 TogetherSoft) has released a free Community Edition of the Together
 product. It should suit your needs:

 http://www.borland.com/together/designerce/index.html

 Regards,
 Dave.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CF Application Design

2004-09-28 Thread Tangorre, Michael
I am interested in getting some feedback from people on the following:

 
Once you have gotten your requirements for a new application and the
modeling/architecture process ensues, what tools do you use to link
requirements to screens, processes, etc? I have been evaluating Adalon
as a tool to introduce into our development process for the purpose of
linking requirements to processes and screens but I assume other tools
and methods exist. In addition, how do you handle new requirements,
updating your models, etc? We currently have an ad-hoc approach and I am
looking into formalizing the process as this is an area where we waste a
lot of time... well not waste, but sure as hell are not as efficient as
we could be. For instance, we have many documents floating in numerous
folders that outline original requirements, new requirements, bugs,
processes, data dictionary, etc etc but to me, all these documents
floating around with next to no naming conventions is a waste. What
tools would you recommend looking into to help organize all the aspects
of the development process from requirements gathering and analysis to
ongoing maintenance and future development.

 
Thanks!

 
Mike
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Application Design

2004-09-28 Thread Sean Corfield
On Tue, 28 Sep 2004 10:17:39 -0400, Tangorre, Michael
[EMAIL PROTECTED] wrote:
 Once you have gotten your requirements for a new application and the
 modeling/architecture process ensues, what tools do you use to link
 requirements to screens, processes, etc?

We don't keep a formal one-to-one record of requirements to fragments
of code but we use Borland's Together Control Center for much of our
application modeling. That lets us create Use Case diagrams and
Collaboration diagrams that have placeholders for requirement IDs. We
refine those into logical and physical Class diagrams and carry over
the requirement IDs. In the past, I've built some extensions to
Together that support Jim Conallen's Web Extensions for UML so that we
can model web pages and forms and links, again with requirement IDs
attached.

Like I say, we *can* do all of that. But we typically don't. We do try
to version control our specs tho', either manually using in-document
annotations or explicitly using CVS.

It's very, very hard to formalize the requirements / analysis / design
process but I will say that it's definitely very worthwhile. The more
you can front-load your process, the easier the rest of the process
becomes. Whilst I am not exactly a FLiP convert, I will say that it's
emphasis on the front-end of the lifecycle (wireframing, prototyping,
architecture and Fusedocs) means that the tail-end (coding, testing)
should go much more smoothly.
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Application Design

2004-09-28 Thread Dan O'Keefe
Sean,

What would your requirement ID signify. Just a tracking number to be
used throughout the process to tie together the one to one record of
requirements? I just looked at Together as well as the tutorial on all
of the UML diagrams. Very cool product, but $3500 for the solo
license. Yikes!

Dan

- Original Message -
From: Sean Corfield [EMAIL PROTECTED]
Date: Tue, 28 Sep 2004 10:55:39 -0700
Subject: Re: CF Application Design
To: CF-Talk [EMAIL PROTECTED]

On Tue, 28 Sep 2004 10:17:39 -0400, Tangorre, Michael
 [EMAIL PROTECTED] wrote:
  Once you have gotten your requirements for a new application and the
  modeling/architecture process ensues, what tools do you use to link
  requirements to screens, processes, etc?

 We don't keep a formal one-to-one record of requirements to fragments
 of code but we use Borland's Together Control Center for much of our
 application modeling. That lets us create Use Case diagrams and
 Collaboration diagrams that have placeholders for requirement IDs. We
 refine those into logical and physical Class diagrams and carry over
 the requirement IDs. In the past, I've built some extensions to
 Together that support Jim Conallen's Web Extensions for UML so that we
 can model web pages and forms and links, again with requirement IDs
 attached.

 Like I say, we *can* do all of that. But we typically don't. We do try
 to version control our specs tho', either manually using in-document
 annotations or explicitly using CVS.

 It's very, very hard to formalize the requirements / analysis / design
 process but I will say that it's definitely very worthwhile. The more
 you can front-load your process, the easier the rest of the process
 becomes. Whilst I am not exactly a FLiP convert, I will say that it's
 emphasis on the front-end of the lifecycle (wireframing, prototyping,
 architecture and Fusedocs) means that the tail-end (coding, testing)
 should go much more smoothly.
 -- 
 Sean A Corfield -- http://www.corfield.org/
 Team Fusebox -- http://www.fusebox.org/

 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwood
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Application Design

2004-09-28 Thread Dave Carabetta
On Tue, 28 Sep 2004 15:14:55 -0400, Dan O'Keefe [EMAIL PROTECTED] wrote:
 Sean,
 
 What would your requirement ID signify. Just a tracking number to be
 used throughout the process to tie together the one to one record of
 requirements? I just looked at Together as well as the tutorial on all
 of the UML diagrams. Very cool product, but $3500 for the solo
 license. Yikes!
 

Dan,

I can't answer the first part, but for the pricing, Borland (who owns
TogetherSoft) has released a free Community Edition of the Together
product. It should suit your needs:

http://www.borland.com/together/designerce/index.html

Regards,
Dave.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CF Application Design

2004-09-28 Thread Sean Corfield
On Tue, 28 Sep 2004 15:14:55 -0400, Dan O'Keefe [EMAIL PROTECTED] wrote:
 What would your requirement ID signify.

Something to identify a specific requirement in the original business
requirements document. Like I say, we don't formally track at that
level but the point is that we *could*.

 I just looked at Together as well as the tutorial on all
 of the UML diagrams. Very cool product, but $3500 for the solo
 license. Yikes!

Yup and we use Control Center with multiple floating licenses (which I
think cost $12k each a few years back). It all depends how seriously
you buy into the productivity argument behind UML...
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CF application navigation

2004-09-12 Thread Marco Antonio C. Santos
Farcry haves an very nice application navigation(menu collapsible,
tabs and so on). How to do applications like that? Do you have
examples for me?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Entire keyboard-based CF application

2004-08-31 Thread Micha Schopman
Ugh? Why ugh? .. it doesn't bite ... 
Micha Schopman 
Software Engineer 
Modern Media, Databankweg 12 M, 3821 ALAmersfoort 
Tel 033-4535377, Fax 033-4535388 
KvK Amersfoort 39081679, Rabo 39.48.05.380
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Entire keyboard-based CF application

2004-08-31 Thread Marco Antonio C. Santos
Thanx Jim

With XForms I can do that? How? Sorry but WHAT's XForms?

On Mon, 30 Aug 2004 19:39:40 -0400, Jim Davis
[EMAIL PROTECTED] wrote:
 In pure HTML you would use the accesskey and tabindex attributes of form
 elements to allow simplistic keyboard management of forms.I'm not sure
 what's available in XFORMs yet, but I have to assume it's more advanced.
 
 Using script you can take things to the next level.The event bubbling
 model in IE makes a lot of this stuff insanely simple.
 
 I'm not sure sure why you would want to kill mouse applications, but again
 using the event bubbling model (IE only, I beleive) you can assign all of
 the mouse action handlers at the body level to return void or somesuch -
 the event taking place anywhere on the page will bubble up to the body and
 get handled there.
 
 Jim Davis
 
 From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 30, 2004 1:23 PM
 To: CF-Talk
 Subject: Entire keyboard-based CF application
 
 Hi
 
 I'm looking for how to develop an entire CF application
 keyboard-based. Gmail haves funcionalities like that. What's the
 secret? JS? Any example? How to kill mouse applications??? ;-)
 
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Entire keyboard-based CF application

2004-08-31 Thread Jim Davis
XForms is the replacement for current HTML forms - basically it's a separate
W3C standard just for forms to go with XHTML 2.0.

Hit www.W3C.org http://www.w3c.org/or google xforms for more
information.

I believe that that enhanced forms processing in Blackstone (CF 7) is
partially XForms-based.

Jim Davis

_

From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 31, 2004 8:16 AM
To: CF-Talk
Subject: Re: Entire keyboard-based CF application

Thanx Jim

With XForms I can do that? How? Sorry but WHAT's XForms?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Entire keyboard-based CF application

2004-08-31 Thread S . Isaac Dealey
There's an XForms option -- there's also a Flash option and a default
option which creates the same html/_javascript_ forms cfform creates
now. Or so I've heard.

 XForms is the replacement for current HTML forms -
 basically it's a separate
 W3C standard just for forms to go with XHTML 2.0.

 Hit www.W3C.org http://www.w3c.org/or google xforms
 for more information.

 I believe that that enhanced forms processing in
 Blackstone (CF 7) is partially XForms-based.

s. isaac dealey954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.sys-con.com/story/?storyid=44477DE=1
http://www.sys-con.com/story/?storyid=45569DE=1
http://www.fusiontap.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Entire keyboard-based CF application

2004-08-30 Thread Jim Davis
In pure HTML you would use the accesskey and tabindex attributes of form
elements to allow simplistic keyboard management of forms.I'm not sure
what's available in XFORMs yet, but I have to assume it's more advanced.

Using script you can take things to the next level.The event bubbling
model in IE makes a lot of this stuff insanely simple. 

I'm not sure sure why you would want to kill mouse applications, but again
using the event bubbling model (IE only, I beleive) you can assign all of
the mouse action handlers at the body level to return void or somesuch -
the event taking place anywhere on the page will bubble up to the body and
get handled there.

Jim Davis

From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 30, 2004 1:23 PM
To: CF-Talk
Subject: Entire keyboard-based CF application

Hi

I'm looking for how to develop an entire CF application
keyboard-based. Gmail haves funcionalities like that. What's the
secret? JS? Any example? How to kill mouse applications??? ;-)
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Stand alone CF application on a laptop

2004-05-10 Thread Wurst, Keith D.
hey everyone. i would like to setup a cf application on a laptop running sql
server as the backend db and iis as the webserver. does anyknow know of a
good resource that laysout how to set this type of environment up? is there
a copy of a personal cf application server out there for download? thanks.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Stand alone CF application on a laptop

2004-05-10 Thread Ian Skinner
The 30 day free trial version of CF server reverts to a local host only developers version after the trial period.It would be exactly what you want.

 
--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

C code. C code run. Run code run. Please!
- Cynthia Dunning
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Stand alone CF application on a laptop

2004-05-10 Thread Wurst, Keith D.
Looks like that is for MX, is there one for cf 5?

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 10, 2004 11:57 AM
To: CF-Talk
Subject: RE: Stand alone CF application on a laptop

The 30 day free trial version of CF server reverts to a local host only
developers version after the trial period.It would be exactly what you
want.

--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

C code. C code run. Run code run. Please!
- Cynthia Dunning 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Stand alone CF application on a laptop

2004-05-10 Thread Ian Skinner
This is how it has worked since at least 4.5.It is how I have gotten my developer version of CF sever since I started in 1997.You just need to find the proper download on the Macromedia Site.That, at times, has been a lot harder then it should have been.
--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

C code. C code run. Run code run. Please!
- Cynthia Dunning
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CF Application Security

2004-02-12 Thread Tangorre, Michael
What is a better approach to protecting and validating URL parameters?

Encrypt URL parameter values then decrypt them when the need to use them
arises?

OR

Check to make sure the variable and its value are legitimate for a user by
querying the data store or cross checking?

OR

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




RE: CF Application Security

2004-02-12 Thread Raymond Camden
Only the second is absolutely the safest as it's possible someone could
crack your encryption. However, you can use both. There is nothing wrong
with a being a bit anal.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CF Application Security

2004-02-12 Thread Thomas Chiverton
On Thursday 12 February 2004 13:54 pm, Tangorre, Michael wrote:
 What is a better approach to protecting and validating URL parameters?

Don't use them.
Store what you need server side (session scope for instance).

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CF Application Security

2004-02-12 Thread Matt Robertson
if you can cross-check stored data at all don't pass it in the first
place, assuming I'm properly understanding what you're saying.

When I have to use url vars, I encrypt when I feel the need.cf_cryp is
pretty handy for that, partly at least because its free.


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

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




CF Application Design

2003-07-11 Thread Michael T. Tangorre
Does anyone know of any tools available that are free or very cheap that help layout a 
new application? I am pushing for Adalon here, but its an uphill battle... 

I am trying to find a tool to aid in the restructuring and redesign of our main 
application that currently has NO documentation and NO initial design specs... sad 
story yes... and very frustrating.

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

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: CF Application Design

2003-07-11 Thread Mike Brunt
Michael, take a look at NAWT (not another wireframe tool) at
strangetactics.com it serves at least part of the process and it is free.

Kind Regards - Mike Brunt
Webapper Services LLC
Web Site http://www.webapper.com
Blog http://www.webapper.net

Webapper Web Application Specialists

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: Friday, July 11, 2003 8:14 AM
To: CF-Talk
Subject: CF Application Design

Does anyone know of any tools available that are free or very cheap that
help layout a new application? I am pushing for Adalon here, but its an
uphill battle...

I am trying to find a tool to aid in the restructuring and redesign of our
main application that currently has NO documentation and NO initial design
specs... sad story yes... and very frustrating.

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: CF Application Design

2003-07-11 Thread Joshua Miller
VISIO, it's not specifically for Web Application design, but it works
really well for modelling all sorts of processes including databases and
networks.

When you signup for Microsoft's partner program you get VISIO and a
whole boatload of other software for internal use. I think we paid $99
for the whole shebang including development copies of Windows Server
2003, Office, etc.

Just another option ...

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-0801 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 11, 2003 11:22 AM
To: CF-Talk
Subject: RE: CF Application Design


Michael, take a look at NAWT (not another wireframe tool) at
strangetactics.com it serves at least part of the process and it is
free.

Kind Regards - Mike Brunt
Webapper Services LLC
Web Site http://www.webapper.com
Blog http://www.webapper.net

Webapper Web Application Specialists

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: Friday, July 11, 2003 8:14 AM
To: CF-Talk
Subject: CF Application Design

Does anyone know of any tools available that are free or very cheap that
help layout a new application? I am pushing for Adalon here, but its an
uphill battle...

I am trying to find a tool to aid in the restructuring and redesign of
our main application that currently has NO documentation and NO initial
design specs... sad story yes... and very frustrating.

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

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: CF Application Design

2003-07-11 Thread Stephen Moretti
There is a free version of Adalon.  The wireframe version.

Its a highly cut down version that's suitable for giving to clients to help
them help you gather requirements.
It allows you to create diagrams with some detail, that go on to create
simple wireframes.

That might be enough to get you started and give you a leg up with getting
full versions of adalon on your desk. ;o)

Stephen
- Original Message - 
From: Michael T. Tangorre [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, July 11, 2003 4:14 PM
Subject: CF Application Design


 Does anyone know of any tools available that are free or very cheap that
help layout a new application? I am pushing for Adalon here, but its an
uphill battle...

 I am trying to find a tool to aid in the restructuring and redesign of our
main application that currently has NO documentation and NO initial design
specs... sad story yes... and very frustrating.

 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: CF Application Design

2003-07-11 Thread Jim Campbell
With Visio Enterprise, you can create ER diagrams and forward-engineer 
database tables with all their relationships defined.  Regular Visio 
will only reverse-engineer Access and SQL-Server databases, but that can 
be a big help if you need a graphical representation.  I'm not sure if 
you can just bolt onto anything through ODBC, though.  I haven't really 
dug into it that much.

- Jim

Joshua Miller wrote:

VISIO, it's not specifically for Web Application design, but it works
really well for modelling all sorts of processes including databases and
networks.

When you signup for Microsoft's partner program you get VISIO and a
whole boatload of other software for internal use. I think we paid $99
for the whole shebang including development copies of Windows Server
2003, Office, etc.

Just another option ...

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-0801 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 11, 2003 11:22 AM
To: CF-Talk
Subject: RE: CF Application Design


Michael, take a look at NAWT (not another wireframe tool) at
strangetactics.com it serves at least part of the process and it is
free.

Kind Regards - Mike Brunt
Webapper Services LLC
Web Site http://www.webapper.com
Blog http://www.webapper.net

Webapper Web Application Specialists

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: Friday, July 11, 2003 8:14 AM
To: CF-Talk
Subject: CF Application Design

Does anyone know of any tools available that are free or very cheap that
help layout a new application? I am pushing for Adalon here, but its an
uphill battle...

I am trying to find a tool to aid in the restructuring and redesign of
our main application that currently has NO documentation and NO initial
design specs... sad story yes... and very frustrating.

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

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: CF Application Design

2003-07-11 Thread Costas Piliotis
I'd personally recommend Embarcadero's ER/Studio for database design.  It
has way better features than Visio, for it is specific...

http://www.embarcadero.com/products/erstudio/index.asp

I believe Sybase and Oracle also have good database design tools... 

Looks like Adalon though is a pretty cool wireframe app...  I may have to
try that out myself...

-Original Message-
From: Jim Campbell [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 11, 2003 9:39 AM
To: CF-Talk
Subject: Re: CF Application Design


With Visio Enterprise, you can create ER diagrams and forward-engineer 
database tables with all their relationships defined.  Regular Visio 
will only reverse-engineer Access and SQL-Server databases, but that can 
be a big help if you need a graphical representation.  I'm not sure if 
you can just bolt onto anything through ODBC, though.  I haven't really 
dug into it that much.

- Jim

Joshua Miller wrote:

VISIO, it's not specifically for Web Application design, but it works 
really well for modelling all sorts of processes including databases 
and networks.

When you signup for Microsoft's partner program you get VISIO and a 
whole boatload of other software for internal use. I think we paid $99 
for the whole shebang including development copies of Windows Server 
2003, Office, etc.

Just another option ...

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net [EMAIL PROTECTED]
(704) 569-0801 ext. 254
 
***
*
*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it 
is addressed and contains information that is private and confidential. 
If you are not the intended recipient you are hereby notified that any 
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and 
advise us by return e-mail to [EMAIL PROTECTED]
***
*
*


-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]
Sent: Friday, July 11, 2003 11:22 AM
To: CF-Talk
Subject: RE: CF Application Design


Michael, take a look at NAWT (not another wireframe tool) at 
strangetactics.com it serves at least part of the process and it is 
free.

Kind Regards - Mike Brunt
Webapper Services LLC
Web Site http://www.webapper.com
Blog http://www.webapper.net

Webapper Web Application Specialists

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: Friday, July 11, 2003 8:14 AM
To: CF-Talk
Subject: CF Application Design

Does anyone know of any tools available that are free or very cheap 
that help layout a new application? I am pushing for Adalon here, but 
its an uphill battle...

I am trying to find a tool to aid in the restructuring and redesign of 
our main application that currently has NO documentation and NO initial 
design specs... sad story yes... and very frustrating.

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: CF Application Design

2003-07-11 Thread Barney Boisvert
The free wireframe version of Adalon is great.  I wireframed a big ol' FB
app (around 40 circuits, from 10 to 40 fuseactions each), and it was great
to work with.  Once you have the diagrams all set up, and you actually have
something pretty to show the boss, the sale for the full version (that
actually generates code and stuff) could be much easier.  I also use it for
database relationships and class diagrams, because i'm familiar with it.
Probably better tools for each job out there, bot for a single app, it's
great at all three.

barneyb

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

www.audiencecentral.com


 -Original Message-
 From: Costas Piliotis [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 9:54 AM
 To: CF-Talk
 Subject: RE: CF Application Design


 I'd personally recommend Embarcadero's ER/Studio for database design.  It
 has way better features than Visio, for it is specific...

 http://www.embarcadero.com/products/erstudio/index.asp

 I believe Sybase and Oracle also have good database design tools...

 Looks like Adalon though is a pretty cool wireframe app...  I may have to
 try that out myself...

 -Original Message-
 From: Jim Campbell [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 9:39 AM
 To: CF-Talk
 Subject: Re: CF Application Design


 With Visio Enterprise, you can create ER diagrams and forward-engineer
 database tables with all their relationships defined.  Regular Visio
 will only reverse-engineer Access and SQL-Server databases, but that can
 be a big help if you need a graphical representation.  I'm not sure if
 you can just bolt onto anything through ODBC, though.  I haven't really
 dug into it that much.

 - Jim

 Joshua Miller wrote:

 VISIO, it's not specifically for Web Application design, but it works
 really well for modelling all sorts of processes including databases
 and networks.
 
 When you signup for Microsoft's partner program you get VISIO and a
 whole boatload of other software for internal use. I think we paid $99
 for the whole shebang including development copies of Windows Server
 2003, Office, etc.
 
 Just another option ...
 
 Joshua Miller
 Head Programmer / IT Manager
 Garrison Enterprises Inc.
 www.garrisonenterprises.net [EMAIL PROTECTED]
 (704) 569-0801 ext. 254
 
 ***
 *
 *
 Any views expressed in this message are those of the individual sender,
 except where the sender states them to be the views of
 Garrison Enterprises Inc.
 
 This e-mail is intended only for the individual or entity to which it
 is addressed and contains information that is private and confidential.
 If you are not the intended recipient you are hereby notified that any
 dissemination, distribution or copying is strictly prohibited. If you
 have received this e-mail in error please delete it immediately and
 advise us by return e-mail to [EMAIL PROTECTED]
 ***
 *
 *
 
 
 -Original Message-
 From: Mike Brunt [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 11:22 AM
 To: CF-Talk
 Subject: RE: CF Application Design
 
 
 Michael, take a look at NAWT (not another wireframe tool) at
 strangetactics.com it serves at least part of the process and it is
 free.
 
 Kind Regards - Mike Brunt
 Webapper Services LLC
 Web Site http://www.webapper.com
 Blog http://www.webapper.net
 
 Webapper Web Application Specialists
 
 -Original Message-
 From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 8:14 AM
 To: CF-Talk
 Subject: CF Application Design
 
 Does anyone know of any tools available that are free or very cheap
 that help layout a new application? I am pushing for Adalon here, but
 its an uphill battle...
 
 I am trying to find a tool to aid in the restructuring and redesign of
 our main application that currently has NO documentation and NO initial
 design specs... sad story yes... and very frustrating.
 
 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

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



Where is it? wasRE: RE: CF Application Design

2003-07-11 Thread Mike Brunt
Can anyone either point me to the free Adalon version or email me a copy off line.  I 
looked for it before and could not find it.

Kind Regards - Mike Brunt
Original Message ---
The free wireframe version of Adalon is great.  I wireframed a big ol' FB
app (around 40 circuits, from 10 to 40 fuseactions each), and it was great
to work with.  Once you have the diagrams all set up, and you actually have
something pretty to show the boss, the sale for the full version (that
actually generates code and stuff) could be much easier.  I also use it for
database relationships and class diagrams, because i'm familiar with it.
Probably better tools for each job out there, bot for a single app, it's
great at all three.

barneyb

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

www.audiencecentral.com


 -Original Message-
 From: Costas Piliotis [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 9:54 AM
 To: CF-Talk
 Subject: RE: CF Application Design


 I'd personally recommend Embarcadero's ER/Studio for database design.  It
 has way better features than Visio, for it is specific...

 http://www.embarcadero.com/products/erstudio/index.asp

 I believe Sybase and Oracle also have good database design tools...

 Looks like Adalon though is a pretty cool wireframe app...  I may have to
 try that out myself...

 -Original Message-
 From: Jim Campbell [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 9:39 AM
 To: CF-Talk
 Subject: Re: CF Application Design


 With Visio Enterprise, you can create ER diagrams and forward-engineer
 database tables with all their relationships defined.  Regular Visio
 will only reverse-engineer Access and SQL-Server databases, but that can
 be a big help if you need a graphical representation.  I'm not sure if
 you can just bolt onto anything through ODBC, though.  I haven't really
 dug into it that much.

 - Jim

 Joshua Miller wrote:

 VISIO, it's not specifically for Web Application design, but it works
 really well for modelling all sorts of processes including databases
 and networks.
 
 When you signup for Microsoft's partner program you get VISIO and a
 whole boatload of other software for internal use. I think we paid $99
 for the whole shebang including development copies of Windows Server
 2003, Office, etc.
 
 Just another option ...
 
 Joshua Miller
 Head Programmer / IT Manager
 Garrison Enterprises Inc.
 www.garrisonenterprises.net [EMAIL PROTECTED]
 (704) 569-0801 ext. 254
 
 ***
 *
 *
 Any views expressed in this message are those of the individual sender,
 except where the sender states them to be the views of
 Garrison Enterprises Inc.
 
 This e-mail is intended only for the individual or entity to which it
 is addressed and contains information that is private and confidential.
 If you are not the intended recipient you are hereby notified that any
 dissemination, distribution or copying is strictly prohibited. If you
 have received this e-mail in error please delete it immediately and
 advise us by return e-mail to [EMAIL PROTECTED]
 ***
 *
 *
 
 
 -Original Message-
 From: Mike Brunt [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 11:22 AM
 To: CF-Talk
 Subject: RE: CF Application Design
 
 
 Michael, take a look at NAWT (not another wireframe tool) at
 strangetactics.com it serves at least part of the process and it is
 free.
 
 Kind Regards - Mike Brunt
 Webapper Services LLC
 Web Site http://www.webapper.com
 Blog http://www.webapper.net
 
 Webapper Web Application Specialists
 
 -Original Message-
 From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 11, 2003 8:14 AM
 To: CF-Talk
 Subject: CF Application Design
 
 Does anyone know of any tools available that are free or very cheap
 that help layout a new application? I am pushing for Adalon here, but
 its an uphill battle...
 
 I am trying to find a tool to aid in the restructuring and redesign of
 our main application that currently has NO documentation and NO initial
 design specs... sad story yes... and very frustrating.
 
 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

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: Where is it? wasRE: RE: CF Application Design

2003-07-11 Thread Michael T. Tangorre
http://synthis.com/downloads/index.jsp

download link one and link 3

:-)



- Original Message - 
From: Mike Brunt [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, July 11, 2003 1:54 PM
Subject: Where is it? wasRE: RE: CF Application Design


 Can anyone either point me to the free Adalon version or email me a copy
off line.  I looked for it before and could not find it.

 Kind Regards - Mike Brunt
 Original Message ---
 The free wireframe version of Adalon is great.  I wireframed a big ol' FB
 app (around 40 circuits, from 10 to 40 fuseactions each), and it was great
 to work with.  Once you have the diagrams all set up, and you actually
have
 something pretty to show the boss, the sale for the full version (that
 actually generates code and stuff) could be much easier.  I also use it
for
 database relationships and class diagrams, because i'm familiar with it.
 Probably better tools for each job out there, bot for a single app, it's
 great at all three.

 barneyb

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

 www.audiencecentral.com


  -Original Message-
  From: Costas Piliotis [mailto:[EMAIL PROTECTED]
  Sent: Friday, July 11, 2003 9:54 AM
  To: CF-Talk
  Subject: RE: CF Application Design
 
 
  I'd personally recommend Embarcadero's ER/Studio for database design.
It
  has way better features than Visio, for it is specific...
 
  http://www.embarcadero.com/products/erstudio/index.asp
 
  I believe Sybase and Oracle also have good database design tools...
 
  Looks like Adalon though is a pretty cool wireframe app...  I may have
to
  try that out myself...
 
  -Original Message-
  From: Jim Campbell [mailto:[EMAIL PROTECTED]
  Sent: Friday, July 11, 2003 9:39 AM
  To: CF-Talk
  Subject: Re: CF Application Design
 
 
  With Visio Enterprise, you can create ER diagrams and forward-engineer
  database tables with all their relationships defined.  Regular Visio
  will only reverse-engineer Access and SQL-Server databases, but that can
  be a big help if you need a graphical representation.  I'm not sure if
  you can just bolt onto anything through ODBC, though.  I haven't really
  dug into it that much.
 
  - Jim
 
  Joshua Miller wrote:
 
  VISIO, it's not specifically for Web Application design, but it works
  really well for modelling all sorts of processes including databases
  and networks.
  
  When you signup for Microsoft's partner program you get VISIO and a
  whole boatload of other software for internal use. I think we paid $99
  for the whole shebang including development copies of Windows Server
  2003, Office, etc.
  
  Just another option ...
  
  Joshua Miller
  Head Programmer / IT Manager
  Garrison Enterprises Inc.
  www.garrisonenterprises.net [EMAIL PROTECTED]
  (704) 569-0801 ext. 254
  
  ***
  *
  *
  Any views expressed in this message are those of the individual sender,
  except where the sender states them to be the views of
  Garrison Enterprises Inc.
  
  This e-mail is intended only for the individual or entity to which it
  is addressed and contains information that is private and confidential.
  If you are not the intended recipient you are hereby notified that any
  dissemination, distribution or copying is strictly prohibited. If you
  have received this e-mail in error please delete it immediately and
  advise us by return e-mail to [EMAIL PROTECTED]
  ***
  *
  *
  
  
  -Original Message-
  From: Mike Brunt [mailto:[EMAIL PROTECTED]
  Sent: Friday, July 11, 2003 11:22 AM
  To: CF-Talk
  Subject: RE: CF Application Design
  
  
  Michael, take a look at NAWT (not another wireframe tool) at
  strangetactics.com it serves at least part of the process and it is
  free.
  
  Kind Regards - Mike Brunt
  Webapper Services LLC
  Web Site http://www.webapper.com
  Blog http://www.webapper.net
  
  Webapper Web Application Specialists
  
  -Original Message-
  From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
  Sent: Friday, July 11, 2003 8:14 AM
  To: CF-Talk
  Subject: CF Application Design
  
  Does anyone know of any tools available that are free or very cheap
  that help layout a new application? I am pushing for Adalon here, but
  its an uphill battle...
  
  I am trying to find a tool to aid in the restructuring and redesign of
  our main application that currently has NO documentation and NO initial
  design specs... sad story yes... and very frustrating.
  
  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

  1   2   >