Re: [ACFUG Discuss] Quick Survey - Mura Users? Railo?

2012-11-03 Thread Howard Fore
1 - yes
2 - dabbled briefly a couple of years
3 - in development

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead



On Fri, Nov 2, 2012 at 10:18 AM, Cameron Childress camer...@gmail.comwrote:

 Next week at ACFUG I'm going to be going through Blue River's MuraCon
 slidedeck and talking about the upcoming Mura 6 (http://getmura.com/)
 release. I'm also going to run through Gert Franz's State of Railo
 slidedeck about new Railo 4 features and some other developments in the
 Railo camp.

 I thought I'd check with the group beforehand and ask those who plan to
 attend:

 1) Who's heard of Mura?
 2) Who's using Mura?
 3) Who's using Railo?



Re: [ACFUG Discuss] Adobe products... Educational discount?

2012-10-29 Thread Howard Fore
http://store1.adobe.com/cfusion/store/html/index.cfm?store=OLS-EDUevent=displayEduConditionsnr=0promoid=FCRWP

There are also 3rd party stores, like http://www.academicsuperstore.com/

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead



On Mon, Oct 29, 2012 at 11:48 PM, Frank Moorman stretch...@franksdomain.net
 wrote:

 Sorry this really isn't directly related to CF

 All, does Adobe have have any educational discounts... for high school
 students?  My nephew just started at a charter/magnet school for
 multimedia arts
 in Jacksonville. He is required to get Adobe After Effects, Premiere Pro,
 and
 Photoshop from CS6. (but would prefer  to have the Creative Suite Master
 Collection with Audition and Fireworks.)

 However, like most families right now, money is somewhat tight (especially
 after
 springing for a Mac Book, which even used was a budget breaker,) so I was
 hoping
 that some of the Adobe people on the list would know where to get the best
 pricing/discounts on the software or what programs are available to get
 him the
 software at a promotional rate. Obviously, getting a legit copy is
 important...
 (so the too good to be true deals from craigslist aren't really an option.)

 Thanks,
 Frank


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






Re: [ACFUG Discuss] Re: Odd CreateDate error

2012-06-27 Thread Howard Fore
Yep, try/catch was how I was getting the error message I showed, it just
was out in the main logic and not in the subroutine.

Thanks for finding the issue, that's exactly what I meant by obvious!

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead



On Wed, Jun 27, 2012 at 12:14 AM, Troy Jones t...@dynapp.com wrote:

  Howard,

 ** **

 One thing I might suggest is to try/catch the logic and dump the cfcatch
 scope into an email. This will probably yield you a more robust error
 report than what you see here.

 ** **

 I took your function and modified it just a bit to see if I could find
 something out. It looks like that, when you set the date as “31oct2012”,
  the reason its yielding an error is because of your list being out of
 chronological order. Oct and Nov are switched. I fixed them up; the
 function returns the expected data. 

 ** **

 ** **

 *From:* ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Howard
 Fore
 *Sent:* Tuesday, June 26, 2012 9:25 PM
 *To:* ACFUG Discussion
 *Subject:* [ACFUG Discuss] Re: Odd CreateDate error

 ** **

 Actually that date string works ok. But 31Oct2011 does not. 30Oct2011
 is ok, Halloween isn't. Grr.


 --
 Howard Fore, howard.f...@hofo.com

 “What people say, what people do, and what they say they do are entirely
 different things.” - Margaret Mead



 

 On Tue, Jun 26, 2012 at 9:04 PM, Howard Fore howard.f...@hofo.com wrote:
 

 I'm sure there's some blindingly obvious thing I'm doing wrong here, but I
 can't see it. Any ideas would be extremely helpful.

 ** **

  cffunction name=dateConverter

 cfargument name=strDate required=yes

 cfargument name=strFormat required = yes

 cfset var rtnDate = createDate(1900,1,1)

 ** **

 cfif arguments.strFormat is ddmmm

 !--- example: 31jan2012 ---

 cfset var dateParts =
 RefindNoCase('([0-9]{1,2})([a-z]{3,3})([0-9]{4,4})',arguments.strDate,1,true)
 

 cfif dateparts.pos[2] neq 0

 cfset var theDate = {}

 ** **

 cfset theDate.days =
 mid(arguments.strDate,dateParts.pos[2],dateParts.len[2])

 ** **

 cfset theDate.month =
 mid(arguments.strDate,dateParts.pos[3],dateParts.len[3])

 cfset var theMonthsList =
 'jan,feb,mar,apr,may,jun,jul,aug,sep,nov,oct,dec'

 cfset theDate.monthNumber = ListFind(theMonthsList,theDate.month)

 ** **

 cfset theDate.year =
 mid(arguments.strDate,dateParts.pos[4],dateParts.len[4])

 ** **

 cfset rtnDate = createDate(theDate.year, theDate.monthNumber,
 theDate.days)

 /cfif

 ** **

 /cfif

 cfreturn rtnDate

 /cffunction

 ** **

 ** **

 cfset theDate = 12oct2012

 cfoutput#dateConverter(theDate,'ddmmm')#/cfoutput

  ** **

 gives me (in CF 9.0.1) an extremely unhelpful error (line 37 in the stack
 trace below is the cfset rtnDate line towards the end of the above function:
 

 ** **

 *struct*

 Message

 MONTH

 StackTrace

 java.lang.IllegalArgumentException: MONTH at
 java.util.GregorianCalendar.computeTime(GregorianCalendar.java:2482) at
 java.util.Calendar.updateTime(Calendar.java:2469) at
 java.util.Calendar.getTimeInMillis(Calendar.java:1088) at
 java.util.Calendar.getTime(Calendar.java:1061) at
 coldfusion.util.DateUtils.createDate(DateUtils.java:959) at
 coldfusion.runtime.CFPage.CreateDate(CFPage.java:1009) at
 cfindex2ecfm2067856441$funcDATECONVERTER.runFunction(D:\frba\pages\research\inflationproject\dashboard\index.cfm:37)
 at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at
 coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
 at
 coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
 at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at
 coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at
 coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at
 cfindex2ecfm2067856441._factor2(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1251)
 at
 cfindex2ecfm2067856441._factor11(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1242)
 at
 cfindex2ecfm2067856441._factor12(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1156)
 at
 cfindex2ecfm2067856441._factor13(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1154)
 at
 cfindex2ecfm2067856441._factor14(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1146)
 at
 cfindex2ecfm2067856441._factor24(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1137)
 at
 cfindex2ecfm2067856441._factor32(D:\frba\pages\research\inflationproject\dashboard\index.cfm:13)
 at
 cfindex2ecfm2067856441.runPage(D:\frba\pages\research\inflationproject\dashboard\index.cfm:12)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231) at
 coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416) at
 coldfusion.filter.CfincludeFilter.invoke

[ACFUG Discuss] Odd CreateDate error

2012-06-26 Thread Howard Fore
)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead


[ACFUG Discuss] Re: Odd CreateDate error

2012-06-26 Thread Howard Fore
Actually that date string works ok. But 31Oct2011 does not. 30Oct2011
is ok, Halloween isn't. Grr.

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead



On Tue, Jun 26, 2012 at 9:04 PM, Howard Fore howard.f...@hofo.com wrote:

 I'm sure there's some blindingly obvious thing I'm doing wrong here, but I
 can't see it. Any ideas would be extremely helpful.

 cffunction name=dateConverter
 cfargument name=strDate required=yes
  cfargument name=strFormat required = yes
  cfset var rtnDate = createDate(1900,1,1)

  cfif arguments.strFormat is ddmmm
 !--- example: 31jan2012 ---
  cfset var dateParts =
 RefindNoCase('([0-9]{1,2})([a-z]{3,3})([0-9]{4,4})',arguments.strDate,1,true)
  cfif dateparts.pos[2] neq 0
  cfset var theDate = {}

  cfset theDate.days =
 mid(arguments.strDate,dateParts.pos[2],dateParts.len[2])

 cfset theDate.month =
 mid(arguments.strDate,dateParts.pos[3],dateParts.len[3])
  cfset var theMonthsList =
 'jan,feb,mar,apr,may,jun,jul,aug,sep,nov,oct,dec'
  cfset theDate.monthNumber = ListFind(theMonthsList,theDate.month)

  cfset theDate.year =
 mid(arguments.strDate,dateParts.pos[4],dateParts.len[4])

 cfset rtnDate = createDate(theDate.year, theDate.monthNumber,
 theDate.days)
  /cfif

 /cfif
  cfreturn rtnDate
  /cffunction


 cfset theDate = 12oct2012
 cfoutput#dateConverter(theDate,'ddmmm')#/cfoutput


 gives me (in CF 9.0.1) an extremely unhelpful error (line 37 in the stack
 trace below is the cfset rtnDate line towards the end of the above function:

 struct MessageMONTH StackTracejava.lang.IllegalArgumentException: MONTH
 at java.util.GregorianCalendar.computeTime(GregorianCalendar.java:2482) at
 java.util.Calendar.updateTime(Calendar.java:2469) at
 java.util.Calendar.getTimeInMillis(Calendar.java:1088) at
 java.util.Calendar.getTime(Calendar.java:1061) at
 coldfusion.util.DateUtils.createDate(DateUtils.java:959) at
 coldfusion.runtime.CFPage.CreateDate(CFPage.java:1009) at
 cfindex2ecfm2067856441$funcDATECONVERTER.runFunction(D:\frba\pages\research\inflationproject\dashboard\index.cfm:37)
 at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472) at
 coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
 at
 coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
 at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321) at
 coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220) at
 coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2582) at
 cfindex2ecfm2067856441._factor2(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1251)
 at
 cfindex2ecfm2067856441._factor11(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1242)
 at
 cfindex2ecfm2067856441._factor12(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1156)
 at
 cfindex2ecfm2067856441._factor13(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1154)
 at
 cfindex2ecfm2067856441._factor14(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1146)
 at
 cfindex2ecfm2067856441._factor24(D:\frba\pages\research\inflationproject\dashboard\index.cfm:1137)
 at
 cfindex2ecfm2067856441._factor32(D:\frba\pages\research\inflationproject\dashboard\index.cfm:13)
 at
 cfindex2ecfm2067856441.runPage(D:\frba\pages\research\inflationproject\dashboard\index.cfm:12)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231) at
 coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416) at
 coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:360) at
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
 at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at
 coldfusion.filter.PathFilter.invoke(PathFilter.java:94) at
 coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at
 coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:79) at
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at
 coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at
 coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at
 coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at
 coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at
 coldfusion.CfmServlet.service(CfmServlet.java:200) at
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at
 jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at
 coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
 at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
 at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at
 jrun.servlet.FilterChain.service(FilterChain.java:101) at
 jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106

Re: [ACFUG Discuss] LinkedIn hacked...

2012-06-20 Thread Howard Fore
I don't see a setting in the Administrator for this nor remember this as a
feature.

--
Howard Fore, howard.f...@hofo.com
“What people say, what people do, and what they say they do are entirely
different things.” - Margaret Mead



On Wed, Jun 20, 2012 at 8:43 AM, brooks.wil...@atl.frb.org wrote:

 Question: how many login attempts does CF Administrator allow before it
 locks you out?

 Sincerely, Brooks

 *ADS* develops  supports effective, efficient and secure software
 solutions
 *
 --
 *
 *Federal Reserve Bank of Atlanta *∙* *Application Delivery Services
 1000 Peachtree Street NE ∙ Atlanta,Georgia ∙ 30309-4470  404-498-8178





Re: [ACFUG Discuss] Apple Runs on ColdFusion

2011-09-08 Thread Howard Fore
Wish it were so. Unfortunately investor.apple.com is a cname that points to
aapl.client.shareholder.com.

--
Howard Fore, howard.f...@hofo.com
A novice asked the master, 'What is the true meaning of programming?' The
master replied: 'Eat when you are hungry, sleep when you are fatigued,
program when the moment is right.'  - Geoffrey
Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
From
The Zen of Programming.


On Thu, Sep 8, 2011 at 9:45 AM, Cameron Childress camer...@gmail.comwrote:

 Just thought the group would find this interesting:

 http://investor.apple.com/Application.cfc

 -Cameron

 --
 Cameron Childress
 --
 p:   678.637.5072
 im: cameroncf
 facebook http://www.facebook.com/cameroncf | 
 twitterhttp://twitter.com/cameronc |
 google+ https://profiles.google.com/u/0/117829379451708140985





[ACFUG Discuss] Server-side Actionscript

2011-09-01 Thread Howard Fore
Hey,

Has anyone used Server-side Actionscript? Is it just another way for
Flash/Flex to talk to CF? I was hoping it would allow communication the
other way, where I could have a CFM or CFC call an Actionscript function. I
have a third-party SWF (AnyChart) that has a function to export any chart it
creates as PNG (or JPEG) but I wanted to do it on the backend, not force the
user to do it in the browser.

--
Howard Fore, howard.f...@hofo.com
A novice asked the master, 'What is the true meaning of programming?' The
master replied: 'Eat when you are hungry, sleep when you are fatigued,
program when the moment is right.'  - Geoffrey
Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
From
The Zen of Programming.


Re: [ACFUG Discuss] Server-side Actionscript

2011-09-01 Thread Howard Fore
Yeah well, it's going to be work no matter which route I take :-)


I guess that's job security right?


--
Howard Fore, howard.f...@hofo.com
A novice asked the master, 'What is the true meaning of programming?' The
master replied: 'Eat when you are hungry, sleep when you are fatigued,
program when the moment is right.'  - Geoffrey
Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
From
The Zen of Programming.


On Thu, Sep 1, 2011 at 2:32 PM, Douglas Knudsen douglasknud...@gmail.comwrote:

 I smelled silliness then and still smell it now :)  AS was not really
 designed for server-side jobs, reminds me of the hammer and nail analogy.

 Howard, sure, you could run a AIR app on the server, but how to communicate
 with it? local connection? certainly doable, but seems a heck of a lot of
 work IMO.  Oh, and it is not going to be thread safe and all that jazz and
 has no way to push to clients. Need some ADEP and $$ for that.


 Douglas Knudsen
 http://www.cubicleman.com
 this is my signature, like it?


 On Thu, Sep 1, 2011 at 2:08 PM, Steve Ross nowhid...@gmail.com wrote:

 from the docs for CF8:


 Server-side ActionScript lets your ActionScript engineers use their
 knowledge of ActionScript to write code for the back end of their Flash
 applications, which can mean more meaningful levels of interactivity for
 your users. Your Flash applications can share a library of server-side
 ActionScript functions, which means you can define functions that are
 specifically tailored to your own business.

 You could, for example, create a server-side ActionScript file that
 defines a whole library of SQL query methods. With these query methods
 defined on the server side, your Flash designers only have to invoke the
 specific query function they want to return data to their Flash movies. They
 do not have to write any SQL, and they do not have to create a new query
 every time they need to retrieve data from a ColdFusion data source. It is a
 way of creating reusable queries that your entire Flash design team can use.

 On Thu, Sep 1, 2011 at 1:46 PM, Howard Fore howard.f...@hofo.com wrote:

 Can Air apps run server-side?

 --
 Howard Fore, howard.f...@hofo.com
 A novice asked the master, 'What is the true meaning of programming?'
 The master replied: 'Eat when you are hungry, sleep when you are fatigued,
 program when the moment is right.'  - Geoffrey 
 Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
  From
 The Zen of Programming.


 On Thu, Sep 1, 2011 at 1:19 PM, John Mason ma...@fusionlink.com wrote:

  Not yet from Adobe. There is server-side ECMAscript with Node.js. Since
 actionscript and ecmascript are so closely related, it might be worth
 looking that route.

 You could also do an air app with a socket server to have cf call it
 that way.


 John
 ma...@fusionlink.com



 On 9/1/11 1:14 PM, Howard Fore wrote:

 Hey,

  Has anyone used Server-side Actionscript? Is it just another way for
 Flash/Flex to talk to CF? I was hoping it would allow communication the
 other way, where I could have a CFM or CFC call an Actionscript function. I
 have a third-party SWF (AnyChart) that has a function to export any chart 
 it
 creates as PNG (or JPEG) but I wanted to do it on the backend, not force 
 the
 user to do it in the browser.

 --
 Howard Fore, howard.f...@hofo.com
  A novice asked the master, 'What is the true meaning of programming?'
 The master replied: 'Eat when you are hungry, sleep when you are fatigued,
 program when the moment is right.'  - Geoffrey 
 Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
  From
 The Zen of Programming.



 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -





 --
 Steve Ross
 web application  interface developer
 http://blog.stevensross.com
 [mobile] (912) 344-8113
 [ AIM / Yahoo! : zeriumsteven ] [googleTalk : nowhiding ]





Re: [ACFUG Discuss] CF Lunch - Midtown Edition

2011-06-13 Thread Howard Fore
I'll come out.

--
Howard Fore, howard.f...@hofo.com
A novice asked the master, 'What is the true meaning of programming?' The
master replied: 'Eat when you are hungry, sleep when you are fatigued,
program when the moment is right.'  - Geoffrey
Jameshttp://www.softwarequotes.com/showquotes.aspx?id=687name=James,Geoffrey-
From
The Zen of Programming.


On Mon, Jun 13, 2011 at 2:07 PM, Peyton Todd peytont...@att.net wrote:

 Count me in. Thanks for organizing it.

 Peyton

 --
 *From:* Cameron Childress camer...@gmail.com
 *To:* discussion@acfug.org
 *Sent:* Mon, June 13, 2011 12:38:22 PM
 *Subject:* [ACFUG Discuss] CF Lunch - Midtown Edition

 All-

 I've been considering starting up CFLunch in the Midtown area again.
 I'm thinking June 22nd (a week from this Wednesday) would be a good
 date to start.  I'm not sure where we would meet yet, but am thinking
 about moving it around to a different place in midtown each time.
 Perhaps starting with Mellow Mushroom at 26th and Peachtree (selfishly
 near my office), or Front Page News on Crescent Ave (great patio).

 For those who may not know what CFLunch is, it's just a bunch of us
 getting together once a month for lunch.  Feel free to invite other
 non-CF folks too, as long as they can put up with nerdy CF
 conversation.

 Who in midtown would attend on June the 22nd?  Any comments on location or
 day?

 -Cameron

 --
 Cameron Childress
 Sumo Consulting Inc
 http://www.sumoc.com
 ---
 cell:  678.637.5072
 aim:   cameroncf
 email: camer...@gmail.com


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform


 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -




 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -


Re: [ACFUG Discuss] interactive map

2011-02-14 Thread Howard Fore
Jeff,

Take a look at this:
http://www.workwithchoicecuts.com/methodology/revisiting-the-html-image-map/.
I used it recently and it was fairly easy to adapt.

--
Howard Fore, howard.f...@hofo.com
Corporations have been enthroned and an era of corruption in high places
will follow, and the money power of the country will endeavor to prolong its
reign by working upon the prejudices of the people until the wealth is
aggregated in the hands of a few, and the Republic is destroyed. -
President Abraham Lincoln, Nov 21, 1864


On Mon, Feb 14, 2011 at 3:49 PM, Jeff Howard jeh...@gmail.com wrote:

 Hey all,

 I have a client that is wanting to add an interactive map of the US.  The
 basic requirements are that when you mouse over a state you get a popup with
 a list of recruiters within that state and if you actually click on the link
 it performs an existing search and displays the results in the browser.  He
 prefers to avoid Flash and I was searching around for a jQuery application
 and found one possibility,
 http://www.gethifi.com/blog/a-jquery-plugin-for-zoomable-interactive-maps,
 but was wondering if anyone has any recommendations.

 Any input would be appreciated be it a solid argument for using Flash or
 pointing to a quick easily implemented existing js solution.

 Thanks,
 Jeff



[ACFUG Discuss] Fwd: [Owasp-Atlanta] FW: Calling all ATL Developers - Free Con Entrance

2010-08-25 Thread Howard Fore
Good morning,

The OWASP (http://www.owasp.org/) organization is engaged in an effort to
lower the barriers for developers to become more aware of how to test for
and defend against vulnerabilities in the software they're creating. I
attended an OWASP conference a few years ago in Seattle, it was well worth
the time. If you're at all interested in web application security from a
developer's point of view, the offer (a full ride sponsorship to go the
OWASP AppSec USA 2010  conference) below is a good deal.

--
Howard Fore, howard.f...@hofo.com
Corporations have been enthroned and an era of corruption in high places
will follow, and the money power of the country will endeavor to prolong its
reign by working upon the prejudices of the people until the wealth is
aggregated in the hands of a few, and the Republic is destroyed. -
President Abraham Lincoln, Nov 21, 1864


-- Forwarded message --

*From:* Tony UV [mailto:ton...@owasp.org]
*Sent:* Thursday, August 19, 2010 12:29 AM
*To:* 'owasp-atla...@lists.owasp.org'
*Subject:* Calling all ATL Developers - Free Con Entrance
*Importance:* High



All,



Thanks to all who were able to make it out to the August meeting with Dinis
Cruz, global OWASP Lead.  Turnout was a bit low given the impromptu nature
of the meeting, however feedback was positive on Dinis presentation of the
O2 framework . As soon as Dinis finishes the final touches on the deck, I’ll
be posting to the ATL chapter site (see below in my signature in case you
don’t have it bookmarked already).



OWASP AppSec CA is taking place in a matter of weeks and I was planning to
make an announcement last week, but I was traveling on business. Regardless,
AppSec Conference in Irvine, CA is taking place in early September and we
are looking for developers to take to the conference – for free.  That’s
right – as part of a global OWASP initiative to ‘Bring a Developer to a
Security Con’, we are paying the way for developers to learn more about
secure coding for web applications and partake more in the local ATL
chapter, as well as socialize the group’s efforts with other developer
colleagues.



As part of this initiative, the following requirements must be met:



-Full time development of web applications for a major company in
the Atlanta area

-5+ years of development experience, namely for web applications (no
wannabe developers)

-Active participation of all training and presentation events at the
conference (not a free visit to Grandma in Irvine, CA)

-Brief description of who you are, why you should be selected and if
you have clearance to attend between the dates of Sept 7th to Sept 10th



Spread the word and please write me directly if you are a developer and may
be interested in attending.  Full con details are found here:
http://www.owasp.org/index.php/AppSec_US_2010,_CA.



Best,



Tony UcedaVelez, CISM, CISA, GSEC

*Chapter Lead*

*OWASP Atlanta*

http://www.owasp.org/index.php/Atlanta_Georgia

Twitter: *...@versprite*



___
Owasp-Atlanta mailing list
owasp-atla...@lists.owasp.org
https://lists.owasp.org/mailman/listinfo/owasp-atlanta


Re: [ACFUG Discuss] Adobe Visiting Atlanta to Gather Input for CFX (CF10)

2010-07-15 Thread Howard Fore
That'd be a great idea, assuming his schedule allows!

--
Howard Fore, howard.f...@hofo.com
I live on Earth at present, and I don’t know what I am. I know that I am
not a category. I am not a thing — a noun. I seem to be a verb, an
evolutionary process – an integral function of the universe.
— Richard Buckminster Fuller


On Thu, Jul 15, 2010 at 10:06 PM, Peyton Todd peytont...@att.net wrote:


 Any chance we could schedule him for meeting with ACFUG Wednesday evening
 August 4?



Re: [ACFUG Discuss] CF blogs

2010-01-29 Thread Howard Fore
And in my experience with both blog engines, the authors are very responsive
to emails/forum posts. Not a point to one side or the other but good points
to both!

--
Howard Fore, howard.f...@hofo.com
The worthwhile problems are the ones you can really solve or help solve,
the ones you can really contribute something to. ... No problem is too small
or too trivial if we can really do something about it. - Richard P. Feynman


On Fri, Jan 29, 2010 at 1:03 PM, Dusty Hale du...@climbonline.com wrote:

 Those are very good reasons. Ease of skin is very important in the project
 I've been assigned. Thanks again to all for the input.

 Dusty


 On Thu, Jan 28, 2010 at 12:58 PM, Andrew phi1...@gmail.com wrote:

 I switched from BlogCFC to Mango for multiple reasons.

 1.  It's EXTREMELY easy to skin and modify the designs for it
 2.  It's got a solid plugin architecture that lets you add any
 functionality that you may think is missing without compromising the engine
 as a whole
 3.  It's got an extremely well designed admin console that automatically
 notifies you of updates, not just to the engine, but to skins as well

 I feel that BlogCFC is a good starter blog for anyone wanting to use a
 CF blog engine.  Mango, to me, just seems like a much more elegant and
 professional piece of software.  I've told Ray as much and he agrees.
  BlogCFC is a hobby for him, not something he can dedicate a lot of time to
 maintain.  Mango is something that Nauhel and Laura have time to dedicate to
 and it shows.

 My two cents.

 Andy Powell



 On Thu, Jan 28, 2010 at 11:53 AM, shawn gorrell chees...@yahoo.comwrote:

 I've been using Ray's BlogCFC since he first released it. Modified it
 slightly and haven't done a single upgrade. Has worked well for me, so I had
 no reason to stay up to date.

 --
 *From:* Dusty Hale du...@climbonline.com
 *To:* discussion@acfug.org
 *Sent:* Thu, January 28, 2010 11:49:48 AM
 *Subject:* Re: [ACFUG Discuss] CF blogs

 That's Tom that's just the kind of input I was looking for. I downloaded
 Mango last night. Seems easy to install. I like what I see so far.

 One of the guys at the office wrote me this morning to tell me he opened
 an account at blogger.com and ask me if we should run multiple blogs.
 One integrated into our site and another one at blogger.com. I didn't
 know what to tell him. I'm not a blog expert or anything but at the moment I
 don't know how it would help to have two which would basically have the same
 info on it. Does anyone know if would help or hurt to post the same content
 to multiple blogs? Good thing? Bad thing?

 Dusty

 On Thu, Jan 28, 2010 at 11:02 AM, Tom McNeer tmcn...@gmail.com wrote:

 Dusty,

 I'm not sure you'll be able to determine a most preferred: blog. But I
 think you'll find strong supporters both for Ray Camden's BlogCFC (which 
 has
 been around forever, but is frequently updated) and Mango Blog, from the
 folks at ASFusion.

 You can find both at RIAForge, I think. For some reason, Mango Blog
 isn't showing up in the search there, although a number of plugins for it
 do. But you can find it at mangoblog.org.

 Mango, in particular, is built for skinning.

 --
 Thanks,

 Tom

 Tom McNeer
 MediumCool
 http://www.mediumcool.com
 1735 Johnson Road NE
 Atlanta, GA 30306
 404.589.0560




 --
 Dusty Hale
 Email: du...@dustyhale.com
 Phone (Atlanta): 404.474.3754
 Phone (Toll Free USA): 877.841.3370
 Website: www.DustyHale.com

 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -





 --
 Dusty Hale
 Email: du...@dustyhale.com
 Phone (Atlanta): 404.474.3754
 Phone (Toll Free USA): 877.841.3370
 Website: www.DustyHale.com



Re: [ACFUG Discuss] ColdFusion vs WordPress

2010-01-11 Thread Howard Fore
There's no ready-made alternative to Wordpress or Drupal in the CF world.
The Mango Blog engine has the capabililty for feature extension very easily.
I've written a couple of simple plugins and themes, it's fairly easyu. There
are a growing number of people contributing themes and plugins to the Mango
community but it's several years behind the curve when compared to WP. The
potential is there but it will take a while to realize. If you need to stick
with a CF solution, I'd look at that first. I've no experience with Mura. It
could very well be that he's enchanted by the possibilities in the WP
universe that he won't ever use and that once he defines some real
requirements Mango would work just fine.

Alternately, at the peril of introducing supporting a PHP application, WP is
a breeze to support. Seriously. It's by far one of the more polished open
source apps that exist. You can run into problems if you want to start some
hardcore customizations, but if his requirements call for that, stick with a
CF solution.

I have found BlogCFC customizations difficult at best for anything that's
not the simplest request. It's not the initial customization that has bit me
but the subsequent upgrades. I haven't looked a the BlogCFC 6 alphas in some
time but I don't recall seeing anything that looked like it would be a great
deal easier in the future.

I felt a bit like a traitor doing it but I recently converted the handful of
blogs I maintain to WP from Mango/BlogCFC. I was just tired of continually
putting off my to do list of features for the blogs because there wasn't a
plugin to handle it yet and I don't have enough time right now to develop
them in time for when I wanted them.

--
Howard Fore, howard.f...@hofo.com
The worthwhile problems are the ones you can really solve or help solve,
the ones you can really contribute something to. ... No problem is too small
or too trivial if we can really do something about it. - Richard P. Feynman


On Mon, Jan 11, 2010 at 4:23 PM, Cheyenne Throckmorton 
cheyenne.throckmor...@gmail.com wrote:

 I know the subject is comparing apples and oranges, but I'm caught with a
 difficult question.

 I have a Creative Director who has learned and loves utilizing WordPress
 for his own side purposes.  He wants to know if that is something we can now
 roll out for a client to build a website that acts essentially as an
 interactive newsletter.  (I've already discussed with him that he needs to
 define 'interactive' and discuss 'measurable goals' with the client to prove
 we have indeed been 'interactive')

 The reasons he loves WordPress and wants to go with it are:
 - Easy to use
 - Searchable (vs flash-based page turner they currently use)
 - It will be faster to deploy having graphics, writing and copy editing
 teams working simultaneously on articles
 - He comes pre-trained and there are lots of tutorials on-line
 - There are constant updates, plug-ins, themes and extensions being built
 everyday that he can use

 With a small team of developers I am hesitant to add yet another platform
 for us to support, and worse yet another language, PHP.

 Reasons 1-3 are essentially things that can be solved by most CMS systems
 (ie Mura, or BoomSocket - which is what we currently use) and even MangoBlog
 and possibly BlogCFC.

 Reasons 4-5 are big question marks in my mind though.  The CF community has
 nowhere near the presence of the PHP or even WordPress community.  There are
 a ton of tutorials, videos, plug-ins, updates, themes and even user groups
 as well.

 ColdFusion certainly has its place as a middleware hub for all sorts of
 things.  Today, I'm wondering with our growing deficit of tools, platforms
 and developers if  we are losing our place among web platform utilities.
  The open source community is rapidly out pacing CF with platforms like
 WordPress, Ning (which I utilize tons on the side without really knowing PHP
 well), Drupal and others.

 I'm searching in my head for valid reasons that we would not want to
 roll-out WordPress because we are a CF shop.  Still, I can't shake the truth
 of the matter being that in addressing the massive amounts of help
 tutorial/trainings and plug-ins, themes and extensions out there why I
 wouldn't launch a WordPress site on a 3rd party hosted solution and let our
 design teams maintain it most of the way.

 How would you set up a small content-managed site for a group of writers
 and designers to have the most flexibility while utilizing less of your
 time?
 (WordPress, Mura, BoomSocket, Drupal, Ning, MangoBlog, other).

 If CF can't compete in this area, which seems to depend upon sheer numbers
 of developers using the language, should it try to catch up and how or
 should it just give up the game in competing for web-based platform/tool
 offerings with healthy ecosystems of plugins like WordPress and keep
 focusing itself down to a middleware language to be carried by other
 intriguing Adobe specific options like Flash/Flex/AIR/Reader

Re: [ACFUG Discuss] Learning a ColdFusion Framework

2009-07-21 Thread Howard Fore
If you look in the ReadMe on the root of the SVN, I think he says that
is a sample app.


On Tuesday, July 21, 2009, Teddy R. Payne teddyrpa...@gmail.com wrote:
 I read through the wiki for FW/1.  For something small, there is still some 
 nuance there.  I see some code examples and where to put various files, but a 
 sample application is what is really needed there.  Perhaps I missed the 
 location of the sample application.

 From what he is describing is probably the gap between a large framework and 
 creating a more organized code structure.  You don't have to have something 
 monolithic to have code and directory structure standards.  A set location 
 for views, your controller, a bean factory, and a place to reference model 
 data is really the basis for any application.

 Sean just added some extra wiring to interpret from a directory structure 
 instead of defining explicitly the connections between the M, V, and C.

 Teddy




-- 
--
Howard Fore, howard.f...@hofo.com
The worthwhile problems are the ones you can really solve or help
solve, the ones you can really contribute something to. ... No problem
is too small or too trivial if we can really do something about it. -
Richard P. Feynman


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Re: [AFFUG Discuss] ColdFusion and MySQL

2009-07-08 Thread Howard Fore
It's interesting that you note you didn't notice is as much when the site
was busy. One commenter on the MySQL bug db for this issue (http://bugs.
mysql.com/bug.php?id=27647) says that it looked to him like the CF driver
had dropped the connection and that the bug came when CF tried to use that
non-existent connection.

--
Howard Fore, howard.f...@hofo.com
The worthwhile problems are the ones you can really solve or help solve,
the ones you can really contribute something to. ... No problem is too small
or too trivial if we can really do something about it. - Richard P. Feynman


On Wed, Jul 8, 2009 at 12:13 PM, Jeremy Bruck jbr...@growstrategy.comwrote:

 We have used MySQL with CF8 (windows server) on a site and we were getting
 this issue at different times.  Interesting thing was when the site was very
 active with lots of traffic, the problem wasn't as noticeable.   You would
 sporadically though have a 10 to 20 second delay in opening the page and in
 the logs during this time you would see the null pointer error.

 Our metaphor to describe it was... Their were X number of buses (threads)
 taking passengers (result sets) between 2 spots (mysql  cf) -- the problem
 is one of the buses would break down it would take 10-20 seconds to
 fix/scrap the bus and get a new one in to handle the passengers.

 We tried all the suggested fixes out there and couldn't ever find on that
 truly got rid of it for us and we were frustrating our clients too much.  It
 is my understand that this is ONLY a problem on windows servers - granted we
 never tested it on Linux but everyone including us that had the issue seemed
 to be on windows as well.  Our MS SQL sites on the same box had no issues or
 problems.

 For us, we moved this single website over to Railo with the exact same
 code, database and server and haven't experienced any issues (db delays,
 etc) for the past 4 months now since changing over.  Yes, our MS SQL sites
 are still running CF8 on the same box as well.

 Jeremy

 --
 Strategic Growth Services, LLC
 Jeremy Bruck
 jbr...@growstrategy.com


 On Jul 8, 2009, at 12:01 PM, John Mason wrote:

  Naturally this should be directly to the CF lists.


 http://www.coldfusionjedi.com/forums/messages.cfm?threadid=2BDF68EF-19B9-E658-9DDB2C6260E2CD89

 Check to see if the MySQL driver selected for the db wasn't the 3.x
 version. CF 8 has two different options.


 John
 ma...@fusionlink.com


 Clarke Bishop wrote:

 I am troubleshooting an application that uses ColdFusion 8 and MySQL.
 Intermittently, it throws the error below.
 I've seen on the web where others have had a similar problem. Have any of
 you seen this? Do you know of a fix?

 Thanks,

  Clarke


 java.lang.NullPointerException at
 com.mysql.jdbc.Statement.setMaxRows(Statement.java:2178) at

 coldfusion.server.j2ee.sql.JRunStatement.setMaxRows(JRunStatement.java:214)
 at coldfusion.sql.Executive.executeQuery(Executive.java:1276) at
 coldfusion.sql.Executive.executeQuery(Executive.java:1008) at
 coldfusion.sql.Executive.executeQuery(Executive.java:939) at
 coldfusion.sql.SqlImpl.execute(SqlImpl.java:325) at
 coldfusion.tagext.sql.QueryTag.executeQuery(QueryTag.java:831) at
 coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:521) at
 cfdbTest32ecfm1104898290.runPage(E:\web\engravedforever.com
 \WebTools\dbTest3
 .cfm:20) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at
 coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at
 coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:273) at

 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
 at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at
 coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at
 coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at
 coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
 at

 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
 Filter.java:28) at
 coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at
 coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at
 coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at
 coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at
 coldfusion.CfmServlet.service(CfmServlet.java:175) at
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
 at
 jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at

 coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletF
 ilter.java:42) at
 coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at
 jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at
 jrun.servlet.FilterChain.service(FilterChain.java:101) at
 jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at
 jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42

Re: [ACFUG Discuss] cfcookie with the domain attribute

2009-06-25 Thread Howard Fore
I guess when they say other servers they really mean other servers in the
same domain.

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Thu, Jun 25, 2009 at 6:51 AM, Clarke Bishop cbis...@resultantsys.comwrote:

  Thanks Howard and Charlie!



 Like you said, I thought cookies were only available to the domain that set
 them. The way I read it, the CF documentation is misleading:



 *Domain*

 Domain in which cookie is valid and to which cookie content can be sent
 from the user's system. *By default, the cookie is only available to the
 server that set it. Use this attribute to make the cookie available to other
 servers.*





 I originally planned on using URL parameters, but had a problem with that
 approach.



 Thanks for the clarification!



Clarke



Re: [ACFUG Discuss] cfcookie with the domain attribute

2009-06-24 Thread Howard Fore
Clark,

Cookies can only be set and read by a single domain. If you want to
pass the data to a second site, I'd suggest URL parameters.

On Wednesday, June 24, 2009, Clarke Bishop cbis...@resultantsys.com wrote:
 I am trying to pass a cookie from my site into a shopping cart
 on another site. It seems like this would be possible:



 1.
 Use cfcookie name = myCookie value = #myCookieVal#
 expires = 30 domain=.myDomain.com

 2.
 Do a cflocation to the other server

 3.
 Then, read the cookie with Javascript once the browser goes to
 myDomain.com



 I’m also setting the cookie without the domain attribute
 so I can see it on my server.  On my server, I can read the cookie, so I
 know it’s getting set. But, I can’t read the cookie from the other
 server. I’m using a Javascript alert to dump out the entire
 document.cookie string, and my cookie is not there!



 The other server is secure (https).



 Any ideas what might be going on? Am I mis-using cfcookie?



 Thanks for your help!



    Clarke














 -


 To unsubscribe from this list, manage your profile @


 http://www.acfug.org?fa=login.edituserform



 For more info, see http://www.acfug.org/mailinglists


 Archive @ http://www.mail-archive.com/discussion%40acfug.org/


 List hosted by FusionLink http://www.fusionlink.com


 -




-- 
--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Intro CF Training

2009-06-12 Thread Howard Fore
I've heard a rumor that one of the major CF training providers was close to
starting online classes as well. Not sure about the mechanics of that or the
cost but it would be a welcome addition to the CF community.

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


Re: [ACFUG Discuss] Intro CF Training

2009-06-12 Thread Howard Fore
Details?

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Fri, Jun 12, 2009 at 9:01 AM, Steve Drucker sdruc...@figleaf.com wrote:

 It's not a rumor.

 Sent from my iPhone

 On Jun 12, 2009, at 8:30 AM, Howard Fore howard.f...@hofo.com wrote:

 I've heard a rumor that one of the major CF training providers was close to
 starting online classes as well. Not sure about the mechanics of that or the
 cost but it would be a welcome addition to the CF community.

 --
 Howard Fore, howard.f...@hofo.comhoward.f...@hofo.com
 The universe tends toward maximum irony. Don't push it. - Jeff Atwood




Re: [ACFUG Discuss] Encrypting URL Parameters

2009-05-07 Thread Howard Fore
What's the goal here? If you want to make sure that spambots can't harvest
that email address, you don't want to do Base64 on it as that's not
encryption and since it doesn't require a key to decode, you really haven't
protected anything.

Can you tackle it a different way than exposing the email address? Is there
a different unique identifier you can use? You wouldn't need to jump through
the hoops with encryption/decryption to keep the address safe.

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Thu, May 7, 2009 at 10:42 AM, Clarke Bishop cbis...@resultantsys.comwrote:

  I am building an eMail unsubscribe function, and I thought it would be a
 good idea to encrypt the eMail address. In the email, I set the unsubscribe
 link to:



 unsubscribe.cfm?id= l5N6axdBQlGDpyAklnmkjP+mfaauBKvfS9G9RzUQRJI=



 But, this string isn’t URLEncoded, so I encoded it like this:



 unsubscribe.cfm?id=l5N6axdBQlGDpyAklnmkjP%2BmfaauBKvfS9G9RzUQRJI%3D



 But, I’ve still got a problem because when I URLDecode the parameter, it
 alters the string.



 Instead of: l5N6axdBQlGDpyAklnmkjP+mfaauBKvfS9G9RzUQRJI=



 I get: l5N6axdBQlGDpyAklnmkjP mfaauBKvfS9G9RzUQRJI=



 It’s changing the “+” to a space. As a result, my decrypt fails.



 My question is: *What’s the best way to generally handle this requirement?
 * I know I could just replace the space with a “+”, but I’m expecting
 there may be other characters that don’t get handled correctly. And, I don’t
 want to get a bunch of unexpected errors.



 I’m using ColdFusion 8 and doing the encrypt like this: 
 encrypt(ARGUMENTS.data,
 variables.theKey, DESEDE, Base64)



 Is there a better encryption or encoding to use? Or, is there a better way
 to use URLEncode and URLDecode?



 Thanks for any ideas!



 Clarke

 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -


Re: [ACFUG Discuss] OpenCMS Installation

2009-05-04 Thread Howard Fore
Which version of CF 8 do you have (Pro/Std) and which version of the install
did you do (standalone, multi-server, EAR)?


--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Sun, May 3, 2009 at 11:39 PM, Forrest C. Gilmore fcg0...@wctel.netwrote:

 Do any of you have experience with OpenCMS?

 I need to install this application to work on a project that requires it.
 It requires a Servlet 2.4 / JSP 2.0 standards compliant container, and
 Tomcat is its standard.
 I have installed Tomcat, but it is in standalone mode, which means it's
 running another server that I may not need.

 My questions are these:

 Since I already have ColdFusion 8 and its Java web server running, do I
 really need Tomcat to run
 OpenCMS? If so, is there a way for Tomcat to use the CF web server?
 If not, how do I install OpenCMS to use the CF Java application server?

 Forrest C. Gilmore



 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






Re: [ACFUG Discuss] OpenCMS Installation

2009-05-04 Thread Howard Fore
Ok, but in the installer there are a couple of choices that determine how CF
is packaged. The standalone installer makes CF basically look like a
all-in-one application, minimizing the look that CF is installed in JRun
(usually in a directory called ColdFusion8). The multiple instance version
looks more like a installation of JRun that has an instance of CF installed
(usually in a directory called JRun). The EAR version gives you a EAR file
that you can deploy in your own J2EE (or in today's parlance Java EE)
server.

I think you'll be able to utilize the multiple instance version easier that
the standalone version. If OpenCMS will run on Tomcat it will probably run
on JRun, but you should expect some bit-twiddling in various configuration
files. I'd tell you which but I don't know anything about OpenCMS.

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Mon, May 4, 2009 at 11:47 AM, Forrest C. Gilmore fcg0...@wctel.netwrote:

 I am running CF8 on my PC. I downloaded CF8 and installed it as the
 Developer edition. The Administrator says it is equivalent to
 the Enterprise edition with limited access. This is the PC where I want to
 install OpenCMS for development and training  purposes.



Re: [ACFUG Discuss] Looking for a CF Host

2009-03-27 Thread Howard Fore
No, you're right. Google Apps provides versions of some of Google's software
to run via your domain name instead of the google.com domain. But you can't
upload your own software to run there.

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Thu, Mar 26, 2009 at 10:54 PM, Charlie Arehart char...@carehart.orgwrote:

  Just to be clear (someone correct me if I’m wrong), now that I think of
 it, I don’t think you can install software on a google apps site, so if you
 were wanting to run CF (per the subject), I don’t know that GA would be a
 solution. Anyone know different?



 /charlie



 *From:* ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *PEYTONTODD
 *Sent:* Thursday, March 26, 2009 9:01 PM
 *To:* discussion@acfug.org
 *Subject:* Re: [ACFUG Discuss] Looking for a CF Host



 Just wanted to thank everyone for your site recommendations. For now, I've
 gone with GoDaddy.com since they're the cheapest - although Google is even
 cheaper if they're free! For the moment, I'm paid up for three months with
 GoDaddy, so I'll try Google after that, since it will be months before I get
 around to finishing the site. (It's for a restaurant my daughter is opening
 in a year or so.) And if Google doesn't work for whatever reason, the local
 (to Atlanta) sites you've mentioned are next on my list.

 Thanks,

 Peyton


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -


Re: [ACFUG Discuss] Looking for a CF Host

2009-03-09 Thread Howard Fore
By email if you mean that you're looking to host the domain's email at the
same place, I'd suggest instead that you use Google Apps for the email. Free
for under 25 accounts per domain, easy, and if your webhost happens to go
down for technical reasons, you still have your email.

http://google.com/a/

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


On Mon, Mar 9, 2009 at 3:11 PM, PEYTONTODD07 peytont...@comcast.net wrote:

 Hi all,

 I will be looking soon for a host for a small CF site I'll be writing. The
 main consideration at this point is cost, since the site is likely to
 involve nothing more complicated than data (e.g. SQL Server), passwords, and
 e-mail. Any suggestions?

 Thanks,
 Peyton

 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -


[ACFUG Discuss] Fwd: [ACFUG Announce] Today - ACFUG Meeting - March 4, 2009

2009-03-04 Thread Howard Fore
Didn't see this cross-posted...

--
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


-- Forwarded message --
From: ma...@fusionlink.com
Date: Wed, Mar 4, 2009 at 4:11 AM
Subject: [ACFUG Announce] Today - ACFUG Meeting - March 4, 2009
To: announceme...@acfug.org


March 2009 ACFUG Meeting  Date *Wednesday, March 4, 2009*  Dinner 
Schmoozing   *6:00 PM*  Meeting Time   *6:30 PM to 9:00 PM*  Location   *
EchoEleven* 
[Directionshttp://www.acfug.org/index.cfm?fa=home.meetinglocationeventid=298
]  Dress   *Anywhere from casual to business formal*  Price   *FREE!*
*RSVP for this 
meeting!*http://www.acfug.org/index.cfm?fa=rsvp.rsvpactionEventID=298
*Add to Outlook
calendar.*http://www.acfug.org/index.cfm?fa=meetings.vcalEventID=298
Topics

*jQuery - a new kind of JavaScript Library*

jQuery has become one of the fastest growing JavaScript libraries. It was
introduced in January 2006 at BarCamp NYC by John Resig and is under MIT /
GNU General Public License. Recently, Microsoft and Nokia have announced
plans to bundle jQuery on their platforms. It would only make sense that
Adobe will do the same in the near future. It is a free and open source
library which helps separate the ActionScript based behavior logic from
the HTML structure. This makes your code clean and flexible. Plus, jQuery is
a very responsive and cross-browser compatible. There's simply no reason not
to learn how jQuery can make your life easier and fun. We will introduce
what jQuery is and how it can add some life to your html based forms and
pages. How it can work with ColdFusion and why you should start using it.

*Thor - a new kind of CFC validator*

Form and user data validation can be a real pain. Thor is a upcoming
ColdFusion Component (CFC) based validator which has a number of unique
features which makes data validation easier to manage. Thor is framework
agnostic and can be incorporated into your existing code. There are several
other open source based CFC validators, but Thor has features which include:


   - global validation
   - explicit / implicit validation
   - specific and general error text
   - field name translation
   - validator importing
   - validator mapping
   - logging

We will also be having ACFUG Board Elections for the 2009 year. Email
presid...@acfug.org if you would like to run or have any questions about
helping us run ACFUG into its 11th year.
-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/announcements%40acfug.org/
List hosted by http://www.fusionlink.com
-


[ACFUG Discuss] Discount for Flex Camp Miami

2009-02-20 Thread Howard Fore
I know this isn't strictly CF related but for those of us that also do some
Flex, if you are interested in going to Flex Camp Miami (
http://www.flexcampmiami.com/ for more info), we've got a discount code for
$10 off the already low, low registration price of $30. Just use
AtlantaCFUG (no quotes) as the promo code on the event registration page.

-- 
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood


Re: [ACFUG Discuss] RE: Parsing XML

2009-02-13 Thread Howard Fore
:attribute_id113/r25:attribute_id

r25:attribute_nameAudience: Athletics/r25:attribute_name

r25:attribute_typeB/r25:attribute_type

r25:attribute_type_nameBoolean/r25:attribute_type_name

r25:attribute_valueYes/r25:attribute_value

/r25:custom_attribute

r25:custom_attribute id=CBJDMjc1NTc4BSJDMTE0 crc=0021 status=new

r25:attribute_id114/r25:attribute_id

r25:attribute_nameAudience: Current Students/r25:attribute_name

r25:attribute_typeB/r25:attribute_type

r25:attribute_type_nameBoolean/r25:attribute_type_name

r25:attribute_valueYes/r25:attribute_value

/r25:custom_attribute




Please direct ALL IT questions to the AskIT form found at:
http://oxford.emory.edu/audiences/faculty_and_staff/

Seth Tepfer 770-784-8487 seth.tep...@emory.edumailto:seth.tep...@emory.edu

Director of Administrative Computing, Oxford College




This e-mail message (including any attachments) is for the sole use of

the intended recipient(s) and may contain confidential and privileged

information. If the reader of this message is not the intended

recipient, you are hereby notified that any dissemination, distribution

or copying of this message (including any attachments) is strictly

prohibited.


If you have received this message in error, please contact

the sender by reply e-mail message and destroy all copies of the

original message (including attachments).



On Fri, Feb 13, 2009 at 5:20 PM, Darin Kohles urdtr...@gmail.com wrote:

Blank on this end as well

 On Fri, Feb 13, 2009 at 4:58 PM, Tepfer, Seth la...@emory.edu wrote:




 --
 Darin Kohles
 RIA Developer




-- 

Howard Fore, howard.f...@hofo.com

The universe tends toward maximum irony. Don't push it. - Jeff Atwood


Re: [ACFUG Discuss] cf datasources

2009-01-16 Thread Howard Fore
From one Troy (my first name) to another, I think you're looking for a
neo-query.xml file :-)

On Fri, Jan 16, 2009 at 3:59 PM, Troy Jones t...@dynapp.com wrote:

  Therein lies my problem, CF is totally unusable in its current state. I
 can't even open the administrator L.



 Troy Jones

 *Dynapp Support Team*

 678-528-2952





 *From:* ad...@acfug.org [mailto:ad...@acfug.org] *On Behalf Of *Teddy R.
 Payne
 *Sent:* Friday, January 16, 2009 3:57 PM
 *To:* discussion@acfug.org
 *Subject:* Re: [ACFUG Discuss] cf datasources



 In your ColdFusion administrator, there is a settings summary that will
 capture all of your DSN connection information with the exception of the
 username and password for the said connections.


 Teddy R. Payne, ACCFD
 Google Talk - teddyrpa...@gmail.com


   On Fri, Jan 16, 2009 at 3:51 PM, Troy Jones t...@dynapp.com wrote:

 We had an event on one of our servers that has rendered CF unusable and
 needing a uninstall/reinstall. However, this means that we will lose our
 configured data sources. Does anyone know of a way to get this information
 before we uninstall the program or are we just pretty much SOL?



 Troy Jones

 *Dynapp Support Team*

 678-528-2952






 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserformhttp://www.acfug.org/?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com/
 -



 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, howard.f...@hofo.com
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] car make model info

2008-12-08 Thread Howard Fore
 http://www.chrome.com

or screen scrape:
http://tektastic.com/2008/03/car-or-auto-make-model-year-database.html

On Mon, Dec 8, 2008 at 1:02 PM, Troy Jones [EMAIL PROTECTED] wrote:

  Hey all,



 I am currently working on a project for a car dealership and am finding
 myself needing either a database with current make/model info dating back at
 least 10-15 years or an API that could handle calls for this type of things.
 Any suggestions on where I might find this?



 Troy Jones

 *Dynapp Support Team*

 678-528-2952





 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Another CFMAIL Problem

2008-11-10 Thread Howard Fore
On Mon, Nov 10, 2008 at 9:29 PM, Peyton Todd [EMAIL PROTECTED]wrote:

 Howard, if I were to sent the office manager a link to the PDF instead of
 attaching the PDF to his email, how would I do that? Now that I am writing
 the PDFs to a directory outside the web root, how could a link reach that
 directory? And if I continue to place the PDFs in a subdirectory of the web
 root, how could I secure it?


What I would do is not generate the PDF until requested. That is, email the
user a link to a CFM page that compiles the PDF from db and returns it to
the user. Alternately if there is a business requirement that the PDF
actually exist on disk, put it a place outside the webroot and use the
cfcontent tag to serve it up via the link in the email.


-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Another CFMAIL Problem

2008-11-08 Thread Howard Fore
Why not go ahead and use the job number, but when you're about to write the
PDF to disk first check to see if there's already one with that name
(initials and job number). If you find one then delete it, then create the
new one. Is there some audit reason to keep the earlier version?

On Fri, Nov 7, 2008 at 3:48 PM, Peyton Todd [EMAIL PROTECTED]wrote:

 One solution I thought of is simply to use the job number as the name of
 the PDF. This would guarantee that each next one built is different. But
 then it occurred to me that if the user reports a job, then realizes he made
 a mistake, corrects it, and sends the report again for the same job, there's
 a danger that the earlier mistaken version would get sent instead.


-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Another CFMAIL Problem

2008-11-08 Thread Howard Fore
I think what he means is that if a recorder creates a file and sends it,
then corrects it and sends again, the recipient could open the first one and
think it is the most current version when it isn't. It wasn't identified as
an issue by Peyton but I could see how it could cause someone an issue. My
response to that would be to not mail the PDF as an attachment but rather
email a link to the user. The link would either lead to a real PDF, stored
on disk, or to a CFM file that generates the PDF when it is requested. That
would get rid of any caching issue as the file requested is always the
latest version.
On Sat, Nov 8, 2008 at 6:19 PM, Dean H. Saxe [EMAIL PROTECTED]wrote:

 What things get asynchronous?  If what you say is true, email would
 regularly go out without complete attachments. I think you're way off on
 this one.

-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF Clustering options

2008-10-21 Thread Howard Fore
What's your server platform, Windows or Linux? I had a really bad experience
(ok, maybe not bad but extremely trying) with clustering CF on JRun on
Redhat Linux. Granted, this was CFMX 6 (and whatever JVM version) five years
ago so things should have improved by now, but we had to throw an
inordinately large amount of RAM at the whole thing to make it stay up for
more than two days. We had two honking servers (don't remember the exact
specs now) and were running two instances of CF on each (supposedly it was
faster with two instances) and had all four instances clustered, sticky
sessions, memory object failover, and all. Eventually the Java heap would
just fill up and the entire box would lock up. We would have to power-cycle
the hardware to get it to work again for another two days. Eventually we
shoved enough RAM in that it was stable but it wasn't pretty for a while.

On Tue, Oct 21, 2008 at 9:55 AM, Cameron Childress [EMAIL PROTECTED]wrote:

 The J2EE clustering in the CF Admin is just a tool to manage the underlying
 J2EE server, which by default is JRun.  Unless you have a business reason to
 run CF on something else, I usually would just stick to JRun.  An argument
 could be made that you get speed improvements from other J2EE platforms, but
 there is more overhead and knowledge required in managing those.  JRun
 installs by default and just works.  Both sticky session and session
 replication work with JRun.



-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] where to buy CF licenses?

2008-09-30 Thread Howard Fore
CDW carries it. If they've got education credentials, they could try
academicsuperstore.com. Google Shopping lists several (!) vendors.

On Tue, Sep 30, 2008 at 1:18 PM, Charlie Arehart [EMAIL PROTECTED]wrote:

  Where might one turn to buy a legit license for CF? I'm not trying to
 take money out of Adobe's pocket. Rather, I know that in many resale
 businesses, the vendor still makes a decent profit off of sales by 
 3rdparties. For someone wanting to get multiple licenses (in this case, 3 of 
 CF
 7 Enterprise), besides asking Adobe sales (which I will recommend to him),
 are there other legit sources that people may have experience with?




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Fwd: UG News--Adobe AIR Cookbook Contest

2008-08-19 Thread Howard Fore
FYI

-- Forwarded message --
From: Marsee Henon [EMAIL PROTECTED]
Date: Tue, Aug 19, 2008 at 2:37 PM
Subject: UG News--Adobe AIR Cookbook Contest
To: [EMAIL PROTECTED]


Hi

Can you share this with your members who are interested? Thanks!

Marsee

Announcing the Adobe AIR Cookbook Cook-off  (US Only)

Think you can solve common Adobe AIR related coding problems? Then you
qualify for the Adobe AIR Cookbook Cook-off contest sponsored by
O'Reilly Media to celebrate the upcoming publication of the Adobe AIR
Cookbook http://oreilly.com/catalog/9780596522506/.

During this contest, we invite you to submit your best solutions to
common AIR coding challenges for a chance to win some great prizes.


Who: RIA developers who are legal residents only of the United States

What: Solution to a common Adobe AIR related coding problem

Where: Adobe AIR cookbook website at
http://www.adobe.com/go/air_cookbook

When: Entries accepted between August 11 and September 26, 2008

Why: To have a chance at winning one of four great prizes—as well as
helping others in the community build better AIR apps

Four winners will be chosen during the contest period. They will be
awarded one of the following prizes:

Grand prize--One pass to the Adobe MAX 2008 conference in San Francisco,
California (November 16–19)--valued at US$1,695--and also US$500 in
O'Reilly Media books

Second prize--Every English-language Adobe Developer Library (ADL) book
published by O'Reilly Media prior to September 1, 2008


Third prize--Five O'Reilly Media books of the winner's choice

Community choice award: US$350 in O'Reilly Media books to the winner of
the top-rated recipe during the contest period. For details on how to
enter the contest, go to:
http://www.adobe.com/devnet/logged_in/mkoch_aircookoff.html

Entries will be judged by a committee of experts from the RIA developer
community and Adobe based on user experience, implementation,
creativity, relevance, and (for lack of a better word) AIR-ness.
Winners will be notified by e-mail or letter by October 15, 2008.

For more details on the terms and conditions of the contest, please
visit the AIR Cookbook Cook-off Rules and Regulations page on InsideRIA:
http://www.insideria.com/air-cookbook-rules.html



O'Reilly
1005 Gravenstein Highway North
Sebastopol, CA   95472
http://ug.oreilly.com/
Follow us on Twitter at http://twitter.com/OReillyMedia

You are receiving this email because you are a User Group
contact with O'Reilly Media. If you would like to stop
receiving these newsletters or announcements from O'Reilly,
send an email to [EMAIL PROTECTED]




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




Re: [ACFUG Discuss] CF8 PDFs

2008-08-06 Thread Howard Fore
Additionally, (like Word is) PDF has been a binary format for some time now
so pulling that data out isn't going to be as simple as using a regex.

On Wed, Aug 6, 2008 at 2:35 PM, Josh Adams [EMAIL PROTECTED] wrote:

  Here's a question for you:  if the data came back in a Word document, how
 would you get the data out?  You would have to pull out all the text and
 parse it, right?  A PDF document is no different.




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF8 PDFs

2008-08-06 Thread Howard Fore
I think (Josh please correct me) that the availability of the data in the
final PDF file has more to do with how the PDF was created. If you just use
a PDF printer to create the file your data isn't available, but my
understanding was that if you used a PDF form on in the input side then
the data is still in those form fields in the binary file and thus
extractable. Otherwise I don't see what the excitement would be about with
PDF workflows in Livecycle.

On Wed, Aug 6, 2008 at 3:14 PM, Jeff Howard [EMAIL PROTECTED] wrote:

 Ok, I took your advice from your first post and converted it to text and
 dumped it just to see what I would be dealing with.  I understand what you
 are saying about pulling structured data from an unstructured source.  I
 guess my thought was if the the document was created from a form, that there
 may be a way to pull the form fields out once the document had been
 created and the answer is no.




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Theoretical Question About Efficiency

2008-08-04 Thread Howard Fore
Three things:

1) As a coworker pointed out, 42!

2) This is probably best discussed on the ACFUG community list as it has
little concrete relevance to ColdFusion or ACFUG.

3) I thought the rule was that non-specific pronouns referred to the last
specific noun. In the indexed nomenclature of your example, that would be
John asked Bill-j to call his-j wife.

4) I'd guess (emphasis on guess) that they are equivalent. The value of B
exists in a memory location that will have to be accessed whether that
access is in the process of setting the value of C or evaluating
pointer-to(b) in the in the a + c equation.

5) What about pass-by-value against pass-by-reference in a + c?

On Mon, Aug 4, 2008 at 10:17 AM, Peyton Todd [EMAIL PROTECTED]wrote:

 It seems important to begin by pointing out that this question is not aimed
 at solving a practical problem. It has nothing to do with a need on my part
 to make an actual program run faster or use fewer resources. Instead it has
 to do with a linguistics paper I'm writing, part of which will evaluate a
 claim recently made by Noam Chomsky, the world's most famous linguist (who
 most of you have probably heard of due to his politics, which is not the
 issue here).

 The traditional view as to the structure underlying a sentence like (1)
 below, championed by Chomsky for years, has been the the participants are
 indexed (using subscripts like 'i' and 'j' as in (2) below), thus enabling
 the grammatical module which assigns meaning to resolve the ambiguity of the
 surface sentence (whether it is John's wife or Bill's who is to be called).
 Recently, supposedly in order to arrive at a more 'economical' system,
 Chomsky has proposed something like (3) below, where John is repeated in the
 underlying structure, but where the second occurrence is not sent to the
 pronunciation system (or is turned into 'his', but let that pass - in other
 sentences although not this one, the copy leads to nothing at all being
 pronounced).

 (1) John asked Bill to call his wife.
 (2) John-i asked Bill-j to call his-i wife.
 (3) John asked Bill to call John's wife.

 My question is which of these two approaches would be more economical from
 a programming point of view.  Abstractly, the question seems to involve
 pointers vs. copying. Another point I should clarify: I know next to nothing
 about programming in 'C', including how to symbolize a pointer. But it seems
 to me the question boils down to which of the two methods below is more
 efficient. Right?

 Copy Method  Pointer Method
 ---  --
 a = 2;   a = 2;
 b = 3;   b = 3;
 c = b;   c = pointer-to(b);
 print a + c; print a + c;

 My guess is that (although the pointer method may use less memory), the
 speed of the two approaches may depend on whether it is more efficient to
 make a copy vs. establishing and then making use of a pointer. Secondly, my
 supposition is that the choice could depend on the complexity of the object
 in b. In the example above, it's just an integer. But suppose it were a
 complex object of some kind, instantiated in b, but then either copied to c
 or pointed to by c (with '+' having some different, object-appropriate
 definition by polymorphism). It that right? Or is the Pointer Method always
 more efficient? If it's a trade-off, how complex an object would tip the
 balance?

 Your collective wisdom would be greatly appreciated!

 Thanks,
 Peyton




 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Securing CFCs

2008-07-21 Thread Howard Fore
Wouldn't AJAX requests be coming from the user's web browser IP?

On Mon, Jul 21, 2008 at 10:52 AM, Mischa Uppelschoten ext 10 
[EMAIL PROTECTED] wrote:

 That is a really good question and I'm curious about the input from the
 group. Maybe use permissions on a webserver/file level? All legit requests
 would be coming from 
 localhost/127.0.0.1/server'shttp://127.0.0.1/server%27sIP address, right?
 /m


  But, what's the best way to give access to my valid
 : CFM pages with Ajax and prevent access by bad guys?

 : Thanks for any ideas!

 : Clarke





 : -
 : To unsubscribe from this list, manage your profile @
 : http://www.acfug.org?fa=login.edituserform

 : For more info, see http://www.acfug.org/mailinglists
 : Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 : List hosted by http://www.fusionlink.com
 : -









 Mischa Uppelschoten
 The Banker's Exchange, LLC.
 4200 Highlands Parkway SE
 Suite A
 Smyrna, GA 30082-5198

 Phone:(404) 605-0100 ext. 10
 Fax:(404) 355-7930
 Web:www.BankersX.com
 Follow this link for Instant Web Chat:
 http://www.bankersx.com/Contact/chat.cfm?Queue=MUPPELSCHOTEN
 -- Original Message --

 FROM:  Clarke Bishop [EMAIL PROTECTED]
 TO:discussion@acfug.org
 DATE:  Mon, 21 Jul 2008 10:46:09 -0400

 SUBJECT:   [ACFUG Discuss] Securing CFCs

 I have one remaining problem to solve in my adventure with CF/Ajax. The
 CFCs
 have to have access=remote.

 But, this means anyone can access the methods. What I built is a
 master/detail, CRUD thing for administering users. So, I obviously don't
 want some unauthorized person deleting my users or adding new ones.

 Normally, I've used access=public before which wouldn't let an outside
 user get to the methods. But, what's the best way to give access to my
 valid
 CFM pages with Ajax and prevent access by bad guys?

 Thanks for any ideas!

   Clarke





 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -



 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?falogin.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Problem on Only One PC

2008-06-23 Thread Howard Fore
Peyton, here's a few questions to think about.
- Have you tried hitting the URL for the generated PDF in the web browser to
see if you get an error or something?
- Does this happen in just one browser or all (Firefox, IE, etc.)?
- If you can see this happen in Firefox, try turning on the error console
(Tools  Error Console) to see if something shows up there.
- Does he have a popup blocker installed that the other computers don't?

On Mon, Jun 23, 2008 at 10:18 PM, Peyton Todd [EMAIL PROTECTED]
wrote:

 Dear Colleagues,

 This could be a tough one to solve. But maybe not. My website has three
 reports, all three accomplished by loading a PDF into a child browser
 window. The report process works fine on every computer it has been tested
 on except one (wouldn't you know it): the boss's computer. On his computer,
 the child window opens, but then, instead of the report displaying in it,
 the child window suddenly closes, and the user is taken back to the login
 screen.

 (In one of the three reports, the PDF will already exist, while in the
 other two it gets built dynamically; however this seems not to matter since
 the same error happens for all three reports.)

 The javascript for one of the latter two reports is:

 function Print(jn){
   url = 'printJob.cfm?jn=' + jn;
   win=window.open(url,'Print','width=800,height=500,resizable=yes');
   win.focus();
   win.moveTo(80,80);
   }


 And printJob.cfm looks like this:

 cfset filename = UCase(Session.username)  .PDF
 cfdocument format=PDF filename=#filename# overwrite=yes

 -- a lot of ColdFusion tags and HTML goes here --

 /cfdocument

 cflocation url=#filename#


 Here's a clue: The behavior is probably somehow related to application.cfm.
 I have recently noticed a strange behavior which wasn't happening in earlier
 versions: when the child browser window opens, and while printJob.cfm is
 still building the #filename#, the login window opens inside the child
 browser window, but then as soon as #filename# gets built, it appears in the
 child browser window just as it should, supplanting the login window which
 had appeared there.

 application.cfm looks like this:

 cfapplication name=Reporters sessionmanagement=Yes
   setclientcookies=Yes sessiontimeout=#CreateTimeSpan(0,0,45,15)#
applicationtimeout=#CreateTimeSpan(0,0,1,0)#

 cflock scope='Session' type='Exclusive' timeout='30'
  cfparam name='Session.LoggedIn' Default='False'
 /cflock

 !-- If the user isn't logged in and they aren't currently on the login
 page, send them to the login page --
 cflock scope='Session' type='Readonly' timeout=30
 cfif not Session.LoggedIn
  cfif cgi.script_name is not '/Reporters/ReporterLogin.cfm'
  cflocation url='/Reporters/ReporterLogin.cfm'
/cfif
 /cfif
 /cflock

 However, there is no way users can get to the button(s) which run reports
 unless they are logged in. And the process of building the reports never
 takes as long as 30 seconds. Even if it did, that all happens on the server,
 and should have nothing to do which which client computer the report is run
 from.

 What could be wrong here?

 Thanks for your help.

 Peyton











 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Purchasing CF8 upgrade

2008-06-16 Thread Howard Fore
Have you tried contacting the local Adobe rep?

Does ARMC have a non-profit component that could buy the software? See
http://www.adobe.com/nonprofit/

On Mon, Jun 16, 2008 at 10:04 AM, Fennell, Mark P. [EMAIL PROTECTED] wrote:

  Does anyone have any leads on purchasing a CF8 EE upgrade from CF7 EE for
 Linux for less than the msrp of $3750?




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CFLayout with Tabs and Forms

2008-05-29 Thread Howard Fore
I haven't played with CFLayout but what you want to do is to call the submit
method on the form in Javascript. So if the HTML has two forms, foo and bar,
and you wanted to submit the foo form, you'd call document.foo.submit(). If
the forms aren't named, you'll have to call them in the forms array like
document.forms[1].submit().

Howard

On Thu, May 29, 2008 at 9:51 PM, Clarke Bishop [EMAIL PROTECTED]
wrote:

  So, now that I've figured out how to secure the page, I'm working on a
 multi-part form.

 I came across the new CFLayout tag in CF8 and it lets you setup a number
 of Tabs that can each contain different content. I already had my multi-part
 form broken into separate include files, so I just specified the include for
 each tab and it looks great!

 The only thing is I want to submit the included form whenever the tab
 changes. I found a way to add a listener and capture the TabChange event,
 but it seems to be adding multiple form objects to the DOM, and I haven't
 been able to find a way to submit the correct form yet.

 When I started playing with CFLayout, I wasn't planning to get sucked
 into Ajax/Spry. But, the tabs just look so cool!

 So, has anyone done anything like this? Also, any pointers on how to
 troubleshoot this kind of problem. I've started trying to use FireBug, but I
 still need to learn to use it better.

 Thanks for any ideas!

  Clarke

 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: re[4]: [ACFUG Discuss] showing image from network share..how to?

2008-05-14 Thread Howard Fore
Huh. If you've got the IIS virtual directory implemented, why use cfcontent?
The virtual directory should make all the images accessible from the client
web browser.

Additionally, the code as you've shown is going to hit the CF server twice,
one to get img.cfm and then a second time to get img2.cfm. If you give the
URL that goes to the image instead of the page that fetches the image

Additionally, using the web accessible URL in the img src attribute will
reduce your request-response pairs by 1/3. As implemented here, you've got 3
request-response sequences:
request 1 - get img.cfm from IIS/CF
response 1 - return HTML for img.cfm to browser
request 2 - get img2.cfm from IIS/CF
request 3 - get testimage.jpg from \\servername\nameofshare
response 3 - return image to CF server
response 2 - return image to browser

If you use the web-accessible URL you get
request 1 - get img.cfm from IIS/CF
response 1 - return HTML for img.cfm to browser
request 2 - get testimage.jpg from IIS virtual directory for
\\servername\nameofshare
response 2 - return image to browser

Just a thought...

On Tue, May 13, 2008 at 11:28 PM, Ajas Mohammed [EMAIL PROTECTED] wrote:

 img2.cfm has this code below, thats all...

 cfcontent type=image/GIF file=
 \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg


 On Tue, May 13, 2008 at 9:44 PM, Howard Fore [EMAIL PROTECTED] wrote:

 On Tue, May 13, 2008 at 4:15 PM, Ajas Mohammed [EMAIL PROTECTED]
 wrote:

 1. instead of cfincluding the img.cfm, do a
 cfif fileExists(theFile)
 img src=...*img2.cfm*
 /cfif


 What does img2.cfm do? Does it return/output the  web  accessible path to
 the image file?




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: re[4]: [ACFUG Discuss] showing image from network share..how to?

2008-05-13 Thread Howard Fore
On Tue, May 13, 2008 at 4:15 PM, Ajas Mohammed [EMAIL PROTECTED] wrote:

 1. instead of cfincluding the img.cfm, do a
 cfif fileExists(theFile)
 img src=...*img2.cfm*
 /cfif


What does img2.cfm do? Does it return/output the  web  accessible path to
the image file?

4. Use CFContent  cfcontent type=image/GIF file=
 \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg


In your production code are you matching the type attribute to the actual
file type? In your example here you are telling the browser that the file it
is about to receive is a GIF but then you actually give it a JPEG. As the
configuration of what this affects is in the browser you can't actually know
if it will matter or not but I think it would be better to err on the side
of caution.


-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] showing image from network share..how to?

2008-05-12 Thread Howard Fore
You can't use the bare fileshare address like that, you have to put
file:// in front. So your example would become
file:/servername/nameofshare\clientname\CF_Chart_Share\testimage.jpg.

On Mon, May 12, 2008 at 9:42 AM, Ajas Mohammed [EMAIL PROTECTED] wrote:

 Hi,

 We have a network share where the CFChart images get stored.
 If I try to access the network share like this in CF page, the image is
 not displayed.

 img src = \\nameofshare\clientname\CF_Chart_Share\testimage.jpg

 I am missing something here? The permissions etc are fine on the network
 machine i.e. from the CF  webserver, I am able to access the network share
 using the same src addr i.e.
 \\nameofshare\clientname\CF_Chart_Share\testimage.jpg

 Any better alternatives you can suggest? I dont want to use IP address.

 --
 Ajas Mohammed /
 http://ajashadi.blogspot.com
 No matter what, find a way. Because thats what winners do.
 You can't improve what you don't measure.
 Quality is never an accident; it is always the result of high intention,
 sincere effort, intelligent direction and skillful execution; it represents
 the wise choice of many alternatives.
 Live as if you were to die tomorrow. Learn as if you were to live
 forever.

 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] showing image from network share..how to?

2008-05-12 Thread Howard Fore
Err, wrong slashdirection

file:/servername/nameofshare/clientname/CF_Chart_Share/testimage.jpg

On Mon, May 12, 2008 at 9:59 AM, Howard Fore [EMAIL PROTECTED] wrote:

 You can't use the bare fileshare address like that, you have to put
 file:// in front. So your example would become
 file:/servername/nameofshare\clientname\CF_Chart_Share\testimage.jpg.


 On Mon, May 12, 2008 at 9:42 AM, Ajas Mohammed [EMAIL PROTECTED] wrote:

  Hi,
 
  We have a network share where the CFChart images get stored.
  If I try to access the network share like this in CF page, the image is
  not displayed.
 
  img src = \\nameofshare\clientname\CF_Chart_Share\testimage.jpg
 
  I am missing something here? The permissions etc are fine on the network
  machine i.e. from the CF  webserver, I am able to access the network share
  using the same src addr i.e.
  \\nameofshare\clientname\CF_Chart_Share\testimage.jpg
 
  Any better alternatives you can suggest? I dont want to use IP address.
 
  --
  Ajas Mohammed /
  http://ajashadi.blogspot.com
  No matter what, find a way. Because thats what winners do.
  You can't improve what you don't measure.
  Quality is never an accident; it is always the result of high intention,
  sincere effort, intelligent direction and skillful execution; it represents
  the wise choice of many alternatives.
  Live as if you were to die tomorrow. Learn as if you were to live
  forever.
 
  -
  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserform
 
  For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by FusionLink http://www.fusionlink.com
  -




 --
 Howard Fore, [EMAIL PROTECTED]
 The universe tends toward maximum irony. Don't push it. - Jeff Atwood




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] showing image from network share..how to?

2008-05-12 Thread Howard Fore
Ajas,

If you're trying to display more than just the image in the browser
CFContent isn't of much use to you. Check out the livedocs for the
description of why. It will only display the referenced content on the page
and nothing else (which is why your text disappears).

The web browser doesn't understand the server/share format for the image. If
you don't want to put a webserver up to serve that image from the server,
you'll have to use the file:// protocol header on the URL. That's just the
way it works. If you drag the image from the server to a web browser window
you'll see the properly formatted URL. I don't think your earlier examples
had enough slashes.

This all assumes that the user and machine running the browser will have
network access to the server and share. If that's not the case, take the
webserver route.

On Mon, May 12, 2008 at 11:06 AM, Ajas Mohammed [EMAIL PROTECTED] wrote:

 so I tried cfcontent like this and it works but only problem is that only
 image is being shown and the text i have before the cfcontent tag doesnt
 show.

 For examle,

 cfset theFile = 
 \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg

 cfif fileExists(theFile)
 *exists*
 cfelse does not exist br
 /cfif

 cfcontent type=image/GIF file=
 \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg


 img src=\\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg
 
 This doesnt show the result *exists* from the cfif statement but simply
 displays the image in the browser window. I tried to add the code cfcontent
 type=image/GIF file=
 \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg in a
 seperate file img2.cfm and I included that in first page but still the same
 result. *Only image* gets displayed but not the text *exists*.

 Any suggestions?




 On 5/12/08, Howard Fore [EMAIL PROTECTED] wrote:

  The format of the address will change depending on it's use. If you drag
  an image from that server to your browser window you can then see in the URL
  window how it should be formatted for display in the browser. Obviously this
  is only going to display for those users with access to that same server and
  share. I don't think your example below has enough slashes up front. If you
  want people without server share access to see the image in the browser you
  need to put a web server in the mix, either an IIS virtual directory or an
  Apache directory/alias/location directive.
 
  On Mon, May 12, 2008 at 10:48 AM, Ajas Mohammed [EMAIL PROTECTED]
  wrote:
 
   Hi, any example how to do it using CFContent?
  
  
   cfset theFile = 
   \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg
  
   cfif fileExists(theFile)
   *exists*
   cfelse does not exist br
   /cfif
   img src=
   \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg
ok  I tried this code and i get message *exists*, but still image not
   being when i run the page. I also tried appending file: i.e.
  
   file:\\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg but
   it didnt for img tag and it didnt work for fileExists condition which 
   gives
   me does not exist.
  
   so we know now,
   \\servername\nameofshare\clientname\CF_Chart_Share\testimage.jpg works
   but it doesnt work in img tag.
  
   Any suggestions?
  
  
 
 
  --
  Howard Fore, [EMAIL PROTECTED]
  The universe tends toward maximum irony. Don't push it. - Jeff Atwood
  -
  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserformhttp://www.acfug.org/?fa=login.edituserform
 
  For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by FusionLink http://www.fusionlink.com/
  -
 



 --
 Ajas Mohammed /
 http://ajashadi.blogspot.com
 No matter what, find a way. Because thats what winners do.
 You can't improve what you don't measure.
 Quality is never an accident; it is always the result of high intention,
 sincere effort, intelligent direction and skillful execution; it represents
 the wise choice of many alternatives.
 Live as if you were to die tomorrow. Learn as if you were to live
 forever.
 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see

Re: [ACFUG Discuss] CF 7 - Code in application.cfm redirects.. is this code below a good practice

2008-04-25 Thread Howard Fore
Looks like there are a few plugins for IIS 6 to do this:
http://www.petefreitag.com/item/286.cfm

On Fri, Apr 25, 2008 at 10:44 AM, Ajas Mohammed [EMAIL PROTECTED] wrote:

 We are using CF 7 and IIS 6, if anyone needs to know the setup.

 Ajas.



 On 4/25/08, Howard Fore [EMAIL PROTECTED] wrote:

 I like to do this sort of thing at the webserver level with the Apache
 directives from the mod_alias and mod_rewrite modules. I think the newer IIS
 versions have something similar (someone please correct me if I'm wrong).

 hofo

 On Fri, Apr 25, 2008 at 9:53 AM, Ajas Mohammed [EMAIL PROTECTED]
 wrote:

 Hi,

 I have a client who has url say www.xyz.com. They want a new url
 www.abc.com so that when user enters www.xyz.com, the user should see
 www.abc.com in his address bar of browser. Basically an
 alias/redirection with address bar showing the new url. I could have done
 redirection by dns names/url redirection at website level but problem is I
 have a subfolder application i.e. www.xyz.com/subapp.

 Now if I do dns/url redirection, and user tries to access 
 subfolderapplication with this url,
 www.xyz.com/subapp/home.cfm, it takes the user automatically to
 www.abc.com/home.cfm i.e. the main application without the 
 subfolderapplication, and I dont want that. It should take user to
 www.abc.com/subfolder/home.cfm.




 --
 Howard Fore, [EMAIL PROTECTED]
 The universe tends toward maximum irony. Don't push it. - Jeff Atwood
 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com/

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserformhttp://www.acfug.org/?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com/
 -




 --
 Ajas Mohammed /
 http://ajashadi.blogspot.com
 No matter what, find a way. Because thats what winners do.
 You can't improve what you don't measure.
 Quality is never an accident; it is always the result of high intention,
 sincere effort, intelligent direction and skillful execution; it represents
 the wise choice of many alternatives.
 Live as if you were to die tomorrow. Learn as if you were to live
 forever.
 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] QoQ question

2008-04-18 Thread Howard Fore
Scott,

Have you thought about using the POI stuff to read the Excel sheet? There's
a lot of info on a CFC implementation at
http://www.bennadel.com/blog/474-ColdFusion-Component-Wrapper-For-POI-To-Read-And-Write-Excel-Files.htm.
True, that info then comes in as a struct but you could loop over the struct
and create query without the spaces in the column names as you need for QOQ.


Just a thought...

Howard

On Fri, Apr 18, 2008 at 2:25 PM, Scott Councill 
[EMAIL PROTECTED] wrote:

  Thanks to all for comments.  I should have been more detailed.  Yes,
 spaces in field names is very bad.  I am working with a process that uploads
 an Excel Spreadsheet that is created by a client.  Yes, I could go back to
 them and tell them no spaces, but I wanted to try to find a solution that
 wouldn't require that.  Once the SS has been uploaded, I then create a JDBC
 connection to the workbook and read the data in a specific sheet.  That
 works fine.  Now I have a query object that I am trying to join to a SQL
 database query to compare values.  Yes, I can loop over the SS query and do
 lots of separate queries but I wanted to create a single query solution with
 a JOIN statement.



 So the answer seems to be NO QoQ does not support column names with
 spaces, not even using the proper [] bracket syntax.  Is this correct?




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] QoQ question

2008-04-18 Thread Howard Fore
Hey,

When you say field name in your email, are you referring to the column? Or
is it some calculated, not really a column value in the spreadsheet?

And secondly, what are you using to create the JDBC connection. I ask not
out of concern that it is the flaw in your process, but out of morbid geek
curiousity. I've found several different options for doing that and I was
wondering which you had decided was the better choice.

Howard

On Fri, Apr 18, 2008 at 2:25 PM, Scott Councill 
[EMAIL PROTECTED] wrote:

  Thanks to all for comments.  I should have been more detailed.  Yes,
 spaces in field names is very bad.  I am working with a process that uploads
 an Excel Spreadsheet that is created by a client.  Yes, I could go back to
 them and tell them no spaces, but I wanted to try to find a solution that
 wouldn't require that.  Once the SS has been uploaded, I then create a JDBC
 connection to the workbook and read the data in a specific sheet.  That
 works fine.  Now I have a query object that I am trying to join to a SQL
 database query to compare values.  Yes, I can loop over the SS query and do
 lots of separate queries but I wanted to create a single query solution with
 a JOIN statement.


-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] cfprint or some other way?

2008-04-15 Thread Howard Fore
Then again, definitely yes. I'm not sure what I was doing that didn't work
last night (maybe I just needed some sleep) but it works today. I wrote it
up on my blog, with example code. See
http://hofo.com/post.cfm/creating-pdfs-that-automatically-print-via-cfpdf-and-ddx.
I've only tested it on OS X with the stand-alone Acrobat Reader, so if
someone could test it on Windows that'd be great!
Howard

On Mon, Apr 14, 2008 at 11:40 PM, Howard Fore [EMAIL PROTECTED] wrote:

 On Mon, Apr 14, 2008 at 9:39 PM, Peyton Todd [EMAIL PROTECTED]
 wrote:

 
  But an even better way would be simply to pop up the Acrobat Print
  dialog directly, already loaded with the PDF built by cfdocument, based
  simply on the user's pressing a button in the web page, and without the
  intermediary of opening the PDF in a child window where the user has to
  click a Print button (icon in this case) again. Do you know any way to do
  that?


 Yes and no. It is possible to embed Javascript in a PDF that will print
 the document as soon as it opens. See page 79 of the Acrobat JavaScript
 Scripting Guide at
 http://partners.adobe.com/public/developer/en/acrobat/sdk/AcroJSGuide.pdf.
 This could easily be accomplished through DDX from Livecycle. Unfortunately
 the CFPDF tag that lets you use DDX with PDF files doesn't have the
 Javascript element enabled (see the livedocs on CFPDF for the list of
 enabled elements). Too bad, it would've been a pretty sweet solution. On the
 other hand, if your client happens to have the LiveCycle Server installed
 then you could probably access it from the Java API for LiveCycle.


 --
 Howard Fore, [EMAIL PROTECTED]
 The universe tends toward maximum irony. Don't push it. - Jeff Atwood




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Doing CF development on a MAC

2008-04-11 Thread Howard Fore
Dusty,
The only thing you'll really miss is SQL Server. Everything else that you
will use will either have a Mac install or there will be a Mac program that
does the same thing. I use Windows for CF development at work and at home I
use Macs for my freelance development. I use Eclipse as my IDE so that's the
same on both sides. Database work is the only fly in the ointment. I do miss
Beyond Compare on the Mac but there are some Mac programs (DeltaWalker and
Araxis Merge) that are supposed to as good though I haven't tried an
extensive review.

Howard

On Fri, Apr 11, 2008 at 12:26 PM, Dusty Hale [EMAIL PROTECTED] wrote:

  OK this is probably a good question for Dean!

 I am now highly considering getting a mac to further develop the creative
 aspects of what I do. I understand that some developers have moved to Mac
 and use the VMWare to run windows applications. My questions are:

 If developing on a Mac would I install things like Photoshop and
 Illustrator on the Mac OS or would I be doing it through the VMWare on
 Windows. I currently have the Adobe CS2 Web Bundle suite running on my pc
 under Win XP so I am not even sure yet that the software I have will run on
 the Mac OS (I have to check on that).

 I plan to upgrade to the full Adobe Master Collection with all the great
 new CS3 tools so I wonder if I have to order it for Mac or Windows or if the
 software package will install on either. I am hoping either :-) ... I am
 researching now but would appreciate any quick answers if any one has time.

 Thanks,

 Dusty

 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Doing CF development on a MAC

2008-04-11 Thread Howard Fore
You don't have to miss it. Without external hardware you can run an external
monitor at the same time as using the onboard LCD (mirrored or not). If you
buy a Matrox DualHead2Go you can run two external monitors with the onboard.
Howard

On Fri, Apr 11, 2008 at 10:36 PM, Douglas Knudsen [EMAIL PROTECTED]
wrote:

 Thing I'd miss is dual monitor support. The dell I have has a dock
 with dual outs for actual dual monitors. Mac?   Though I suppose with
 the dropping LCD prices this maybe moot soon.



 On 4/11/08, Howard Fore [EMAIL PROTECTED] wrote:
  Dusty,
  The only thing you'll really miss is SQL Server. Everything else that
 you
  will use will either have a Mac install or there will be a Mac program
 that
  does the same thing. I use Windows for CF development at work and at
 home I
  use Macs for my freelance development. I use Eclipse as my IDE so that's
 the
  same on both sides. Database work is the only fly in the ointment. I do
 miss
  Beyond Compare on the Mac but there are some Mac programs (DeltaWalker
 and
  Araxis Merge) that are supposed to as good though I haven't tried an
  extensive review.
 
  Howard
 
  On Fri, Apr 11, 2008 at 12:26 PM, Dusty Hale [EMAIL PROTECTED] wrote:
 
OK this is probably a good question for Dean!
  
   I am now highly considering getting a mac to further develop the
 creative
   aspects of what I do. I understand that some developers have moved to
 Mac
   and use the VMWare to run windows applications. My questions are:
  
   If developing on a Mac would I install things like Photoshop and
   Illustrator on the Mac OS or would I be doing it through the VMWare on
   Windows. I currently have the Adobe CS2 Web Bundle suite running on my
 pc
   under Win XP so I am not even sure yet that the software I have will
 run
  on
   the Mac OS (I have to check on that).
  
   I plan to upgrade to the full Adobe Master Collection with all the
 great
   new CS3 tools so I wonder if I have to order it for Mac or Windows or
 if
  the
   software package will install on either. I am hoping either :-) ... I
 am
   researching now but would appreciate any quick answers if any one has
  time.
  
   Thanks,
  
   Dusty
  
   -
   Annual Sponsor - Figleaf Software http://www.figleaf.com
  
   To unsubscribe from this list, manage your profile @
   http://www.acfug.org?fa=login.edituserform
  
   For more info, see http://www.acfug.org/mailinglists
   Archive @ http://www.mail-archive.com/discussion%40acfug.org/
   List hosted by FusionLink http://www.fusionlink.com
   -
 
 
 
 
  --
  Howard Fore, [EMAIL PROTECTED]
  The universe tends toward maximum irony. Don't push it. - Jeff Atwood
 
 
 
  -
  Annual Sponsor FigLeaf Software - http://www.figleaf.com
 
  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserform
 
  For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by http://www.fusionlink.com
  -
 
 

 --
 Sent from Gmail for mobile | mobile.google.com

 Douglas Knudsen
 http://www.cubicleman.com
 this is my signature, like it?


 -
 Annual Sponsor FigLeaf Software - http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF8 Java Version

2008-03-28 Thread Howard Fore
You can check it by doing:

cfset system = CreateObject(java, java.lang.System)
cfdump var=#system.getProperties()#

Look for java.runtime.version (mine says 1.6.0_01-b06).


Howard


On Fri, Mar 28, 2008 at 11:43 AM, Thomas Nunn [EMAIL PROTECTED] wrote:

 Does anyone know what version of java that CF8 uses by default?




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CRUD generation tools?

2008-03-21 Thread Howard Fore
Model-Glue has scaffolding (CRUD generation by a different name) in it and I
think the next version of Fusebox will have some as well. Outside the
frameworks world there's a project at RIAForge that looks like what you want
(I've not used it): http://squidhead.riaforge.org/.

On Thu, Mar 20, 2008 at 7:10 PM, Tom Chambers [EMAIL PROTECTED]
wrote:

 hey folks
 been out of the mix for a while but about to get back into it.  i have
 cf8 and dwcs3.  i've read there are some easy to use crud generators out
 there but nothing specific.  so, before i do the right thing and go
 sniff around on my own i thought i'd do the easier thing and ask you
 folks :)

 t




 -
 Annual Sponsor FigLeaf Software - http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Database incremental Counter

2008-03-12 Thread Howard Fore
Barring some other requirement that dictates otherwise, you'd be better off
to keep the incrementing function on the database. Use an insert trigger on
the table to update the row or make the field autoincrementing.

Howard

On Wed, Mar 12, 2008 at 12:45 PM, Paul Morton [EMAIL PROTECTED] wrote:

  I'm just looking for ideas when creating a counter in a SQL server
 database.

 I have a need for a counter that stores an integer value and increments
 the counter each time it is used.

 My inclination is to create a table with one record with one integer field
 that is just retrieved, incremented, and updated each time I need a new
 number.

 It seems sort of kludgey, and I would love to hear any other
 implementations anyone may have used, or can dream up.  Also, if anyone can
 anticipate any issues with this method, I would love to hear them.



 I have no need for keeping any records of the numbers used.



 *Paul Morton*



 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Wierder still...

2008-03-09 Thread Howard Fore

They do? I don't remember this. Where do you see this in the error messages?

Peyton Todd wrote:
Because ColdFusion error messages tell me I'll get more explicit error 
info if I do that. In practice that proves to be true only sometimes, 
though in fact this is a case in which it does prove true.



-Original Message-
From: Regina S.
Sent: Mar 9, 2008 5:41 AM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] Wierder still...

I am not sure of this, but why do you have the word debug after
your datasource name?

On Sat, Mar 8, 2008 at 1:20 PM, Peyton Todd
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote:

I just tried the site from home, where I am now, and it got
past where it was bombing. It hit another bomb - due to a typo
I'm about to go in to work to fix - but why should it work
over the web from outside the office when it doesn't work from
the server itself (both localhost and keying in the full
acrga2.com/Reporters/ReporterLogin.cfm
http://acrga2.com/Reporters/ReporterLogin.cfm url)?





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Strange Error

2008-03-08 Thread Howard Fore

Peyton Todd wrote:

Hello all. I have just attempted to install what I'm calling the beta version 
of my new website on my client's server, and when it tries to do an SQL select 
on a FoxPro data file, CF reports that the file does not exist, when in fact it 
does exist. The full error message can be found below the double lines later in 
this e-mail, after I provide a detailed explanation of the context.
  
Can you verify the Foxpro datasource from the ColdFusion Administrator 
interface? One of the buttons out to the left of the datasource name 
verifies the datasource.


--
Howard Fore, [EMAIL PROTECTED]


-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] Newbie's Next Daunting Dilemma

2008-02-22 Thread Howard Fore
On 2/21/08, Darin Kohles [EMAIL PROTECTED] wrote:

 if you absolutely want to give the full URL, then
 use the format 'http://yourdomain.com/' - as the file(s) will have to
 be located relative to your web root.


Yep. This is the method I've followed in the past. I've found that there are
a lot of pitfalls with the cfcontent and cfheader in getting cross-browser
acceptability of various document types using MIME types, particularly when
you get into the issue of wanting the downloaded file to have a specific
file name. Your Mileage May Vary. So the process I've followed is to write
the file to disk in an internet accessible location (ie, somewhere in your
webroot), then send the browser a page that has a javascript function that
sets the location.href to that file.


-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Newbie's Next Daunting Dilemma

2008-02-22 Thread Howard Fore
Well sure, you have to balance those concerns, it depends on the sensitivity
of your output. If  you need to control access to the files, assuming you
had an authenticated user system, you could have an output directory per
user or group and authenticate the user's access to that directory in
application.cfm (off the top of my head). As for deleting the file, use a
scheduled job to clean out files with old dates.

On 2/22/08, Dean H. Saxe [EMAIL PROTECTED] wrote:

 How do you then control unauthorized access to the file?  How do you know
 when to delete the file?
 -dhs


 Dean H. Saxe, CISSP,  CEH
 [EMAIL PROTECTED]
 [T]he people can always be brought to the bidding of the leaders. This is
 easy. All you have to do is to tell them they are being attacked, and
 denounce the pacifists for lack of patriotism and exposing the country to
 danger. It works the same in every country.
 --Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials



 On Feb 22, 2008, at 8:41 AM, Howard Fore wrote:

 On 2/21/08, Darin Kohles [EMAIL PROTECTED] wrote:
 
  if you absolutely want to give the full URL, then
  use the format 'http://yourdomain.com/' - as the file(s) will have to
  be located relative to your web root.
 

 Yep. This is the method I've followed in the past. I've found that there
 are a lot of pitfalls with the cfcontent and cfheader in getting
 cross-browser acceptability of various document types using MIME types,
 particularly when you get into the issue of wanting the downloaded file to
 have a specific file name. Your Mileage May Vary. So the process I've
 followed is to write the file to disk in an internet accessible location
 (ie, somewhere in your webroot), then send the browser a page that has a
 javascript function that sets the location.href to that file.


 --
 Howard Fore, [EMAIL PROTECTED]
 The universe tends toward maximum irony. Don't push it. - Jeff Atwood
 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -





-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] will Ajax go away (was JVM version and ColdFusion)

2008-02-08 Thread Howard Fore
Forrest,

There's nothing that says that web services used in AJAX have to be consumed
only by connections initiated by Javascript. The only part of traditional
AJAX that requires Javascript is the manipulation of the browser content
(and that's only because it enables content to change on the page without
having to reload the entire page). If you are willing to have the entire
page reload (not necessarily a bad thing, depends on your situation and
requirements), then there's no reason why you can't hit those web services
APIs with CF and then display the results to the user.

On 2/8/08, Forrest C. Gilmore [EMAIL PROTECTED] wrote:

 I guess my somewhat negative attitude toward AJAX has to do with its
 Javascript underpinings.




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF on a Mac--anyone have a system they want to sell?

2008-02-06 Thread Howard Fore
They need a technical proofreader:

APPLE IMAC INTEL COMPUTER - G5 1.8GHz 256MB 17''


The G5 certainly wasn't an Intel chip :-)

On 2/6/08, Steven Ross [EMAIL PROTECTED] wrote:

 Ebay also has some killer deals, there is a store that sells less than
 perfect machines (out of atlanta - http://stores.ebay.com/PartsBuffet)...




-- 
Howard Fore, [EMAIL PROTECTED]
The universe tends toward maximum irony. Don't push it. - Jeff Atwood



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Coldfusion places 21st in the 2007 TIOBE index

2008-01-23 Thread Howard Fore
For those who follow such
things...http://www.tiobe.com/index.htm?tiobe_index?2007

-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF 8 application service does not auto start after reboot

2008-01-23 Thread Howard Fore
Oh, right, I forgot they bought Foundstone.

On 1/23/08, Dean H. Saxe [EMAIL PROTECTED] wrote:

 And I am a McAfee employee... I recognized that DAT versioning scheme.


-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Coldfusion places 21st in the 2007 TIOBE index

2008-01-23 Thread Howard Fore
On 1/23/08, Cheyenne Throckmorton [EMAIL PROTECTED] wrote:

 Looks like their ranking is based upon the numbers of lines of code.
 Sounds like the lower we get on here the more effecient we are at utilizing
 our lines of code.  I've never even heard of tiobe, I'm not too concerned.


Nah, it's based on the oh so scientific method of counting the number of
results in search engines:

The popular search engines Google, MSN, Yahoo!, and YouTube are used to
calculate the ratings. Observe that the TIOBE index is not about the
*best*programming language or the language in which
*most lines of code* have been written.

However, I did note that I could only find one CF book at Borders the other
 day. CF8 WACK Vol. 2.  I guess that either means they don't stock much CF or
 what they did stock sold out or there is only one definitive CF book or a
 littany of other reasons.  Stats are stats they can be viewed every which
 way.


The big book stores are really uneven from one store to the next in the CS
department. The Borders at Brookhaven is just awful. But the one in Buckhead
by Phipps is pretty decent, although they reduced it the last time they did
a store reorg. The Barnes and Noble at Technology Square isn't bad if you
can stomach the Georgia Tech paraphernalia (Go Dawgs, sic 'em, woof woof
woof). And although they aren't open late or anything approaching late,
the Engineer's Bookstore on Marietta is also pretty good.



-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] CF and Vista

2007-12-28 Thread Howard Fore
SQL Server won't run native in OS X but you can run it in VMware or
Parallels (or boot the machine into XP/Vista). Oracle is supported natively.
I've tried NeoOffice but as you can get Microsoft Office for OS X I'm not
sure why you would go that route.

On 12/28/07, Dan Kaufman [EMAIL PROTECTED] wrote:

  That's a good question—of course. And in the interest of full
 disclosure…I have decided to Go MAC but have not as of yet consummated
 the marriage. A stronger desire to upgrade my photography equipment to Canon
 EOS (pro digital) prevailed so I'll be putting off the iMAC purchase off
 until late January. But never-the-less, minor delay or not, I do absolutely
 intend to move to MAC.  I will keep my Windows equipment so I can
 cross-check, browser-check, etc.



 The big dilemma that I don't have a clear answer on though is similar to
 your question of SQL, is all the other software I'm going to have to
 re-purchase. I did get a great recommendation for NeoOffice (
 http://www.neooffice.org/neojava/en/features.php). This will at least
 cover the Microsoft Office Suite stuff. And CF Eclipse is also available for
 MAC.




-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-

Annual Sponsor FigLeaf Software - http://www.figleaf.com



To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




Re: [ACFUG Discuss] Negative plus positive equals less than zero?

2007-12-28 Thread Howard Fore
I may try that. My hackish solution was that if the resulting number was
less than 0 but greater than -0.01 to just return zero. I'm dealing with
money amounts here with no partial cents so I'm not really losing any
significant data. Decimalformat takes care of this but I need to have the
negative sign to the right of the number (client request) so I have to use
numberFormat instead, Thanks.

On 12/28/07, Cameron Childress [EMAIL PROTECTED] wrote:

 I ran into this a number of times on a eCom system I was working on
 recently. Gerry is right in that it's just a really small floating
 point number.  I've seen some financial systems deal with this problem
 by shifting the decimal when dealing with numbers and shifting it back
 only for display.  In that case.

 For example 62355.57 would be stored as 6235557 or even as 623555700
 in financial systems that use 4 decimal points.  You'd conduct all
 math on these whole numbers and avoid floating point problems and then
 just x/100 or x/1 to get it back to a decimal format (maybe in a
 UDF) for display.

 Another more hackish solution I've seen is to numberFormat() all
 inputs to any math operation, which will strip off all the extra float
 and give you a straighter answer.  I'm not sure I would actually
 suggest this cause it makes your code look like crap - but if you do
 it the problem goes away.  Try this out and see if your problem goes
 away...

 cfscript
 total = 0;
 numberList = 62355.57,-62355.57,-333.01,261.09 ,17.98,35.96,17.98;
 for (i = 1;i lte listLen(numberList);i = i + 1)
 {
 writeOutput(#total# + #ListGetAt(numberList,i)# = );
 total = numberFormat(total,9.99) +
 numberFormat(ListGetAt(numberList,i),9.99);
 writeOutput(#total#br);
 }
 writeOutput('numberFormat(total,999,999,999.99) = ' 
 numberFormat(total,999,999,999.99));
 /cfscript

 -Cameron

 On Dec 28, 2007 11:20 AM, Howard Fore [EMAIL PROTECTED] wrote:
  Hey,
 
  Can someone confirm this seemingly odd behavior? If I execute the
 following
  code:
 
  cfscript
 
  total = 0;
  numberList = 62355.57,-62355.57,-333.01,261.09 ,17.98,35.96,17.98;
  for (i = 1;i lte listLen(numberList);i = i + 1)
  {
  writeOutput(#total# + #ListGetAt(numberList,i)# = );
  total = total + ListGetAt(numberList,i);
  writeOutput(#total#br);
 
  }
  writeOutput('numberFormat(total,999,999,999.99) = ' 
  numberFormat(total,999,999,999.99));
  /cfscript
 
  I get the following output:
 
   0 + 62355.57 = 62355.57
  62355.57 + -62355.57 = 0
  0 + -333.01 = -333.01
  -333.01 + 261.09 = -71.92
  -71.92 + 17.98 = -53.94
  -53.94 + 35.96 = -17.98
  -17.98 + 17.98 = -1.06581410364E-014
  numberFormat(total,999,999, 999.99) = -0.00
 
  I've tried using javacasts to make sure that there wasn't some odd
 string to
  number conversion thing going on too and still got the same result. Any
  ideas?
 
  --
  Howard Fore, [EMAIL PROTECTED]
  Whether you believe you can do a thing or not, you are right. -- Henry
  Ford
  -
  Annual Sponsor - Figleaf Software
 
  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserform
 
  For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by FusionLink
  -



 --
 Cameron Childress
 Sumo Consulting Inc
 http://www.sumoc.com
 ---
 cell:  678.637.5072
 aim:   cameroncf
 email: [EMAIL PROTECTED]


 -
 Annual Sponsor FigLeaf Software - http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Challenges with CF7 cluster

2007-12-17 Thread Howard Fore
I don't have any experience with it, but isn't that the point of the
cookiedomain attribute in the cflogin tag?

From the online docs:

 Specifying the Internet domain

 Use the cookieDomain attribute to specify the domain of the cookie used to
 mark a user as logged-in. You use cookieDomain if you have a clustered
 environment (for example, www.acme.com, www2.acme.com, and so on). This
 lets the cookie work for all computers in the cluster. For example, to
 ensure that the cookie works for all servers in the acme.com domain,
 specify cookieDomain=.acme.com. To specify a domain name, start the name
 with a period.

 *Caution: *Before setting the cookie domain, consider the other
 applications or servers in the broader domain might have access to the
 cookie. For example, a clustered payroll application at payroll1.acme.com,
 payroll2.acme.com, and so on, might reveal sensitive information to the
 test computer at test.acme.com, if the cookie domain is broadly set to
 .acme.com.



On 12/17/07, Adam Churvis [EMAIL PROTECTED] wrote:

  Remember that CFLOGIN's roles don't work across a cluster with CF; they
 only work with BlueDragon, AFAIK.  So if an already-authenticated user is
 getting kicked out when he tries to go to a different server and there is a
 test on the destination page for membership in one or more roles (in other
 words, testing for authorization rather than just authentication), then that
 might be it.



 Respectfully,



 Adam Phillip Churvis

 President

 Productivity Enhancement



 *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Clontz
 Jr., Lee
 *Sent:* Monday, December 17, 2007 3:22 PM
 *To:* discussion@acfug.org
 *Subject:* [ACFUG Discuss] Challenges with CF7 cluster



 Hey, everyone –



 We're implanting a CF7 cluster in a new university Web hosting environment
 and we've hit a few snags. Unfortunately, clustering seems to be one of the
 more poorly documented aspects of CF administration, so I was wondering if
 anyone had some input.



 We currently have two Web servers behind a load balancer, each connecting
 to a two-node CF7 cluster with J2EE session variables and session
 replication turned on. We have JRun sticky sessions turned off.



 In doing this, and in migrating sites to the new architecture, we've hit
 on some strange problems:



  CFLOGIN session replication seems to work intermittently, particularly
 if the CFLOGIN block is within a method without Application.cfc/cfm.



  We have a developer who creates an XML session object which throws a
 serialization error.



  Components, in general, seem to be dodgy when hopping nodes



 My question, then, is twofold – 1, does Adobe assume you'll be using
 sticky sessions when clustering CF and 2, does anyone know of any good
 resources on understanding exactly what works and what doesn't in clustered
 environments?



 Thanks very much,

 - Lee






  --

 This e-mail message (including any attachments) is for the sole use of
 the intended recipient(s) and may contain confidential and privileged
 information. If the reader of this message is not the intended
 recipient, you are hereby notified that any dissemination, distribution
 or copying of this message (including any attachments) is strictly
 prohibited.

 If you have received this message in error, please contact
 the sender by reply e-mail message and destroy all copies of the
 original message (including attachments).


 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -

 -
 Annual Sponsor - Figleaf Software http://www.figleaf.com

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink http://www.fusionlink.com
 -




-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-

Annual Sponsor FigLeaf Software - http://www.figleaf.com



To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by http://www.fusionlink.com

-




Re: [ACFUG Discuss] Creating excel file using table data in CF.. but excel borders are missing

2007-11-01 Thread Howard Fore
Why don't you use the XML Spreadsheet format instead? Your example would
look something like this:

?xml version=1.0?
Workbook xmlns=urn:schemas-microsoft-com:office:spreadsheet
 xmlns:o=urn:schemas-microsoft-com:office:office
 xmlns:x=urn:schemas-microsoft-com:office:excel
 xmlns:ss=urn:schemas-microsoft-com:office:spreadsheet
 xmlns:html=http://www.w3.org/TR/REC-html40;
 Worksheet ss:Name=Sheet1
  Table ss:ExpandedColumnCount=3 ss:ExpandedRowCount=8
x:FullColumns=1
   x:FullRows=1
   Row ss:Height=15
CellData ss:Type=StringMonth/Data/Cell
CellData ss:Type=StringQuantity/Data/Cell
CellData ss:Type=StringSales/Data/Cell
   /Row
   Row ss:Height=15
CellData ss:Type=StringJanuary/Data/Cell
CellData ss:Type=Number80/Data/Cell
CellData ss:Type=Number245/Data/Cell
   /Row
   Row ss:Height=15
CellData ss:Type=StringFebruary/Data/Cell
CellData ss:Type=Number100/Data/Cell
CellData ss:Type=Number699/Data/Cell
   /Row
   Row ss:Height=15
CellData ss:Type=StringMarch/Data/Cell
CellData ss:Type=Number230/Data/Cell
CellData ss:Type=Number2036/Data/Cell
   /Row
   Row ss:Height=15
CellData ss:Type=StringTotal/Data/Cell
Cell ss:Formula==SUM(R[-3]C:R[-1]C)Data
ss:Type=Number410/Data/Cell
Cell ss:Formula==SUM(R[-3]C:R[-1]C)Data
ss:Type=Number2980/Data/Cell
   /Row
   Row ss:Height=15
Cell/
   /Row
   Row ss:Height=15
Cell/
   /Row
   Row ss:Height=15
CellData ss:Type=String /Data/Cell
   /Row
  /Table
 /Worksheet
/Workbook

I don't know what some of that stuff is and if you create the document
yourself in Excel and Save As XML Spreadsheet you'll see more than this. I
edited the file down to the what seemed like the bare minimum.

On 11/1/07, Ajas Mohammed [EMAIL PROTECTED] wrote:
 Hi,

 I saw an online example of creating excel file using table data.
Everything
 is working perfect, but the problem is that the borders which are usually
 shown in excel file is missing. I tried setting table border=1 but this
 results in only the result shown in borders in excel file.

 I need to show the result with excel borders i.e. borders all the way
which
 is norm for any excel file. If you copy the result set shown in excel by
 this code i.e. select all, copy and then paste the contents into a new
excel
 file, then it looks more like an excel file and thats the look the client
 needs. Makes sense? Please look at snapshot.

 Here is the code :


 Code:head
meta http-equiv=Content-Type content=text/html;
 charset=iso-8859-1 /
titleUntitled
 Document/title
/head

body

cfheader name=Content-Disposition
 value=inline; filename=acmesalesQ1.xls
cfcontent
 type=application/vnd.msexcel

table border=2
 trtdMonth/tdtdQuantity/tdtd$ Sales/td/tr
 trtdJanuary/tdtd80/tdtd $245/td/tr
 trtdFebruary/tdtd100/tdtd$699/td/tr
 trtdMarch/tdtd230/tdtd $2036/td/tr
 trtdTotal/tdtd=Sum(B2..B4)/tdtd=Sum(C2..C4)/td/tr
 /table

/body
 any suggestions how I can get that excel look with cell borders all the
way?

 --
 Ajas Mohammed /
 http://ajashadi.blogspot.com
 No matter what, find a way. Because thats what winners do.
 You can't improve what you don't measure.
 Quality is never an accident; it is always the result of high intention,
 sincere effort, intelligent direction and skillful execution; it
represents
 the wise choice of many alternatives.
 Live as if you were to die tomorrow. Learn as if you were to live
forever.
 -
 Annual Sponsor - Figleaf Software

 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @
 http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink
 -



-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] Compress file before uploading

2007-10-12 Thread Howard Fore
On 10/12/07, Mr Modz [EMAIL PROTECTED] wrote:

 Is it possible to write a web app in such a way that you could compress a
 file into a zip or a tar file for the user before uploading it? I'm looking
 to find a way to use coldfusion or flash to allow a user to select a group
 of files to be uploaded.  After they select the files, I would want to
 compress them into a single zip file and then upload them.  Then once the
 file transfer is complete, uncompress them and store them.  I wouldn't care
 if it was windows specific and I was thinking it would work if I could some
 how invoke the built in windows zip compression functions before the
 upload.  Does this sound possible with coldfusion?


Not if by with coldfusion you mean for CF to do the compression. In the
scenario you describe, ColdFusion won't play a part until the file is
actually uploaded (onto the ColdFusion server). The compression part would
have to take place in the web browser, which is a place ColdFusion can't
touch. In theory you could do this with Javascript running in the web page.
However, you're likely to run afoul of Javascript security policies. There
are several policies in place to prevent malicious scripts from grabbing
local files (your cookies, your Windows patch level, etc) and sending them
to remote locations where evildoers could do evil with them.
Firefox/Netscape/Mozilla does have a signed script path but that sounds
onerous to me and it's not guaranteed to work with IE. And then there's the
more practical matter of finding a compression engine that is written in
Javascript.
Why not simply upload the file, compress it, then discard the uncompressed
version?


-- 
Howard Fore, [EMAIL PROTECTED]
Whether you believe you can do a thing or not, you are right. -- Henry
Ford



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] IS Your Fusionlink server down?

2007-09-26 Thread Howard Fore
Must not be something facility-wide as acfug.org is up.

On 9/26/07, Michael Alexander [EMAIL PROTECTED] wrote:

 Our managed web and database servers have been offline for 45 minutes.
 Support has disappeard. Anyone have John Mason's cell number or know if
 anyone else actually works there besides him (as eg when he is at a lunch.

 Anyone else down?




-- 
 Howard Fore, [EMAIL PROTECTED]
 Yesterday's code should be as good as we could make it yesterday. The
 fact that we know more today, and are more capable today, is good news about
 today, not bad news about yesterday. - Ron Jeffries



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



[ACFUG Discuss] Scaffolding from CFCs?

2007-03-28 Thread Howard Fore

Hey,

I know scaffolding is all the rage right now. But all the examples I
see use the database as the datamodel. But I don't want to use the
database as the basis, it's old and crufty but I can't take the hit to
restructure it right now, with all the associated data migration, etc.
Is there a scaffolding solution that uses a CFC (or multiple CFCs) as
the datamodel?

--
Howard Fore, [EMAIL PROTECTED]
In any moment of decision, the best thing you can do is the right
thing, the next best thing is the wrong thing, and the worst thing you
can do is nothing. - Theodore Roosevelt


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] (new topic) You CAN use CFINCLUDE to deliver css file, fewer http requests

2007-03-17 Thread Howard Fore

Nope not ticked off. But first, how the browser saves files was your
issue, not mine:

it solves the problem of a user
saving the page locally just as well as using a full qualified path in the
head of the page would. 


The Yahoo study is a good read, though it seems a little duh to me.
(No way! You mean a page that has less HTTP requests will be
completed sooner?) Nah, I'm not wrong, we're talking about different
issues, the Yahoo study is looking at the user side of the coin, in
how long it takes the page to respond. In the page cited in the Yahoo
study, only one of the 30 HTTP requests in that page view was a CSS
file. The vast majority were images. And the second part of the Yahoo
study showed that over a 2 week period, 20-40% of users would be using
those out of a cache anyway. So I think more will be gained from
simplifying page design than using inline CSS.

The value of caching the CSS comes in when you pay the hosting service
for bandwidth. Using inline CSS means that you will always transmit
that CSS data, regardless of whether it could be used from the cache.
Look at the data from a big name, high traffic CSS site: ESPN.com.
ESPN's front page has two CSS files that are external to the HTML.
Combined they are 33K. According to Mike Davidson, EPSN's associate
art director at the time,  they were getting 40 million page views a
day. That means that by not including that 33K CSS as inline data,
they have reduced their bandwidth by more than 1258 GB a day: 33K * 40
million pageviews. (The conversion to CSS from table based layout
saved 2 terabytes a day, not that this is what we're talking about
here!). Even though only 20-40% of users will have cached the CSS,
that's still about 250-500 GB of bandwidth saved. By using inline CSS
you would throw away 250-500 GB of bandwidth. Plus by using the inline
CSS the only time you you are saving is the setup and tear-down time
for that one HTTP connection, it will take the same amount of time to
transmit the CSS data inline as in an external file.

I don't disagree that the number of HTTP connections has an impact on
the performance of a page (as does the type of connection the user
has, their workstation, the quality of service used for that request,
how much RAM the user has, the configuration of the web server,
whether a clueless backhoe operator has severed the T3 connection to
the Internet, and a variety of other things that we have no control
over). I just don't think that the number of http connections in a
page is the final measure of that page's performance.

On 3/17/07, Universal Advertising Derrick Peavy
[EMAIL PROTECTED] wrote:

H  No.  You're wrong.   Seriously, not trying to tick you off, but
you should read this:

http://yuiblog.com/blog/2006/11/28/performance-research-part-1/

I fully understand and am aware of the separation of content and style, it's
pro's and con's. How the browsers save things is not the issue, that's a
minor point. The issue is with the http requests. It is not a direct 1 to 1
trade off of bandwidth vs. requests. To say that it is, is misleading. A 9k
style sheet via an http request versus an additional 9k in your index file
is not the same comparison. And since 50% or more of the US is on
broadband anyway... it's a no brainer.





The conclusion is the same: Reducing the number of HTTP requests has the
biggest impact on reducing response time and is often the easiest
performance improvement to make. In the next article we'll look at the
impact of caching, and some surprising real-world findings.


_
Derrick Peavy
Sales and Web Services
CollegeClassifieds.com
http://www.collegeclassifieds.com
A Service of Universal Advertising, inc.
___


On Mar 17, 2007, at 8:07 AM, Howard Fore wrote:

One of the nice things about using style sheets that are external to your
HTML is that modern browsers won't download the CSS file again if the file
hasn't changed. So you save n KB per HTTP request. Small, but it does add
up, especially for a site with a lot of pages, like a shopping site. As far
as solving the user's problem of the style sheet not coming along with a
save, all the big broswer players have a save complete option that will
grab the style sheet.

On 3/16/07, Universal Advertising Derrick Peavy
[EMAIL PROTECTED] wrote:

 Honestly, I didn't follow the cfinclude/css thread after the first post
because it was not what I thought it was. However, if it is even remotely
related, I thought the OP might want to know, you can use CFINCLUDE to
deliver your CSS files in the head of your pages. I do this to reduce the
number of http requests and also because it solves the problem of a user
saving the page locally just as well as using a full qualified path in the
head of the page would.




--
Howard Fore, [EMAIL PROTECTED]
In any moment of decision, the best thing you can do is the right thing,
the next best thing is the wrong thing, and the worst thing you can do is
nothing

Re: [ACFUG Discuss] (new topic) You CAN use CFINCLUDE to deliver css file, fewer http requests

2007-03-17 Thread Howard Fore

Actually I think Ajax uses a different set of tubes.

On 3/17/07, Dean H. Saxe [EMAIL PROTECTED] wrote:


On Mar 17, 2007, at 9:53 PM, Howard Fore wrote:
 I just don't think that the number of http connections in a
 page is the final measure of that page's performance.


If it did, we'd never see anyone use AJAX.  AJAX apps are noisy
little things!

Thanks for confirming my suspicions on this one Howard.

-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
What is objectionable, what is dangerous about extremists is not
that they are extreme, but that they are intolerant.
 -- Robert F. Kennedy, 1964





-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







--
Howard Fore, [EMAIL PROTECTED]
In any moment of decision, the best thing you can do is the right
thing, the next best thing is the wrong thing, and the worst thing you
can do is nothing. - Theodore Roosevelt


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] DB Application Terms: (Was:) CF vs Velocity

2007-01-22 Thread Howard Fore

On 1/21/07, Robert Reil [EMAIL PROTECTED] wrote:

Now it seems to me that that layers come into play here and it is all about
layers.


Yep. In the application architecture the phrase that pays is multiple
tiers. See http://www.adobe.com/devnet/coldfusion/articles/ntier.html
for a good article.



--
Howard Fore, [EMAIL PROTECTED]


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] CF vs Velocity

2007-01-21 Thread Howard Fore

On 1/21/07, Robert Reil [EMAIL PROTECTED] wrote:

AbleCommerce CFMX5.5 uses Jakarta Velocity to manage dynamic email
generation. I have bought 2 books on Velocity and done much searching about
Velocity on the net and the more I read I find that it may be an alternative
application language to CF.


You're correct. Velocity is a Java-interpreted web scripting language
similar to CF.


With all that my mind asks the question...
Could Struts and Velocity do the same job?


Sure. Struts is an Java-based application framework, analagous to
Fusebox or Mach II or Model-Glue.


And if you are on MX, and are using Java, why use CF at all? Just move over
to a struts/Velocity/Servlet framework and do away with the crap called
ColdFusion.


What you've stumbled upon is politely called a troll. Both because
he's ugly and because the behavior is much like a fisherman in a bass
boat moving slowly across a lake trying to get a bite on their line.
Notice the name he signed the post with: I Hate CF. Such people are
not to be taken seriously when they offer advice.


From a more pragmatic point of view, yes, Struts and Velocity could

most likely do the same job, as could half-a-dozen or more other
frameworks. The question you have to answer is which is best for you.
If you have the budget to hire some programmers fluent in the
framework in question, then you can debate the merits of the
framework. If you don't and you're going to be doing the coding
yourself, then you should poke around at Java some and see if you seem
more at home than in CF. My bet is that you're better off in CF.

--
Howard Fore, [EMAIL PROTECTED]
Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby
sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba
naba / Early morning singing song - Good Morning Starshine


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] SOT: Do you know any local designers?

2007-01-12 Thread Howard Fore

Try Gillian and Aaron Norrie at Garcan Design. I've worked with both
of them in the past and have nothing but good things to say about
them. They're local, drop Gillian a line at [EMAIL PROTECTED]


On 1/9/07, jonese [EMAIL PROTECTED] wrote:

anyone else?



--
Howard Fore, [EMAIL PROTECTED]
Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby
sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba
naba / Early morning singing song - Good Morning Starshine


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] DB Design Book Reccomendations?

2007-01-12 Thread Howard Fore

Amen!

On 1/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:



Database Design For Mere Mortals




--
Howard Fore, [EMAIL PROTECTED]
Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby sabba
/ Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba naba /
Early morning singing song - Good Morning Starshine



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] DB Design Book Reccomendations?

2007-01-12 Thread Howard Fore

So true. Celko's books (and columns available online, do some
Googling) are great, but they're not for beginners.

On 1/12/07, Dean H. Saxe [EMAIL PROTECTED] wrote:

No, its not a primer at all.  Get comfortable with SQL.  Then get
guru status by reading and understanding Celko's book.  Its not for
the faint of heart.



--
Howard Fore, [EMAIL PROTECTED]
Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby
sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba
naba / Early morning singing song - Good Morning Starshine


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: Re: re[2]: [ACFUG Discuss] Tagging example in CF

2006-09-14 Thread Howard Fore
Blog: http://cfpayne.wordpress.com/
  Atlanta CFUG: http://www.acfug.org
  -  To unsubscribe from this list, manage your profile @  
http://www.acfug.org?fa=login.edituserform
   For more info, see http://www.acfug.org/mailinglists  Archive @
 
http://www.mail-archive.com/discussion%40acfug.org/  List hosted by FusionLink  -
   Mischa Uppelschoten  The Banker's Exchange, Inc.  2020 Hills Avenue NW  Atlanta, GA30318   Phone:(404) 605-0100 ext. 10  Fax:(404) 355-7930
  Web:www.BankersX.com  Follow this link for Instant Web Chat:  

http://www.bankersx.com/Contact/chat.cfm?Queue=MUPPELSCHOTEN -  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?falogin.edituserform   For more info, see 
http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by http://www.fusionlink.com
  - -- cf_payne / Blog: 
http://cfpayne.wordpress.com/ Atlanta CFUG: 
http://www.acfug.org -
 To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform
 For more info, see 
http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by FusionLink -
--Steven Rossweb application  interface developerhttp://www.zerium.com[mobile] 404-488-4364
[fax] 928-484-4364-
To unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform
For more info, see 
http://www.acfug.org/mailinglistsArchive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by 
http://www.fusionlink.com--- 
cf_payne /Blog: 
http://cfpayne.wordpress.com/Atlanta CFUG: http://www.acfug.org



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- Howard Fore, [EMAIL PROTECTED]Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba naba / Early morning singing song - Good Morning Starshine



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



Re: [ACFUG Discuss] Re: Who's going to CFUnited?

2006-06-28 Thread Howard Fore
Cool. I'm in jeans and a green Polo. Teddy and Adam and I are downstairs in the Personal IPO presentation.On 6/28/06, Cameron Childress 
[EMAIL PROTECTED] wrote:if anyone checks mail... I'm in a maroon shirt today and have claimed
a table in the exhibit hall near the house of fusion boothOn 6/27/06, Cameron Childress [EMAIL PROTECTED] wrote: yes.lunch on wed.I will see about getting some sort of marking for
 a table.otherwise, anyone who gets lost trying to find us, just call my cell once you are in the lunch area. 678-637-5072. On 6/27/06, 
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:  So if I heard things right, Wednesday lunch?Any way there could be a
  sign, even if it is printer paper that says ACFUG (or can someone just  wave at the redhead, lol)?   mcg 
  Charlie Arehart [EMAIL PROTECTED]  Sent by: [EMAIL PROTECTED]  06/27/2006 01:11 AM  Please respond to
  discussion@acfug.orgTo  discussion@acfug.org  cc 
  Subject  RE: [ACFUG Discuss] Re: Who's going to CFUnited?I'll just step up and say I'm not contributing to the coordination because
  I have just too much going on to take that on, let alone commit to being  there. I will try to make it if someone gets it organized. :-)   And I'll say as well, for those curious about the weather, that all is
  fine here. Just arrived tonight by way of BWI. Just normal wet streets, no  probs on 95, beltway, or 355. Now in the hotel. All is lovely and calm.  We'll be in the hotel most of the time anyway, so let the rains come. We
  will learn and laugh!   /charlieFrom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
] On Behalf Of Teddy Payne  Sent: Monday, June 26, 2006 9:35 AM  To: discussion@acfug.org  Subject: Re: [ACFUG Discuss] Re: Who's going to CFUnited?
   The questions remainsas such:   What day does the ACFUG CF United attendees want to meet? Wednesday?   There is an internet cafe in the expo area:
  http://www.cfunited.org/become_sponsor.cfm#expo   We need some logistics my friends.=)   On 6/26/06, Howard Fore 
[EMAIL PROTECTED] wrote:  That sounds good.   On 6/24/06, Cameron Childress [EMAIL PROTECTED]
 wrote:  for sure...most people going their own directions at night so its  much easier to get folks tofether at lunch.   Sounds good.   I didn't even look, are they serving lunch for us?if so we can just
  agree to find a table together and make that our lunch so we all know  who each other are and look like when we bump into each other during  the rest of conf...   It does look like they are providing lunch.
  http://www.cfunited.com/faqs.cfm:  3. Are you providing meals?  We will only provide coffee in the morning and lunch around noon each day.
  Dinner is not provided by CFUNITED. For lunch you can indicate on the  registration form if you need a vegetarian or kosher meal. --  Howard Fore, 
[EMAIL PROTECTED]  Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby  sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba
  naba / Early morning singing song - Good Morning Starshine  -  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserform   For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/  List hosted by FusionLink  -
 --  cf_payne /  -  To unsubscribe from this list, manage your profile @
  http://www.acfug.org?fa=login.edituserform   For more info, see http://www.acfug.org/mailinglists
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/  List hosted by FusionLink  -
   -  To unsubscribe from this list, manage your profile @  
http://www.acfug.org?fa=login.edituserform   For more info, see http://www.acfug.org/mailinglists  Archive @ 
http://www.mail-archive.com/discussion%40acfug.org/  List hosted by FusionLink  - -
  To unsubscribe from this list, manage your profile @  http://www.acfug.org?fa=login.edituserform   For more info, see 
http://www.acfug.org/mailinglists  Archive @ http://www.mail-archive.com/discussion%40acfug.org/
  List hosted by http://www.fusionlink.com  -   
 -- Cameron Childress Sumo Consulting Inc http://www.sumoc.com --- cell:678.637.5072 aim: cameroncf email: 
[EMAIL PROTECTED]--Cameron ChildressSumo Consulting Inchttp://www.sumoc.com---cell:678.637.5072aim: cameroncfemail: 
[EMAIL PROTECTED]-To unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform
For more info, see http

Re: [ACFUG Discuss] Re: Who's going to CFUnited?

2006-06-26 Thread Howard Fore
That sounds good. On 6/24/06, Cameron Childress [EMAIL PROTECTED] wrote:
for sure...most people going their own directions at night so itsmuch easier to get folks tofether at lunch.Sounds good.
I didn't even look, are they serving lunch for us?if so we can justagree to find a table together and make that our lunch so we all knowwho each other are and look like when we bump into each other duringthe rest of conf...
It does look like they are providing lunch. http://www.cfunited.com/faqs.cfm:3. Are you providing meals?
We will only provide coffee in the morning and lunch around noon each
day. Dinner is not provided by CFUNITED. For lunch you can indicate on
the registration form if you need a vegetarian or kosher meal.-- Howard Fore, [EMAIL PROTECTED]Gliddy glub gloopy / Nibby nabby noopy / La la la lo lo / Sabba sibby sabba / Nooby abba nabba / Le le lo lo / Tooby ooby walla / Nooby abba naba / Early morning singing song - Good Morning Starshine



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



[ACFUG Discuss] CFMX 7.01 on Centos 4 (aka RHEL)

2006-06-20 Thread Howard Fore
Hey,I'm trying to get CFMX 7 running on Centos 4. For the uninitiated, Centos 4 is a Linux distribution compiled from the Red Hat Enterprise Linux sources. Yes, I know this is not an officially supported configuration. I got no errors from the installer other than a warning that it couldn't confirm if I had the libstdc++ compatibility library loaded (I do).
I ran into a problem first with the missing JDBC drivers jar (java.lang.NoClassDefFoundError: macromedia/jdbc/MacromediaDriver in the log). I fixed that and now the server starts but the CF servlets don't load. I've googled around for others with this issue but they seem to be having problems with things that don't apply to my situation (multiple instances, multiple JVMs, etc.). Can someone point me in the right direction here?
Here's the log:Starting Macromedia JRun 4.0 (Build 92909), coldfusion server06/19 22:47:44 warning Unable to open /opt/coldfusionmx7/runtime/lib/license.properties06/19 22:47:45 info JRun Naming Service listening on *:2920
06/19 22:47:45 warning No sessionSecret has been specified in jrun.xml. Installing a self generated sessionSecret.06/19 22:47:46 info No JDBC data sources have been configured for this server (see jrun-resources.xml
)06/19 22:47:46 info JRun Web Server listening on *:850006/19 22:47:46 info JRun Proxy Server listening on *:5101106/19 22:47:46 info Deploying enterprise application Macromedia ColdFusion MX from: file:/opt/coldfusionmx7/
06/19 22:47:46 info Deploying web application Macromedia Coldfusion MX from: file:/opt/coldfusionmx7/06/19 22:47:46 error Error loading class for Filter CFCacheFilter: Filter is disabled.java.lang.ClassNotFoundException
: coldfusion.bootstrap.BootstrapFilterat jrunx.util.JRunURLClassLoader.findClass(JRunURLClassLoader.java:161)at java.lang.ClassLoader.loadClass(Unknown Source)at jrunx.util.JRunURLClassLoader.loadClass
(JRunURLClassLoader.java:77)at jrunx.util.JRunURLClassLoader.loadClass(JRunURLClassLoader.java:69)at jrun.servlet.FilterManager.loadFilter(FilterManager.java:184)at jrun.servlet.FilterManager.init
(FilterManager.java:155)at jrun.servlet.FilterManager.create(FilterManager.java:74)at jrun.servlet.WebApplicationService.start(WebApplicationService.java:223)at jrun.ea.EnterpriseApplication.start
(EnterpriseApplication.java:194)at jrun.deployment.DeployerService.initModules(DeployerService.java:710)at jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)at 
jrun.deployment.DeployerService.deploy(DeployerService.java:430)at jrun.deployment.DeployerService.handleEvent(DeployerService.java:381)at jrunx.kernel.JRunServiceDeployer.fireEvent(JRunServiceDeployer.java
:710)at jrunx.kernel.JRunServiceDeployer.deployServices(JRunServiceDeployer.java:111)at jrunx.kernel.DeploymentService.loadServices(DeploymentService.java:46)at sun.reflect.NativeMethodAccessorImpl.invoke0
(Native Method)at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)at java.lang.reflect.Method.invoke(Unknown Source)
at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)at jrunx.kernel.JRun.startServer(JRun.java
:575)at jrunx.kernel.JRun.init(JRun.java:493)at jrunx.kernel.JRun$1.run(JRun.java:346)at java.security.AccessController.doPrivileged(Native Method)at jrunx.kernel.JRun.start
(JRun.java:343)at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)at sun.reflect.DelegatingMethodAccessorImpl.invoke
(Unknown Source)at java.lang.reflect.Method.invoke(Unknown Source)at jrunx.kernel.JRun.invoke(JRun.java:180)at jrunx.kernel.JRun.main(JRun.java:168)06/19 22:47:46 user JSPServlet: init
06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CFMxmlServlet06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: ColdFusionStartUpServlet
06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CfmServlet06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CFSwfServlet
06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CFCServlet06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: FlashGateway
06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CFFormGateway06/19 22:47:47 info coldfusion.bootstrap.BootstrapServlet06/19 22:47:47 error Could not pre-load servlet: CFInternalServlet
Server coldfusion ready (startup time: 5 seconds)-- Howard Fore, [EMAIL PROTECTED]The less you know, the more you believe. - U2, Last Night On Earth

Re: [ACFUG Discuss] CFMX 7.01 on Centos 4 (aka RHEL)

2006-06-20 Thread Howard Fore

Nope, it's my personal server.

On 6/20/06, Tom Chambers [EMAIL PROTECTED] wrote:

Hi Howard,
Did you go with Centos because of a customer requirement?



--
Howard Fore, [EMAIL PROTECTED]
The less you know, the more you believe. - U2, Last Night On Earth


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-