Re: Hosted VPS recommendations

2010-11-20 Thread Dan Vega

+1 for KickAssVPS

They have just been awesome.. I can't speak to their customer service
because quite frankly, I have never needed them in 2 years... GREAT VPS

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Thu, Nov 18, 2010 at 2:18 PM, Gerald Guido gerald.gu...@gmail.comwrote:


 I can, and without hesitation, recommend both Viviotech.net and
 kickassvps.com.

 Both have excellent support, quality products and good prices. The folks at
 viviotech have repeatedly gone above and beyond (and then some) what I
 would
 expect from a hosting company when it comes to support. I cannot say enough
 good things about them.

 Kick ass VPS's support is excellent as well. I am setting up a 2k3 vps
 right
 now and simple support requests were fielded and resolved in a matter of
 5-10 minutes. Others issues took longer but were perfectly acceptable given
 the nature of the problem(s).

 BTW I got kickassvps's entry level Win 2k3 machine for $35 W/ 1 gig ram, 10
 gig hd space and I have CF9 and MSSQL, Mysql, IIS 6, mail servers, dns,
 (the
 works) and it has a solid 600+ megs of ram free with a couple domains
 running.


 The third option I would recommend exploring is Amazon EC2. you can get a
 Small Instance -- 1.7 GB of memory, 1 EC2 Compute Unit (1 virtual core with
 1 EC2 Compute Unit), 160 GB of local instance storage, 32-bit platform --
 For about $55 a month with a year lease or you *might* be able to squeeze
 it
 CF and MSSQL on a micro instance which is about $10/month.

 HTH
 G!


 On Thu, Nov 18, 2010 at 1:08 PM, Dan Crouch stario...@yahoo.com wrote:

 
  I am looking for a VPS to replace an in house development server. We
  already have licenses for SQL and CF. Most places seem to want to charge
  extra for a package that has enough ram and processing power to handle
 both
  of those and they then provide them as well. So I dont want to have to
 pay
  for a built in cost for licensing something we already have. Bandwidth
 needs
  are very low since it is just for internal work, nothing will be
 externally
  hosted on it.
 
  Can anyone recommend a decent VPS host with a basic windows server setup
  that would allow several developers to login and develop remotely?
 
  Dan
 
 

 

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


Re: Cfdebug and CFCs with $.get

2010-05-17 Thread Dan Vega

In your url you can pass the cf_nodebug attribute

cfc/foo.cfc?method=getFooreturnformat=json_cf_nodebug=true

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Mon, May 17, 2010 at 8:05 AM, Chad Baloga cbal...@gmail.com wrote:


 I am using some jQuery $.get's with CFCs and my returns are including the
 cf debug info.  Does anyone know how to turn it off for just the CFCs?  I
 tried putting cfsetting tags on some of the pages but that is not working.

 

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


Re: array question

2009-12-17 Thread Dan Vega

You can find out the dimension of an array like so

myArray.getDimension()


Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Thu, Dec 17, 2009 at 11:15 AM, DURETTE, STEVEN J (ATTASIAIT) 
sd1...@att.com wrote:


 Ben,

 Do an arraylen on the first row.  arrayLen(myVar[1])

 That will return the number of columns or planes.

 Steve


 -Original Message-
 From: Ben Conner [mailto:b...@webworldinc.com]
 Sent: Thursday, December 17, 2009 11:08 AM
 To: cf-talk
 Subject: array question


 Hi,

 Haven't played much with arrays but having reviewed how they work, I
 have a question that I can't find an answer to:

 Given a 2 or 3 dimensional array, how do you determine the # of columns
 or planes in an array?  If you reference a column that isn't defined, CF

 throws an error.  But I don't find a function that returns the # of
 columns or planes, unlike arraylen() which returns the # of rows.

 Thanks...!

 --Ben

 --
 Ben Connerb...@webworldinc.com
 Web World, Inc.   888-206-6486
 PO Box 1122   480-704-2000
 Queen Creek, AZ 85242





 

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


Re: CF 9 - cfparam problem - ORM function

2009-12-16 Thread Dan Vega

The properties and their generated getters/setters are based on the Entity
that was created. He most likely has a person Entity (person.cfc) that
represents a person. In that file he has properties for each attribute of
person.

property firstname
proeprty lastname
property email

When you change his code to

person.setName() - Its looking for a property in that entity that does not
exist.

Make sure you go back and update the entity.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Wed, Dec 16, 2009 at 1:21 PM, Susan Gallegos galle...@ag.arizona.eduwrote:


 I am just starting with ORM so I downloaded samples from a talk by Ray
 Camden - his code works but when I make small changes I get an error for
 cfparam:

 Ray's code:
 h2Edit Person/h2

 cfparam name=url.id default=0

 cfif url.id neq 0
cfset person = entityLoadByPk(person, url.id)
 cfelse
cfset person = new model.person()
 /cfif

 cfif structKeyExists(form, save)
cfset person.setFirstName(form.firstname)
cfset person.setLastName(form.lastname)
cfset person.setEmail(form.email)
cfset person.setHistory(form.history)
cfset person.setDOB(form.dob)
cfset entitySave(person)
cflocation url=index.cfm addToken=false
 /cfif

 cfparam name=form.firstname default=#person.getFirstName()#
 cfparam name=form.lastname default=#person.getLastName()#
 cfparam name=form.email default=#person.getEmail()#
 cfparam name=form.history default=#person.getHistory()#
 cfparam name=form.dob default=#person.getDOB()#

 My code:
 cfparam name=url.id default=0

 cfif url.id neq 0
cfset user = entityLoadByPk(User, url.id)
 cfelse
cfset user = new model.User()
 /cfif

 cfif structKeyExists(form, save)
cfset user.setName(form.name)
cfset user.setEmail(form.email)
cfset user.setActive(form.active)
cfset entitySave(User)
cflocation url=index.cfm addToken=false
 /cfif

 cfparam name=form.name default=#user.getName()#
 cfparam name=form.email default=#user.getEmail()#
 cfparam name=form.active default=#user.getActive()#

 As I said - his code runs with no problem and my code chokes at the cfparam
 with default=#user.getName()# - if I set default to  I don't get the
 error.

 Any ideas why his works and mine doesn't?
 Thanks
 Susan Gallegos

 

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


ColdFusion 9 Service failing on Startup

2009-12-14 Thread Dan Vega
] - Starting Event Gateways.
12/14 14:36:04 Information [main] - Starting FlexAssembler...
12/14 14:36:06 Information [main] - Starting .NET...
12/14 14:36:06 Information [main] - Starting Monitoring...
12/14 14:36:07 Information [main] - ColdFusion started
12/14 14:36:07 user ColdFusionStartUpServlet: ColdFusion: application
services are now available
12/14 14:36:07 user CFMxmlServlet: init
12/14 14:36:07 user CFMxmlServlet: Macromedia Flex Build: 87315.134646
12/14 14:36:07 INFO Macromedia Flex Build: 87315.134646
12/14 14:36:11 user CFSwfServlet: init
12/14 14:36:11 user CFCServlet: init
12/14 14:36:14 user FlashGateway: init
12/14 14:36:15 user MessageBrokerServlet: init
12/14 14:36:17 user CFFormGateway: init
12/14 14:36:19 user CFInternalServlet: init
12/14 14:36:19 user WSRPProducer: init
12/14 14:36:19 user ServerCFCServlet: init
Server coldfusion ready (startup time: 69 seconds)


Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


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


Re: ColdFusion 9 Service failing on Startup

2009-12-14 Thread Dan Vega

Figured it out, virus protection was screwing us up. The policy was in place
but our web server was never hitting it.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Mon, Dec 14, 2009 at 2:36 PM, Dan Vega danv...@gmail.com wrote:

 This is really weird and I am still trying to hunt down any solutions to
 this problem. I have the service set to start automatically on startup. The
 service never starts and I see this in the
 {cf_root}\runtime\logs\coldufsion-out.log

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:15:52 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:16:01 info JRun Naming Service listening on *:2932
 12/14 14:16:07 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:16:07 info JRun Proxy Server listening on *:51800
 12/14 14:16:07 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:16:09 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/

 The process right there is what its hanging out and in the event error

 The ColdFusion 9 Application Server service could not be started within 240
 seconds.  Increase the server startup timeout value using
 D:\ColdFusion9\runtime\bin\jrunsvc.exe -starttimeout seconds

 If I try and start it manually it errors out and I have the following in
 the same coldfusion-out.log

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:32:19 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:32:31 info JRun Naming Service listening on *:2932
 12/14 14:32:33 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:32:33 info JRun Proxy Server listening on *:51800
 12/14 14:32:33 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:32:34 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/

 I start it again and no issues.

 Starting Macromedia JRun 4.0 (Build 108795), coldfusion server
 These changes should get picked up!
 12/14 14:35:14 warning Unable to open
 D:\ColdFusion9\runtime/lib/license.properties
 12/14 14:35:15 info JRun Naming Service listening on *:2932
 12/14 14:35:16 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 12/14 14:35:16 info JRun Proxy Server listening on *:51800
 12/14 14:35:16 info Deploying enterprise application Adobe_ColdFusion_9
 from: file:/D:/ColdFusion9/
 12/14 14:35:17 info Deploying web application Adobe ColdFusion 9 from:
 file:/D:/ColdFusion9/
 12/14 14:35:42 INFO License Service: Flex 1.5 CF Edition enabled
 12/14 14:35:42 INFO Starting Flex 1.5 CF Edition
 12/14 14:35:43 user JSPServlet: init
 12/14 14:35:46 user ColdFusionStartUpServlet: init
 12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: Starting
 application services
 12/14 14:35:46 user ColdFusionStartUpServlet: ColdFusion: VM version =
 14.0-b16
 12/14 14:35:48 Information [main] - Starting logging...
 12/14 14:35:48 Information [main] - Starting license...
 12/14 14:35:57 Information [main] - Enterprise Edition enabled
 These changes should get picked up!
 12/14 14:35:58 Information [main] - Starting crypto...
 12/14 14:35:58 Information [main] - Installed JSafe JCE provider: Version
 3.6 RSA Security Inc. Crypto-J JCE Security Provider (implements RSA, DSA,
 Diffie-Hellman, AES, DES, Triple DES, DESX, RC2, RC4, RC5, PBE, MD2, MD5,
 RIPEMD160, SHA1, SHA224, SHA256, SHA384, SHA512, HMAC-MD5, HMAC-RIPEMD160,
 HMAC-SHA1, HMAC-SHA224, HMAC-SHA256, HMAC-SHA384, HMAC-SHA512)
 12/14 14:35:58 Information [main] - Starting security...
 12/14 14:35:58 Information [main] - Starting scheduler...
 12/14 14:35:58 Information [main] - Starting WatchService...
 12/14 14:35:58 Information [main] - Starting debugging...
 12/14 14:35:59 Information [main] - Starting sql...
 12/14 14:35:59 Information [main] - Pool Manager Started
 12/14 14:35:59 Information [main] - Starting mail...
 12/14 14:35:59 Information [main] - Starting runtime...
 12/14 14:36:00 [main] INFO  Using
 C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
 12/14 14:36:00 [main] INFO  Using
 C:\DOCUME~1\CFAdmin\LOCALS~1\Temp\vfs_cache as temporary files store.
 12/14 14:36:00 Information [main] - CORBA Configuration not enabled
 12/14 14:36:00 Information [main] - Starting cron...
 12/14 14:36:00 Information [main] - Starting registry...
 12/14 14:36:00 Information [main] - Starting client...
 12/14 14:36:03 Information [main] - Starting xmlrpc...
 12/14 14:36:04 Information [main] - Starting graphing...
 12/14 14:36:04 Information [main] - Starting verity...
 12/14 14:36:04 Information [main] - Starting solr...
 12/14 14:36:04 Information [main] - Starting archive...
 12/14 14:36:04 Information [main] - Starting document...
 12

Re: (ot) Tool for Users to build their own Queries

2009-10-19 Thread Dan Vega

Oracle SQL Developer is a pretty nice program for free.
Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Mon, Oct 19, 2009 at 11:29 AM, Dave Hatz daveh...@hatzventures.orgwrote:


 Cameron,
 Thanks for the info on setting up the user account.  My programmers and I
 use TOAD for all our Oracle Data access.  I am not sure if she will have
 the
 budget to go out and buy TOAD.  Do you know of any other tools on the
 market
 that she might be able to use?

 Dave


 

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


Re: Coldfusion Sport Software

2009-06-30 Thread Dan Vega

Why would you recommend that he go to a PHP hosting company? He is looking
for a ColdFusion based solution?

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org/


On Tue, Jun 30, 2009 at 3:54 PM, Paul Alkema paulalkemadesi...@gmail.comwrote:


 Hi Barry,
 You could try http://www.cfm-resources.com/index.cfm?signupType=business.
 I
 honestly don't know how reliable they are though. I haven't tried them but
 I've ran across them a couple of times. I think they force adds on your
 site
 which can be annoying.

 If I were you, I had a low budget and I was looking for a reliable hosting
 company I would go with a php hosting provider like
 http://www.alkemadesigns.com/hosting. These guys are who are recommend all
 my clients go with. They have 99.9% uptime and unlimited bandwidth and
 unlimited webspace for $4.95 a month?

 Paul Alkema
 -Original Message-
 From: Barry Mcconaghey [mailto:bmcconag...@gmail.com]
 Sent: Tuesday, June 30, 2009 2:01 PM
 To: cf-talk
 Subject: Coldfusion Sport Software


 Hello.

 I was asked to help build a coldfusion website for a non-profit sport
 organization to help speed up the process of online applications,
 schedules,
 etc.

 Does anybody know of a good website free or paid that has CF software for a
 sport organizer.

 Thanks,

 Barry



 

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


Re: Mod Rewrite for blog cfc

2009-02-28 Thread Dan Vega

The 404 is coming from tomcat.

HTTP Status 404 -
--

*type* Status report

*message*

*description* *The requested resource () is not available.*
--
Apache Tomcat/6.0.18
Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


On Sat, Feb 28, 2009 at 2:09 AM, James Holmes james.hol...@gmail.comwrote:


 By default, the mod_rewrite rules aren't necessary; BlogCFC handles
 those friendly URLs internally.

 Is it Apache that gives you 404 or Railo?

 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.au/blog/



 2009/2/28 Dan Vega danv...@gmail.com:
 
  I got my blog running on Railo and anytime i go to a url that looks like
  this
 
  http://dev.danvega.org/blog/index.cfm/2009/2/5/CFMU-Updates-coming-soon
 
  I get a 404 error. This is because I neeed to add some re write rules
 into
  apache right?
 
  Anyone have these rules for blogcfc?
 
  Thank You
  Dan Vega
  danv...@gmail.com
  http://www.danvega.org
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319940
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: AW: Mod Rewrite for blog cfc

2009-02-28 Thread Dan Vega

Thanks for the advice guys! I would like to stay with tomcat just because I
have stuff already setup in there and I have not tested my one openbd app on
resign yet (i suspect its not an issue) but the url rewrite does not sound
fun so, ill poke around. Thanks!

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


On Sat, Feb 28, 2009 at 1:31 PM, Barney Boisvert bboisv...@gmail.comwrote:


 The Servlet spec says one asterisk per mapping, and it must be at one
 end or another (not the middle).  So Resin (which I've not used) is
 extending the spec if it supports multiple asterisks.  A cleaner
 solution, if you want to stay pure-JEE, is to use a rewriting filter
 like UrlRewrite.  Then you can support arbitrary URL formats without a
 dependence on one specific web container.

 cheers,
 barneyb

 ---
 Barney Boisvert
 bboisv...@gmail.com
 http://www.barneyb.com

 On Feb 28, 2009, at 10:18 AM, Gert Franz gert.fr...@railo.ch wrote:

 
  Gerald,
 
  you're right. Tomcat only allows one * per mapping. I do not know
  whether
  BlogCFC supports some kind of different mapping or not, but we will
  inform
  you as soon as the guys from JBoss come up with a solution for this.
 
  Instead of Tomcat you can use Resin which supports SES URL's
 
  Greetings from Switzerland
  Gert Franz
  Railo Technologies GmbH
  gert.fr...@railo.ch
  www.railo.ch
 
  Join our Mailing List
  german:http://de.groups.yahoo.com/group/railo/
  english:http://groups.yahoo.com/group/railo_talk/
  linked in:http://www.linkedin.com/e/gis/71368/0CF7D323BBC1
  Bug tracker:http://jira.jboss.org/jira/browse/RAILO
  Railo Blog:http://www.railo-technologies.com/blog
 
 
  -Ursprüngliche Nachricht-
  Von: Gerald Guido [mailto:gerald.gu...@gmail.com]
  Gesendet: Samstag, 28. Februar 2009 16:18
  An: cf-talk
  Betreff: Re: Mod Rewrite for blog cfc
 
 
  The 404 is coming from tomcat.
 
  A... I ran into the same problem with Tomcat and IIRC it is cuz
  Tomcat
  does not support SES URL's .It was on Cento at the time.
 
  I could be wrong. You can ask them on the Railo Talk list
  http://tech.groups.yahoo.com/group/railo_talk/
 
  G!
 
  On Sat, Feb 28, 2009 at 8:55 AM, Dan Vega danv...@gmail.com wrote:
 
 
  The 404 is coming from tomcat.
 
  HTTP Status 404 -
  --
 
  *type* Status report
 
  *message*
 
  *description* *The requested resource () is not available.*
  --
  Apache Tomcat/6.0.18
  Thank You
  Dan Vega
  danv...@gmail.com
  http://www.danvega.org
 
 
  On Sat, Feb 28, 2009 at 2:09 AM, James Holmes james.hol...@gmail.com
  wrote:
 
 
  By default, the mod_rewrite rules aren't necessary; BlogCFC handles
  those friendly URLs internally.
 
  Is it Apache that gives you 404 or Railo?
 
  mxAjax / CFAjax docs and other useful articles:
  http://www.bifrost.com.au/blog/
 
 
 
  2009/2/28 Dan Vega danv...@gmail.com:
 
  I got my blog running on Railo and anytime i go to a url that looks
  like
  this
 
 
  http://dev.danvega.org/blog/index.cfm/2009/2/5/CFMU-Updates-coming-soon
 
  I get a 404 error. This is because I neeed to add some re write
  rules
  into
  apache right?
 
  Anyone have these rules for blogcfc?
 
  Thank You
  Dan Vega
  danv...@gmail.com
  http://www.danvega.org
 
 
 
 
 
 
 
 
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319948
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: AW: Mod Rewrite for blog cfc

2009-02-28 Thread Dan Vega

Thanks for the advice guys! I would like to stay with tomcat just because I
have stuff already setup in there and I have not tested my one openbd app on
resign yet (i suspect its not an issue) but the url rewrite does not sound
fun so, ill poke around. Thanks!


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319949
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Mod Rewrite for blog cfc

2009-02-27 Thread Dan Vega

I got my blog running on Railo and anytime i go to a url that looks like
this

http://dev.danvega.org/blog/index.cfm/2009/2/5/CFMU-Updates-coming-soon

I get a 404 error. This is because I neeed to add some re write rules into
apache right?

Anyone have these rules for blogcfc?

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319936
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Railo Install on JBoss?

2009-02-17 Thread Dan Vega

You might run into issues on JBoss 5.0, though I know it works fine on 4.2.
The next thing you need to ask yourself though is why JBoss. I would take a
look at Tomcat, its so lightweight and really easy to get up and running.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319411
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Dan Vega
http://cfmu.riaforge.org/

Uses Flex/ColdFusion but provides a real solution.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


On Fri, Dec 19, 2008 at 10:02 AM, Ian Skinner h...@ilsweb.com wrote:

  Hopefully Adobe will address this problem soon. I'm not the only one
 raising
  this issue. I could not find a solution in my search, but I sure found a
 lot
  of complaints posted about this.

 Well, before Adobe can address this problem, the entire HTTP standard
 for client-server communications would have to be addressed.  The corner
 stone of HTTP is that it is stateless and each and every
 request-response is separate and intendant.  So there are very limited
 ways for a server to communicate with a client and vice-a-versa which
 does not allow for servers to push new data to a client after a
 request-response has been processed.

 With that said, Adobe has addressed this problem by providing
 technologies outside of the HTTP standard.  Flash - Flex - Air, provide
 alternate Client-Server communication methods where it is entirely
 possible to maintain state and easily have the server push information
 to the client such as this.  But if you are unwilling to move beyond the
 HTTP request-response cycle it is unlikely to happen at least not any
 time soon.

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316974
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Use Wordpress or BlogCFC?

2008-12-08 Thread Dan Vega
I would have to agree with Scott here! Don't be a communist, use BlogCFC and
vote wilson/stroz!


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Mon, Dec 8, 2008 at 10:49 AM, jonese [EMAIL PROTECTED] wrote:

 I like mango blog. Not a communist and not going to let the terrorists win
 but i do like to do things a bit differently :)
 http://www.mangoblog.org/ --- be different LOL
 ___
 Eric Jones aka jonese
 http://www.jonese.us
 http://twitter.com/jonese


 On Mon, Dec 8, 2008 at 10:37 AM, Scott Stroz [EMAIL PROTECTED] wrote:

  Persoanlyl, I think any CFer who blgs and does not use BlogCFC is a
  communist.  Hell, I think anyone who blgs and does nto use BlogCFC is a
  communist.
 
  Use BlogCFC or the terrorists win.
 
  On Fri, Dec 5, 2008 at 4:08 PM, Rick Faircloth [EMAIL PROTECTED]
  wrote:
 
   I want to start blogging and have been looking over the options.
  
   Blogger...mmm...meh.
  
   I looked over Wordpress, but options are limited unless I pay more
   and more money for features.
  
   I downloaded BlogCFC and am considering that, but do I really want to
   bother with running my own software to get fine-grain control over just
   my one blog?  (Just the notes for installation is 16 pages!)
  
   Is BlogCFC more for those wanting to run a blogging service for
 multiple
   users?
  
   Thoughts?
  
   Rick
  
  
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316418
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Use Wordpress or BlogCFC?

2008-12-05 Thread Dan Vega
I have been using BlogCFC forever and have no reason to change. Plus if you
do decide to use other software Ray will personally hunt you down, you don't
want that now do you? We have some exciting changes coming in 6 so stay
tuned for those.

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Fri, Dec 5, 2008 at 4:29 PM, Rob Parkhill [EMAIL PROTECTED]wrote:

 I set up blog CFC for a development blog for a project that I am working
 on.
  I think it took me about 10 minutes MAX to have it up and running on a
 MSSQL 2005 server and CF8.  Heck I even took some time and changed some of
 the colors in the CSS...
 On Fri, Dec 5, 2008 at 4:15 PM, Matt Quackenbush [EMAIL PROTECTED]
 wrote:

  Use mangoblog.  :)
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316357
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Ant build

2008-11-20 Thread Dan Vega
In the current environment I am working on we have a dev/test/prod setup.
Everything needs to be done in dev but not everything in dev gets moved.
Only files that need to be reviewed get moved to test so the Test env is not
always current. I am trying to come up with a solution that allows me to
enter a file or dir and then select test/live/all to move file(s) or
directories.

For example I am using the input paramater. If I use the following build
script It works great for moving files. I also know how to work with
directories, my main question is how can I make it dynamic so if I enter a
file or folder it knows to only push that?

?xml version=1.0 encoding=UTF-8?
project default=test

description.com build file/description

input message=Target file or directory to copy: 
addproperty=target/
input message=Environment we are copying to:   addproperty=ENV
defaultvalue=test validargs=test,live,all/

property name=dev value=\\mydevcom /
property name=test value=\\mytestcom /
property name=live value=\\mylivecom /

 target name=test
 copy file=${target} todir=${test} verbose=true/
 /target

 target name=live
 copy file=${target} todir=${live} verbose=true/
 /target

target name=all depends=test,live/

/project


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315701
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Ant build

2008-11-20 Thread Dan Vega
Well here is the problem, our www folder has about 100 folders in it. I may
make some changes to folder x and I just want to push folder x to test 
production or just test. Should I not use ant for this? Just write bat for
this?


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Thu, Nov 20, 2008 at 1:49 PM, Barney Boisvert [EMAIL PROTECTED]wrote:

 Ant accepts properties on the command line that can be used to
 parameterize your script.  Though if all you're doing is replicating
 files, something like rsync and a simple shell script/BAT file might
 be easier.

 cheers,
 barneyb

 On Thu, Nov 20, 2008 at 8:45 AM, Dan Vega [EMAIL PROTECTED] wrote:
  In the current environment I am working on we have a dev/test/prod setup.
  Everything needs to be done in dev but not everything in dev gets moved.
  Only files that need to be reviewed get moved to test so the Test env is
 not
  always current. I am trying to come up with a solution that allows me to
  enter a file or dir and then select test/live/all to move file(s) or
  directories.
 
  For example I am using the input paramater. If I use the following build
  script It works great for moving files. I also know how to work with
  directories, my main question is how can I make it dynamic so if I enter
 a
  file or folder it knows to only push that?
 
  ?xml version=1.0 encoding=UTF-8?
  project default=test
 
 description.com build file/description
 
 input message=Target file or directory to copy: 
  addproperty=target/
 input message=Environment we are copying to:   addproperty=ENV
  defaultvalue=test validargs=test,live,all/
 
 property name=dev value=\\mydevcom /
 property name=test value=\\mytestcom /
 property name=live value=\\mylivecom /
 
  target name=test
  copy file=${target} todir=${test} verbose=true/
  /target
 
  target name=live
  copy file=${target} todir=${live} verbose=true/
  /target
 
 target name=all depends=test,live/
 
  /project
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315718
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ant build

2008-11-20 Thread Dan Vega
Well I like the ANT approach but I have 1 main issue. I know how to use the
copy command in 3 different scenarios (single file,single file to a
directory, copy a dir). Based on 1 input though is there a way to know if
its a file or dir?

*Copy a single file*

  copy file=myfile.txt tofile=mycopy.txt/

*Copy a single file to a directory*

  copy file=myfile.txt todir=../some/other/dir/

*Copy a directory to another directory*

  copy todir=../new/dir
fileset dir=src_dir/
  /copy



Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Thu, Nov 20, 2008 at 2:24 PM, Barney Boisvert [EMAIL PROTECTED]wrote:

 rsync accepts a path spec on the command line, much like your Ant
 script would.  It's really 6 one way, half dozen the other.  I'd
 imagine your bat file would accept a single app-relative path and
 construct the rsync command line based on it, exactly the way your ANt
 script would accept the path as a property and construct the copy
 task from it.

 cheers,
 barneyb

 On Thu, Nov 20, 2008 at 11:01 AM, Dan Vega [EMAIL PROTECTED] wrote:
  Well here is the problem, our www folder has about 100 folders in it. I
 may
  make some changes to folder x and I just want to push folder x to test 
  production or just test. Should I not use ant for this? Just write bat
 for
  this?
 
 
  Thank You
  Dan Vega
  [EMAIL PROTECTED]
  http://www.danvega.org
 
 
  On Thu, Nov 20, 2008 at 1:49 PM, Barney Boisvert [EMAIL PROTECTED]
 wrote:
 
  Ant accepts properties on the command line that can be used to
  parameterize your script.  Though if all you're doing is replicating
  files, something like rsync and a simple shell script/BAT file might
  be easier.
 
  cheers,
  barneyb
 
  On Thu, Nov 20, 2008 at 8:45 AM, Dan Vega [EMAIL PROTECTED] wrote:
   In the current environment I am working on we have a dev/test/prod
 setup.
   Everything needs to be done in dev but not everything in dev gets
 moved.
   Only files that need to be reviewed get moved to test so the Test env
 is
  not
   always current. I am trying to come up with a solution that allows me
 to
   enter a file or dir and then select test/live/all to move file(s) or
   directories.
  
   For example I am using the input paramater. If I use the following
 build
   script It works great for moving files. I also know how to work with
   directories, my main question is how can I make it dynamic so if I
 enter
  a
   file or folder it knows to only push that?
  
   ?xml version=1.0 encoding=UTF-8?
   project default=test
  
  description.com build file/description
  
  input message=Target file or directory to copy: 
   addproperty=target/
  input message=Environment we are copying to:   addproperty=ENV
   defaultvalue=test validargs=test,live,all/
  
  property name=dev value=\\mydevcom /
  property name=test value=\\mytestcom /
  property name=live value=\\mylivecom /
  
   target name=test
   copy file=${target} todir=${test} verbose=true/
   /target
  
   target name=live
   copy file=${target} todir=${live} verbose=true/
   /target
  
  target name=all depends=test,live/
  
   /project
  
  
  
 
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ant build

2008-11-20 Thread Dan Vega
Thanks for the Reply -

Well I like the ANT approach but I have 1 main issue. I know how to use the
copy command in 3 different scenarios (single file,single file to a
directory, copy a dir). Based on 1 input though is there a way to know if
its a file or dir?

*Copy a single file*

 copy file=myfile.txt tofile=mycopy.txt/

*Copy a single file to a directory*

 copy file=myfile.txt todir=../some/other/dir/

*Copy a directory to another directory*

 copy todir=../new/dir
   fileset dir=src_dir/
 /copy

Dan


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315723
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Serializing Components

2008-11-13 Thread Dan Vega
I am giving a presentation on components tonight and I have a quick
question. I understand that the following code will serialize / deserialize
my component. Takes it and wraps up into a nice binary format (very compact)
and then at a later time I can unpack it. My question is outside of moving
info across clusters can anyone give me an example of where you would
actually use this? I have never had the need to use it so I would love to
hear from those who have! Thanks...

cfset person = CreateObject(component, Person)
cfset person.setFirstName(Dan)
cfset person.setLastName(Vega)

cfset fileOut = CreateObject(Java, java.io.FileOutputStream)
cfset fileOut.init(ExpandPath(serialized_cfc.txt))
cfset objOut = CreateObject(Java, java.io.ObjectOutputStream)

cfset objOut.init(fileOut)
cfset objOut.writeObject(person)
cfset objOut.close()

!---
cfset fileIn = CreateObject(java, java.io.FileInputStream)
cfset fileIn.init(ExpandPath(serialized_cfc.txt))
cfset objIn = CreateObject(java, java.io.ObjectInputStream)
cfset objIn.init(fileIn)
cfset newCFCInstance = objIn.readObject()
cfset objIn.close()

cfoutput#newCFCInstance.getFullName()#/cfoutput
---


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315196
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfexchange

2008-10-24 Thread Dan Vega
I am just starting to play around with cfexchange because I have not really
needed it up until now. I see its pretty easy to get a list of contacts
using the following code.

cfexchangeconnection action=open connection=myExchangeConnection
  server=*
  username=*
  password=* /

cfexchangecontact action=get name=myContacts
connection=myExchangeConnection /
cfexchangeconnection action=close connection=myExchangeConnection
/

cfdump var=#myContacts#

However I do not store any contacts locally. When I click to we have lists
of employees based on company, location and department. Is there anyone to
interact with these lists as it would be easier for me to grab all employees
at once. I don't know much about exchange so forgive my ignorance.


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314344
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 'Coldfusion' is undefined if using cflayout,cftree in cf8

2008-09-23 Thread Dan Vega
Deppender - Did you change the code to use ColdFusion (!Coldfusion) remember
that JS is case sensitive.

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Tue, Sep 23, 2008 at 1:46 AM, Dave Watts [EMAIL PROTECTED] wrote:

  yes i have the cfide configured as virtual directory. But it
  appears the template is picking up the concerned javascript

 I don't know what you mean by this.

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

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

 

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

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


Re: CF Module for Pay-Pal integration

2008-09-23 Thread Dan Vega
I have done a lot of Paypal integration so ping me if you need to.

http://cfpayflowpro.riaforge.org/

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Tue, Sep 23, 2008 at 3:32 PM, Raymond Camden [EMAIL PROTECTED] wrote:

 I'd suggest pinging the project owner. He may not have had a chance to
 upload it yet.


 On Tue, Sep 23, 2008 at 2:16 PM, Ian Rutherford
 [EMAIL PROTECTED] wrote:
  There's nothing there to download.



 -ray

 

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

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


Re: 'Coldfusion' is undefined if using cflayout,cftree in cf8

2008-09-19 Thread Dan Vega
I am pretty sure you need to use ColdFusion not Coldfusion

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Fri, Sep 19, 2008 at 1:11 AM, Deepender Singh 
[EMAIL PROTECTED] wrote:

 The same code that use cflayout(type border),cftree is working in developer
 addition of cf8 on my local machine.

 But when move to multiserver...its giving javascript error.
 'Coldfusion' is undefined

 i have my code in the cfide and cfdoc directory(cf_webroot).

 Is there is some issue with cfajx.js?


 

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

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


Re: debugging when invoking cfc's

2008-09-17 Thread Dan Vega
The problem is that you are trying to treat a complex object as a simple
value.

Take the following example. I am creating array that holds 2 values. If I
were to dump it everything would be fine but If I tried to output it like
below I would get the same error you are.

cfset skills = ArrayNew(1)
cfset arrayAppend(skills,ColdFusion)
cfset arrayAppend(skills,JavaScript)

cfoutput#skills#/cfoutput

This is because the compiler does not understand what you are trying to do.
If you want to see the string representation of this object you could always
use the toString() method.

cfoutput#skills.toString()#/cfoutput

Hope this clears it up a little.

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Wed, Sep 17, 2008 at 12:29 PM, Richard White [EMAIL PROTECTED] wrote:

 to provide more details... i have just got an error and it tells that
 complex error types cannot be converted to simple values... but gives me no
 clue as to what line of code it is talking about, so i am having to search
 through the code to find it

 thanks

  hi,
 
  i testing my cfc's by using the cfinvoke. and then if there is an
  error when running the cfc's then i have an exception handler to give
  me the details of the error
 
  however, although it gives me the details of the error it only
  provides me with the tag context until it hits the cfinvoke tag - any
  of the processing inside of the cfc's are not included in the tag
  context and therefore even though it may tell me i have an error with
  something it doesnt tell me what page and what line the error occured
 
  does anyone have a solution for this? not too sure if i have explaine
  this correctly but basically i want it to point me to the cfc function
  where the error occured and what line it occured on
 
  thanks
 
  richard


 

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

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


Re: Flex CFC Call Problem - Unable to invoke CFC - Could not find the ColdFusion Component or Interface

2008-09-16 Thread Dan Vega
Flex searches from the web root down. You should be able to point from the
web root down and invoke it using the url.

http://localhost/folder1/folder2/myservice.cfc?method=test

If you can not then it is not pointing to the right location of the cfc.

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Tue, Sep 16, 2008 at 2:55 PM, Matthew Dolloff [EMAIL PROTECTED]
 wrote:

 Hey all.  I'm really new to Flex and CF and I am having to get someone
 else's code running on my local machine (ie local apache, local mssql, local
 cf).  I can get the page to semi load but when I load it I get an error that
 says Unable to invoke CFC - Could not find the ColdFusion Component or
 Interface  I can't seem to figure out why the flex can't find the CFC.  The
 cfc file is two directories below the main html file but the code points
 down those 2 directories (folder1.folder2.myservice.cfc).  Any ideas what
 might be causing this error?  It's driving me absolutely nuts.

 Thanks,
 Matt

 

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

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


Re: Pre-filling FileField Values

2008-08-28 Thread Dan Vega
I would be interested in your use case for this. As everyone has already
pointed out this is a huge security risk but even from a user standpoint it
doesn't make sense to me why you would want to do this?


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Thu, Aug 28, 2008 at 1:46 PM, Claude Schneegans 
[EMAIL PROTECTED] wrote:

  and all they would need
 to do was submit the form.

 Not even, this could be done in an onload event ;-)

 

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

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


Re: putting in cffile

2008-08-28 Thread Dan Vega
This is extremely off topic but what is p with that email address Jessica!
ha :0


Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Thu, Aug 28, 2008 at 12:10 PM, Jessica Kennedy 
[EMAIL PROTECTED] wrote:

 THANK YOU!  That worked perfectly!

   I need to write a .csv file with all data encased in quotation marks,
  the problem is that cffile output uses double quotes to define the
  data to input.  How can I get around this??  Geez, i know it's got to
  be something easy...
 
  You can either double up on the double quotes in the string, or wrap
  the
  contents in single quotes instead of double quotes.  For example...
 
  cffile contents=This is some awesome text with quotes!
 
  cffile contents='This is some awesome text with quotes!'
 
  Another way would be to use CFSAVECONTENT...
 
  cfsavecontent variable=theOutputThis is some awesome text with
  quotes!/cfsavecontent
  cffile contents=#theOutput#
 
 
  -Justin Scott
 


 

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

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


Re: Pre-filling FileField Values

2008-08-28 Thread Dan Vega
I wrote a multi uploader in flex / cf. If you need the source I could
probably help you out.

http://cfmu.riaforge.org

Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


On Thu, Aug 28, 2008 at 3:03 PM, Ian Skinner [EMAIL PROTECTED] wrote:

 Rick Faircloth wrote:
  (If I understand it all with only a cursory review.)

 Just reading your posted description, this is a way to just create
 multiple file upload controls.  JavaScript can easily do this, I am
 unclear on what the benefit of making them all separate forms in iframes
 is, but I've done similar.

 What JavaScript can not do, as far as I know, is to populate those file
 controls with any predefined file names and paths.

 

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

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


Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Dan Vega
Firewall solution is another way, we block anything in the url with CAST( OR
EXEC(


Thank You
Dan


On Mon, Jul 21, 2008 at 8:08 PM, Dave Watts [EMAIL PROTECTED] wrote:

  We are going to be reading about this on all the tech rags
  like Info World and Zdnet tomorrow.

 It was in those a week or two ago, already. This is not new. Originally, it
 primarily targeted classic ASP apps. HP released a free vulnerability
 scanner called Scrawlr in response.

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

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

 

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

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


Re: cfloop using to much memory

2008-06-25 Thread Dan Vega
Are you using CF8 because they made many improvements to this very problem
in 8.

Dan


On Wed, Jun 25, 2008 at 9:17 PM, Sam Roach [EMAIL PROTECTED]
wrote:

 We are trying to create a CSV file with about 250,000 rows with about 40
 dynamic columns which we need to loop over so we can get the correct order.

 We see an issue coming from the nested loops on the large dataset and the
 server is running out of memory.   We took a step back on even doing a
 simple loop over over a large set of rows seems to have the same issues.
 Anyone have any ideas how to deal with this?

 If you run this code on watch the memory on the CF Server it will just keep
 climbing until garbage collection runs.

 cfset outsideloop = 2000

 cfloop from=1 to=#outsideloop# index=x
 /cfloop


 thanks,
 -- Sam


 

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

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


Re: Stupid cfgrid... Can some one help me out ?

2008-06-06 Thread Dan Vega
Just curious why you want this to be a flash grid? You  should be able to do
this with cf8 html grid.

Dan

On Fri, Jun 6, 2008 at 12:11 PM, Phill B [EMAIL PROTECTED] wrote:

 All I want to do is have a flash grid display a name and a check box.
 When the user clicks the check box, an onchange event is fired off and
 runs the appropriate cfc on the server. I found some pages in Google
 that, I thought, should me how to do this but now I can't find them.
 Little help here?

 --
 Phil

 

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

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


Re: CFID and CFTOKEN in the way

2008-04-12 Thread Dan Vega
When using cflocation you can set the attribute for addtoken=false

Dan

On Sat, Apr 12, 2008 at 1:02 PM, Les Mizzell [EMAIL PROTECTED] wrote:

 I have a client that's switching payment methods over to Barclay card
 for their site.

 I've gotten everything to work pretty well up to the last step. The page
 *submitting* the payment must be an approved url that's set in the
 Barclay Card store admin.

 It's got to be exactly the same every single time. So, no URL variables
 allowed. Period.

 The problem? CFID and CFTOKEN. Once somebody logs in:

 !--- If the username and password are correct ---
  cfif getLOGIN.recordCount eq 1
cfset SESSION.auth = structNew()
cfset SESSION.auth.isLoggedIn = Yes
cfset session.userID = #getLOGIN.cusnum#
 cflocation url=enroll_app1.cfm addtoken=no
 /cfif

 CFID and CFTOKEN persist across the entire site, and I'm simply haven't
 found a way to eliminate them so the site still works - but if they're
 present on my submitting URL, it no longer matches the approved url,
 and the payment submission fails.

 Ideas?

 

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

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


Re: cfgrid and text

2008-04-09 Thread Dan Vega
I actually just saw that someone came up with a hack to solve this.

http://www.dwmommy.com/?day=4/5/2008rss=true#blog623

Dan

On Wed, Apr 9, 2008 at 10:02 AM, Chad Gray [EMAIL PROTECTED] wrote:

 I am about ready to give up on CFGrid and switch back to a standard html
 table.  I just can't get it to do what I want.  I love the features it
 automatically provides like sorting, paging data and column re-arranging but
 it is a little too limiting.

 Right now I have a long paragraph of text and it gets chopped off in the
 field.

 Is there any way to get the text to word-wrap so the row height
 automatically expands to display all of the type?




 

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

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


Re: cfgrid column types

2008-04-03 Thread Dan Vega
Richard,
I wrote an article on using a combo box in the grid, hope this helps.

http://www.danvega.org/blog/index.cfm/2008/3/28/ColdFusion-8-Grid-Editor-Select-Menu

Dan

On Thu, Apr 3, 2008 at 1:46 PM, Richard White [EMAIL PROTECTED] wrote:

 Hi,

 is there a way to make html cfgrid columns checkbox columns or combobox
 columns etc... thanks

 i know it can be done if the cfgrid is in a flash format but we use the
 bind attribute and so it must be in html format

 thanks

 Richard

 

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

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


Re: cfgrid column types

2008-04-03 Thread Dan Vega
To create a checkbox just make sure the values are boolean values. I tested
it with 0/1 and it worked just fine. I am not sure about a multi select I
will have to look into that.

Dan

On Thu, Apr 3, 2008 at 2:44 PM, Richard White [EMAIL PROTECTED] wrote:

 Hi Dan

 that is fantastic and so easy :) we are very impressed, thanks very much

 do you have any ideas on how we could do the checkbox and a multi select
 combo box in the cfgrid too

 thanks very much again dan

 richard



 Richard,
 I wrote an article on using a combo box in the grid, hope this helps.
 
 
 http://www.danvega.org/blog/index.cfm/2008/3/28/ColdFusion-8-Grid-Editor-Select-Menu
 
 Dan
 
 On Thu, Apr 3, 2008 at 1:46 PM, Richard White [EMAIL PROTECTED] wrote:
 
 

 

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

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


regex values between

2008-04-01 Thread Dan Vega
I have a bunch of text that I need to pull values out of. Take for instance
the following string.

%@ attribute name=myName type=mytype required=false
description=mydescription %


Using regext how can I pull the value between
name,type,required,description?

name =
type =
etc...

I suck at regex so Im sure this is an easy one for most of you. Thanks!!!


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

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


Re: CF PayPal / PayFlowPro Integrations API version 4.xx

2008-03-27 Thread Dan Vega
Check this article out

http://www.bennadel.com/blog/1126-Testing-Credit-Card-Transactions-In-Payflow-Pro-Thanks-Dan-Vega-.htm

Dan


On Thu, Mar 27, 2008 at 2:55 PM, jonese [EMAIL PROTECTED] wrote:

 Anyone have any luck building code against the JAVA API for PayFlowPro
 since PayPal bought them Version 4.x of the API)?

 Please don't tell me to download the CFX tag as the code is uses is
 old and will not work sometime in 2009.

 I've got my code working AFAIK but keep getting an error:

 Failed to connect to host Input Server Uri=
 https://pilot-payflowpro.verisign.com:-1/transaction:443
 or
 Failed to connect to host Input Server Uri=
 https://pilot-payflowpro.verisign.com:443

 thanks in advance!
 Jonese

 

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

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


Re: Cgrid needs Java Runtime Environment while Windows XP doesnt have it by defalut.

2008-03-23 Thread Dan Vega
Make sure you use format=html. If you do not provide a format attribute it
defaults to applet.

   - applet - generates a java applet
   - flash - generates a flash grid control
   - html - generates an ajax based html grid control that supports data
   binding
   - xml - generates an xml representation of the grid


Dan

On Sun, Mar 23, 2008 at 8:35 AM, Ali [EMAIL PROTECTED] wrote:

 Hi: I was very excited when I tried using CFGRID cause it could make a
 very
 nice difference in my application but when I tested the page I saw FireFox
 returned an error and wanted JRE. Windows Vista seems to have it by
 default
 but Windows XP doesn't and still most of the users/customers use XP. Is
 there anyway to use CFGRID without the need of JRE?
 Thanks
 Ali


 

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

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


Re: Cgrid needs Java Runtime Environment while Windows XP doesnt have it by defalut.

2008-03-23 Thread Dan Vega
I wrote an article about that a couple of weeks ago, this should help.

http://www.danvega.org/blog/index.cfm/2008/3/12/Custom-Grid-Editor

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: Passing BIND values in CFGRID

2008-03-20 Thread Dan Vega
Is tablename an actual variable? What if you just passed it as a string
cfgrid  bind=cfc:grid.getData
(tablename,{cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})

If thats not the issue, where is it failing?

On Thu, Mar 20, 2008 at 6:08 PM, RobG [EMAIL PROTECTED] wrote:

 I have a cfc that I wrote, with two methods.  The first method creates
 a CFGRID, and the second method is called by the BIND attirbute in the
 CFGRID to retrieve its data.

 What I'm trying to do, basically, is pass a tablename and have a
 generic CGRID appear that displays all of the columns in the table.
 If the method I call from within the cfgrid's bind attribute is
 specific to the table, it works fine.  But when I try to pass a
 tablename and call a more generic method, it isn't working.  Here's
 the code:

 cfgrid  bind=cfc:grid.getData
 ({tablename},{cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})

 When I call the table-specific method, I don't pass {tablename} and
 things work fine.  But then I added {tablename}, and in the getData
 method, the value is coming through as NULL.  I tried changing it to
 {#tablename#} and it still comes through as NULL, but the variable
 becomes the name of the table instead of just tablename

 So... what am I doing wrong?  How do I take a regular variable,
 tablename in this case, and pass it through the BIND expression into
 the cfc?  Is it possible?

 Thanks!

 Rob

 

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

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


Re: Passing BIND values in CFGRID

2008-03-20 Thread Dan Vega
You sure about that Ray? I just ran this and it ran ok for me.

cfwindow initshow=true center=true
 width=430 height=340 title=Artists

cfform
   cfgrid name=artists format=html pagesize=10 striperows=yes
selectmode=edit delete=yes
bind=cfc:artists.getArtists
('one',{cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})
onchange=cfc:artists.editArtist
({cfgridaction},{cfgridrow},{cfgridchanged})
  cfgridcolumn name=is display=false /
  cfgridcolumn name=lastname header=Last Name width=100/
  cfgridcolumn name=firstname header=First Name width=100/
  cfgridcolumn name=email header=E-Mail width=200/
   /cfgrid
/cfform

/cfwindow


 cffunction name=getArtists access=remote returntype=struct
  cfargument name=test type=string required=true
  cfargument name=page type=numeric required=yes
  cfargument name=pageSize type=numeric required=yes
  cfargument name=gridsortcolumn type=string required=no
default=
  cfargument name=gridsortdir type=string required=no default=

  !--- Local variables ---
  cfset var artists=

  !--- Get data ---
  cfquery name=artists datasource=cfartgallery
  SELECT artistid, lastname, firstname, email
  FROM artists
  cfif ARGUMENTS.gridsortcolumn NEQ 
 and ARGUMENTS.gridsortdir NEQ 
 ORDER BY #ARGUMENTS.gridsortcolumn# #ARGUMENTS.gridsortdir#
  /cfif
  /cfquery

  !--- And return it as a grid structure ---
  cfreturn QueryConvertForGrid(artists,
 ARGUMENTS.page,
 ARGUMENTS.pageSize)
   /cffunction


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

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


Re: With CFDJ now dead, any other CF journals or mags?

2008-02-11 Thread Dan Vega
The cftalk mailing list is hosted by House of Fusion. They also produce the
Fusion Authority Quartly Update (FAQU). You absolutely need to check it out.
The magazine is great packed with tons of great content. I plan on writing a
more detailed review soon but I would check it out for sure.

Dan

On Feb 11, 2008 10:55 AM, Ian Worthington [EMAIL PROTECTED] wrote:

 I have just been informed by SYS-CON that ColdFusion Developers Journal
 (CFDJ) is no longer to be printed, and therefor is dead. I let our a deep
 sigh upon reading that email.

 With it being next fiscal year budget planning time, I'm looking for a
 subscription for nine in-house developers that's as good as CFDJ for my
 developers.

 Any one have any suggestions?

 Cheers,

 Ian

 

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

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


Re: CF Blog Software

2008-02-01 Thread Dan Vega
BlogCFC is flat out awesome! I have been running it since day 1 and have not
looked back.

http://blogcfc.riaforge.org/

Dan Vega
http://www.danvega.org/blog/

On Feb 1, 2008 12:58 PM, Robert Harrison [EMAIL PROTECTED] wrote:

 Does anyone know of any good CF blog site software products. I need to put
 up a blogging site for a client.

  BTW - I did search it first, but my results kept getting filled with CF
 blogs, blogs about CF, etc.

 Thanks

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

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




 

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

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


Re: CF Blog Software

2008-02-01 Thread Dan Vega
@Andy -
Its not whats on the outside that counts! haha.. j/k

Dan

On Feb 1, 2008 1:56 PM, Andy Matthews [EMAIL PROTECTED] wrote:

 You might also look into Mango blog. The user interface in the admin area
 is
 far more friendly and appealing than BlogCFC. I'm sure they both do the
 same
 things, but Mango blog just looks a little easier to use.

 -Original Message-
 From: Robert Harrison [mailto:[EMAIL PROTECTED]
 Sent: Friday, February 01, 2008 11:59 AM
 To: CF-Talk
 Subject: CF Blog Software

 Does anyone know of any good CF blog site software products. I need to put
 up a blogging site for a client.

  BTW - I did search it first, but my results kept getting filled with
  CF
 blogs, blogs about CF, etc.

 Thanks

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

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






 

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

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


Re: Ant Subversion

2008-01-19 Thread Dan Vega
Thanks guys! Andy, your solution was right on. I was not sure if I had to
checkout the latest version 1st or not but this works just fine.

Thanks

On Jan 18, 2008 7:51 PM, Qasim Rasheed [EMAIL PROTECTED] wrote:

 Dan

 The error indicate that SVN jar files aren't being located by your build
 file. I usualy place those under ANTINSTALLATION/lib so that any project
 can
 use it.

 Thanks

 Qasim

 On Jan 18, 2008 5:30 PM, Andrew Scott [EMAIL PROTECTED] wrote:

  If it was me I would use ants built in zipping feature, and place it
  in the build.xml file. The added overhead to svn to that is overkill
  and unecessary overhead.
 
 
 
 
  On 1/19/08, Dan Vega [EMAIL PROTECTED] wrote:
   Today I was trying to setup svnant and subversion. I basically want to
  be
   able to create a zip file of a project anytime I want one. I was
 reading
  a
   good article today here
  
  
 
 http://www.phillnacelli.net/blog/index.cfm/2007/1/28/ANT-Builds-and-Subversion-SVN
  
   The problem Is I could not get it to work and kept getting the
 following
   error.
  
   I keep getting the error Could not load definitions from resource
   svntask.properties. It could not be found.
  
   Anyone use svnant know why this could be happening?
  
  
   Dan
  
  
  
 
 

 

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

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


Ant Subversion

2008-01-18 Thread Dan Vega
Today I was trying to setup svnant and subversion. I basically want to be
able to create a zip file of a project anytime I want one. I was reading a
good article today here

http://www.phillnacelli.net/blog/index.cfm/2007/1/28/ANT-Builds-and-Subversion-SVN

The problem Is I could not get it to work and kept getting the following
error.

I keep getting the error Could not load definitions from resource
svntask.properties. It could not be found.

Anyone use svnant know why this could be happening?


Dan


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

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


Re: CF Bug Tracker

2008-01-11 Thread Dan Vega
You could use another bug tracking system...  but if you value your life I
wouldnt!

Always check riaforge first!

Dan

On Jan 11, 2008 12:23 PM, Raymond Camden [EMAIL PROTECTED] wrote:

 No, Lighthouse is the only CF bug tracker and you must use it. It's in
 your CF license. Along with using BlogCFC for all blogs.

 (Ok, maybe I'm not 100% in the area known as accurate. ;)

 Sorry for the noise, I'll stop now.

 On Jan 11, 2008 10:52 AM, Mallory Woods [EMAIL PROTECTED] wrote:
  Wow! Lots of people like Lighthouse. I will look into that and install
 it
  today. Any others?
 
  On Jan 11, 2008 11:49 AM, Crow T. Robot [EMAIL PROTECTED]
 wrote:
 
   http://lighthousepro.riaforge.org/
  
   Lighthouse, awesome bug tracker, simple to use/install.  We use it
   exten

 --

 ===
 Raymond Camden, Camden Media

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

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

 

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

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


Re: [NEWS] Dan Vega's New CFWindow Tag on Ajaxian.com

2008-01-08 Thread Dan Vega
Good feedback guys. Andy I know that size is always an issue and right now I
a pulling in the entire css of ext (ext-all.css) which I will slim down when
i get a stable release ready. Also I am sure there is a way to pack the
already packed js. I used the ext build your own to try and include just the
libs needed but there may be room for improvement. I tend to agree if you
just needed it to popup some text might be overkill but I will have to wait
and see what others use it for.

Dan

On Jan 8, 2008 9:41 AM, Andy Matthews [EMAIL PROTECTED] wrote:

 Good point. Thanks for mentioning that Todd.

 -Original Message-
 From: Todd [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 08, 2008 8:38 AM
 To: CF-Talk
 Subject: Re: [NEWS] Dan Vega's New CFWindow Tag on Ajaxian.com

 This is using the Ext 2.0 framework, which is something CF8 doesn't have.
 Plus, in theory, you can run this on CF7.

 On Jan 8, 2008 9:28 AM, Andy Matthews [EMAIL PROTECTED] wrote:

  While I respect the work that he put into this tag, doesn't CF already
  have cfwindow?
 
  Also, the amount of code needed for even the most basic example:
  http://www.danvega.org/examples/cfwindow/basic.cfm
 
  is 336kb. I cringe at the thought of people who just want a simple
  modal window using this tag. Oh the poor users having to download an
  additional 336k just to see a pretty modal window.
 
  Obviously if you're using this as part of a larger app, then it's not
  as big a deal.
 
 
  andy
 




 

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

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


Re: [NEWS] Dan Vega's New CFWindow Tag on Ajaxian.com

2008-01-08 Thread Dan Vega
I think there is an easy solution that will just take a little more work on
my end. If all you want to do is create a basic window then just include
what is needed, but if you want to be able to resize it, drag it, have it
modal and load external files using ajax then include those libraries as
well. I will get the size down, first I want to focus on functionality and
then I will turn my attention to that. On a side note, a friend suggested
that cfwindow is a bad name and I agree. I may start referring to it as
cf_window but keep the url at riaforge. Thanks for your input guys!

Dan

On Jan 8, 2008 10:25 AM, Cutter (CFRelated) [EMAIL PROTECTED]
wrote:

 Great work Dan! This is always a big argument in some circles, the size
 issue. It's a trade off that has to be weighed in any application
 development. If your users are known to be primarily on broadband, then
 it's not as much of an issue, especially since browsers have caching
 turned on by default (something developers typically turn off, leave
 off, and forget that users don't share that experience).

 I love the JQuery components, which will be much more uniform when UI is
 officially released in a few weeks, but ExtJS has a much larger (and
 sweeter) component library that is completely uniform, very tight, and
 it doesn't hurt that it looks just like the CF8 Ajax components. For a
 large application, where you will have many different interfaces, ExtJS
 definitely gives you an extremely extensive framework to work with.

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer
 _
 http://blog.cutterscrossing.com

 Dan Vega wrote:
  Good feedback guys. Andy I know that size is always an issue and right
 now I
  a pulling in the entire css of ext (ext-all.css) which I will slim down
 when
  i get a stable release ready. Also I am sure there is a way to pack the
  already packed js. I used the ext build your own to try and include just
 the
  libs needed but there may be room for improvement. I tend to agree if
 you
  just needed it to popup some text might be overkill but I will have to
 wait
  and see what others use it for.
 
  Dan
 
  On Jan 8, 2008 9:41 AM, Andy Matthews [EMAIL PROTECTED] wrote:
 
  Good point. Thanks for mentioning that Todd.
 
  -Original Message-
  From: Todd [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, January 08, 2008 8:38 AM
  To: CF-Talk
  Subject: Re: [NEWS] Dan Vega's New CFWindow Tag on Ajaxian.com
 
  This is using the Ext 2.0 framework, which is something CF8 doesn't
 have.
  Plus, in theory, you can run this on CF7.
 
  On Jan 8, 2008 9:28 AM, Andy Matthews [EMAIL PROTECTED] wrote:
 
  While I respect the work that he put into this tag, doesn't CF already
  have cfwindow?
 
  Also, the amount of code needed for even the most basic example:
  http://www.danvega.org/examples/cfwindow/basic.cfm
 
  is 336kb. I cringe at the thought of people who just want a simple
  modal window using this tag. Oh the poor users having to download an
  additional 336k just to see a pretty modal window.
 
  Obviously if you're using this as part of a larger app, then it's not
  as big a deal.
 
 
  andy
 
 
 
 
 
 
 

 

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

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


Re: Adobe ColdFusion IDE survey

2008-01-08 Thread Dan Vega
I am not sure why they would build an IDE on eclipse when we already have
one. Actually I don't see why anyone uses anything but cfeclipse but thats
just me :)

Dan

On Jan 8, 2008 12:21 PM, Brian Kotek [EMAIL PROTECTED] wrote:

 I'd agree. Given everything that Eclipse offers, like SVN integration,
 Trac
 integration, ANT integration, and editors for everything under the sun, I
 think it would be completely insane for them to use anything else to build
 a
 CF IDE.

 On Jan 8, 2008 11:49 AM, Rick Faircloth [EMAIL PROTECTED] wrote:

 
 
  I agree with you, Rich.  We are much better off having a community of
  developers
  working towards providing features that are needed as plug-ins to suit
 the
  various
  developer's styles.
 
  Adobe, in a self-contained product, would have a very difficult time, if
  not impossible,
  creating an IDE that could be all-things to all-people.  At the end of
 the
  day, Adobe,
  is only going to produce what is going to make money, not what is
  necessarily best for
  the community.  On the other hand, developers tend to develop what is
 best
  for the community,
  certainly without concern for monetary gain from the product, as is
  witnessed by the
  extensive amount of work Mark has put into CFEclipse.
 
  A base program, such as CFEclipse with developer created plug-ins is the
  way to go.
  If there a problem with a developer maintained environment, the problems
  tend to get
  solved very quickly.  If there's a problem or feature lacking in a
 program
  maintained
  and enhanced only by a company, then the problem or feature may not be
  addressed for
  a year or more, or at least until the next major release comes out.
   (Translated We'll
  solve that problem or add that feature, but we're going to make sure you
  pay for it...)
 
  Rick
 
 
 


 

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

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


Re: CF and Spry

2008-01-05 Thread Dan Vega
Isaac.
First off if you already don't know about it I would check out firebug as it
lets you monitor requests. I think your only problem here is that your
looking for json and your cfc is returning wddx. If you do not set a return
format then it will return wddx. Simply add this to your component.

returnFormat=json


This of course can only only be done if your on ColdFusion 8, if you are not
that you will need to you some kind of proxy between you calling template
and the cfc.


Hope this works!~
Dan Vega
www.danvega.org


On Jan 5, 2008 8:00 AM, AJ Mercer [EMAIL PROTECTED] wrote:

 it may have something to do with casing - javascript is case sensitive

 On Jan 5, 2008 4:17 PM, Issac Rosa [EMAIL PROTECTED] wrote:

  Can someone see why the detailregion is not updating when using
  Spry.Data.JSONDataSet?  If I use Spry.Data.XMLDataSet, the detailregion
  updates fine when I click a row.  I am getting the resultset fine.  Here
 is
  my code.
 
  index.html:
  !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
  http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
  html xmlns=http://www.w3.org/1999/xhtml;
  head
  meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 
  head
  titleSpry Dynamic Example 4/title
  script type=text/javascript
  src=/CFIDE/scripts/ajax/spry/includes/xpath.js/script
  script type=text/javascript
  src=/CFIDE/scripts/ajax/spry/includes/SpryData.js/script
  script type=text/javascript
  src=/CFIDE/scripts/ajax/spry/includes/SpryJSONDataSet.js/script
 
  script type=text/javascript
  var mydata = new Spry.Data.JSONDataSet(product.cfc
 
 ?method=getProductsreturnFormat=jsonqueryFormat=column,{path:DATA,pathIsObjectOfArrays:true});
  /script
  /head
 
  body
 
  style
  ..hot {
 background-color: yellow;
  }
 
  ..red {
 background-color: red;
  }
 
  /style
 
  div spry:region=mydata
  p
  table width=100% border=1
 tr
 th onClick=mydata.sort('prod_name','toggle');
  style=cursor: pointer;Name/th
 th onClick=mydata.sort('cat_name','toggle');
  style=cursor: pointer;Category/th
 /tr
 tr spry:repeat=mydata spry:setrow=mydata spry:select=red
  spry:hover=hot
 td style=cursor: pointer;{PROD_NAME}/td
 td style=cursor: pointer;{CAT_NAME}/td
 /tr
  /table
  /p
  /div
 
  div spry:detailregion=mydata
  h2{PROD_NAME}/h2
  /div
 
  /body
  /html
 
  products.cfc:
  cfcomponent output=false
  cffunction name=getProducts returnType=query access=remote
  output=false
 cfset var q = 
 cfquery name=q datasource=spry
 select  *
 fromproducts_view
 order by prod_name asc
 /cfquery
 cfreturn q
  /cffunction
  /cfcomponent
 
 
  Thanks,
  Issac
 
 

 

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

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


Re: CF and Spry

2008-01-05 Thread Dan Vega
Isaac.
First off if you already don't know about it I would check out firebug as it
lets you monitor requests. I think your only problem here is that your
looking for json and your cfc is returning wddx. If you do not set a return
format then it will return wddx. Simply add this to your component.

returnFormat=json


This of course can only only be done if your on ColdFusion 8, if you are not
that you will need to you some kind of proxy between you calling template
and the cfc.


Hope this works!~
Dan Vega
www.danvega.org


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

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


Re: Whitespace from seemingly nowhere, what am I missing?!

2008-01-05 Thread Dan Vega
Do you have the component set to suppress whitespace?

cfcomponent output=false
  cffunction name=what output=false

I am pretty sure you only need to do it at the component level but if it was
set to true there you could control it on a per function basis as well

Dan


On Jan 5, 2008 5:11 PM, Dominic Watson [EMAIL PROTECTED]
wrote:

 Using CF8  CF7, when directly outputting the result of a function or
 method
 call, I see whitespace (it is actually some sort of special character)
 before the string. If I place the result in a variable and then output it,
 I
 don't see the whitespace... I'm assuming people must have come across this
 before, the following code demonstrates the problem:

 Example 1:
 

 cffunction name=silly
 cfreturn billy
 /cffunction

 cfoutput=#Silly()#=/cfoutput

 Output: = billy=

 Example 2:
 

 cffunction name=silly
 cfreturn billy
 /cffunction

 cfset foo = Silly()

 cfoutput=#foo#=/cfoutput

 Output: =billy=
 Anyone have any clues as to why this happens and what to do about it?

 Thanks in advance, Dominic

 --
 Blog it up: http://fusion.dominicwatson.co.uk


 

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

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


Re: Flex to CF using Mapping

2008-01-02 Thread Dan Vega
Dale,
Flash remoting needs to be turned on and you need to have a channel setup in
remoting config. Look at the file below and check out the adobe devnet at
http://www.adobe.com/devnet/flex/flex_cf.html

WEB-INF/flex/remoting-confi.xml

?xml version=1.0 encoding=UTF-8?
service id=remoting-service
class=flex.messaging.services.RemotingService
messageTypes=flex.messaging.messages.RemotingMessage

adapters
adapter-definition id=cf-object class=
coldfusion.flash.messaging.ColdFusionAdapter default=true/
adapter-definition id=java-object class=
flex.messaging.services.remoting.adapters.JavaAdapter/
/adapters

default-channels
channel ref=my-cfamf/
/default-channels

destination id=ColdFusion
channels
channel ref=my-cfamf/
/channels
properties
source*/source
!-- define the resolution rules and access level of the cfc
being invoked --
access
!-- Use the ColdFusion mappings to find CFCs, by default
only CFC files under your webroot can be found. --
use-mappingsfalse/use-mappings
!-- allow public and remote or just remote methods to
be invoked --
method-access-levelremote/method-access-level
/access

property-case
!-- cfc property names --
force-cfc-lowercasefalse/force-cfc-lowercase
!-- Query column names --
force-query-lowercasefalse/force-query-lowercase
!-- struct keys --
force-struct-lowercasefalse/force-struct-lowercase
/property-case
/properties
/destination

/service

On Jan 1, 2008 8:57 PM, Dale Fraser [EMAIL PROTECTED] wrote:

 I have done this before but can't get it to work this time (first time
 with
 CF8).



 I am using Flex to connect to CFC's via mapping. I have enabled mapping
 use
 in the XML and restarted the server but I get this error.



 [RPC Fault faultString=[MessagingError message='Destination 'ColdFusion'
 either does not exist or the destination has no channels defined (and the
 application does not define any default channels.)']
 faultCode=InvokeFailed faultDetail=Couldn't establish a connection to
 'ColdFusion']

 at
 mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::invoke
 ()

 [E:\dev\flex_3_beta3\sdk\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.
 as:264]

 at

 mx.rpc.remoting.mxml::Operation/http://www.adobe.com/2006/flex/mx/internal::

 invoke()[E:\dev\flex_3_beta3\sdk\frameworks\projects\rpc\src\mx\rpc\remoting
 \mxml\Operation.as:204]

 at
 mx.rpc.remoting::Operation/send
 ()[E:\dev\flex_3_beta3\sdk\frameworks\project
 s\rpc\src\mx\rpc\remoting\Operation.as:120]

 at Function/http://adobe.com/AS3/2006/builtin::apply()

 at
 mx.rpc.remoting.mxml::Operation/send
 ()[E:\dev\flex_3_beta3\sdk\frameworks\pr
 ojects\rpc\src\mx\rpc\remoting\mxml\Operation.as:177]

 at Function/http://adobe.com/AS3/2006/builtin::apply()

 at

 mx.rpc::AbstractService/http://www.adobe.com/2006/actionscript/flash/proxy::

 callProperty()[E:\dev\flex_3_beta3\sdk\frameworks\projects\rpc\src\mx\rpc\Ab
 stractService.as:292]

 at
 DataGrid1/___DataGrid1_Button1_click()[F:\DataGrid1\src\DataGrid1.mxml:17]





 It seems to be asking for a Channel, but I want to using a mapping and not
 define channels.



 Regards

 Dale Fraser



 http://learncf.com







 

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

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


Re: Flex to CF using Mapping

2008-01-02 Thread Dan Vega
  Dale,
Flash remoting needs to be turned on and you need to have a channel setup in
remoting config. Look at the file below and check out the adobe devnet at
http://www.adobe.com/devnet/flex/flex_cf.html

*WEB-INF/flex/remoting-config.xml*

   default-channels
   channel ref=my-cfamf/
   /default-channels

   destination id=ColdFusion
   channels
   channel ref=my-cfamf/
   /channels
   properties
   source*/source
   !-- define the resolution rules and access level of the cfc
being invoked --
   access
   !-- Use the ColdFusion mappings to find CFCs, by default
only CFC files under your webroot can be found. --
   use-mappingsfalse/use-mappings
   !-- allow public and remote or just remote methods to
be invoked --
   method-access-levelremote/method-access-level
   /access


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

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


Re: regular expressions

2007-12-28 Thread Dan Vega
I know some regex people are going to jump all over this but I really don't
know regex.. Try this on 8 with a html page in the same directory, It will
give you an array of structures with information about the images in a html
document.

html
head
titleRegEx PlayGround/title
/head

body

!--- read the html file ---
cffile action=read file=#expandPath('homepage.html')#
variable=htmldoc
!--- return an array of image tags ---
cfset images = REMatchNoCase(img[^]*/, htmldoc)

cfset files = arrayNew(1)
cfloop array=#images# index=i
cfset imgpath = REMatchNoCase(.*, i)
cfset imgpath = replace(imgpath[1],,,all)
cfset tmp = structNew()
cfset tmp.path = imgpath
cfset tmp.filename = listLast(imgpath,/)
cfset tmp.fileExtension = right(imgpath,3)
cfset tmp.filetype = image
cfset arrayAppend(files,tmp)
/cfloop

cfdump var=#files#

/body
/html

On Dec 28, 2007 6:33 PM, Claude Schneegans [EMAIL PROTECTED]
wrote:

  any other ideas

 Don't ask me ;-)

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

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

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


Re: CFGRID for CF8 with date mask not working?

2007-11-15 Thread Dan Vega
You are not doing anything wrong. I am pretty sure that the mask is for
flash grid only.

Dan

On Nov 15, 2007 5:20 PM, Michael Grove [EMAIL PROTECTED] wrote:


 Help...

 I have tried and tried to get this date mask to work with no luck what so
 ever.
 The grid works with a couple of quirks but the dates always show as
 2007-05-01 00:00:00

 What am I doing wrong here. Also can not get the page part to show-up.

 cfform action=wiz_banners.cfm method=post name=test preloader=no
 format=html
 cfgrid name=data query=RPTbanners bindonload=true appendkey=yes
 gridlines=yes rowheaderalign=center colheaderalign=center
 selectmode=column enabled=yes format=html pagesize=5
 preservepageonsort=false
 cfgridcolumn name=advertiser header=Advertiser
 cfgridcolumn name=bannertype header=Type
 cfgridcolumn name=clicks header=Clicks
 cfgridcolumn name=views header=Views
 cfgridcolumn name=startdate header=Start Date mask=mm/dd/
 cfgridcolumn name=enddate header=End Date mask=mm/dd/
 /cfgrid
 /cfform


 

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

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


cfgrid showing number of records

2007-11-10 Thread Dan Vega
I am just playing around with cfgrid and I have a paging example setup just
great. The only thing is my client would like to see stats for where they
are paging such as

Showing 1-10 of 2000 records.

In all of the extjs examples this is possible I am just wondering if there
is anyway for me to accomplish this.

-- 
Thank You
Dan


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

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


cfsprydataset JSON question

2007-11-09 Thread Dan Vega
I am playing around with the new cfsprydataset tag and I have hit a wall. I
am a bit of a spry newb as well so that could be my problem. The following
code works great and via firebug i can see the returned data (see below) but
nothing gets generated. What am i doing wrong?

cfmodule template=layout.cfm title=Contacts / List All Contacts
subnav=contact

script
Spry.Data.Region.debug = true;
/script

cfsprydataset name=dsContacts bind=cfc:
com.myproject.contacts.getContacts() type=json/

div id=mydata spry:region=dsContacts
table
tr spry:repeat=dsContacts
td{fname}/td
td{lname}/td
/tr
/table
/div

/cfmodule


RETURNED JSON

{COLUMNS:[FNAME,LNAME],DATA:[[Karen *,Pfeiffer,
ASID],[Jeff,S],[Brenda

,n],[James,*r,
ASID],[Bill,*s],[Harry,*],[.,.],[.,.],[Bob

,.],[.,.],[.,.],[.,.],[Rick,Ho***s],[.,.],[y,.],[.,.],[.,.],[

..,.],[.,.],[Al,***]]}



-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: cfsprydataset JSON question

2007-11-09 Thread Dan Vega
That didnt do it, good try though, thanks!

Dan

On Nov 9, 2007 8:02 PM, Steve Milburn [EMAIL PROTECTED] wrote:

 It looks like the field names being returned are in all-caps, and the your
 bindings are not. Try to capitalize your bindings in your spry output, ie
 {FNAME} and {LNAME}.
 Steve
 -Original Message-
 From: Dan Vega [EMAIL PROTECTED]
 Sent 11/9/2007 6:45:30 PM
 To: CF-Talk cf-talk@houseoffusion.com
 Subject: cfsprydataset  JSON questionI am playing around with the new
 cfsprydataset tag and I have hit a wall. I
 am a bit of a spry newb as well so that could be my problem. The following
 code works great and via firebug i can see the returned data (see below)
 but
 nothing gets generated. What am i doing wrong?
 cfmodule template=layout.cfm title=Contacts / List All Contacts
 subnav=contact
 script
 Spry.Data.Region.debug = true;
 /script
 cfsprydataset name=dsContacts bind=cfc:
 com.myproject.contacts.getContacts() type=json/
 div id=mydata spry:region=dsContacts
 table
 tr spry:repeat=dsContacts
 td{fname}/td
 td{lname}/td
 /tr
 /table
 /div
 /cfmodule
 RETURNED JSON
 {COLUMNS:[FNAME,LNAME],DATA:[[Karen *,Pfeiffer,
 ASID],[Jeff,S],[Brenda
 ,n],[James,*r,
 ASID],[Bill,*s],[Harry,*],[.,.],[.,.],[Bob

 ,.],[.,.],[.,.],[.,.],[Rick,Ho***s],[.,.],[y,.],[.,.],[.,.],[
 ...,.],[.,.],[Al,***]]}
 --
 Thank You
 Dan Vega
 [EMAIL PROTECTED]://www.danvega.org


 

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

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


cfdocument rendering very slowly

2007-11-02 Thread Dan Vega
We are experiencing a very strange problem today. For the longest time we
have reports rendering as a pdf via the cfdocument tag. As of yesterday it
started taking forever to render (up to 5 minutes). At first I thought maybe
there was just a bottleneck in the code somewhere. The simple way to
disprove that theory was to remove the cfdocument tag and see how long it
would take to render, the page rendered in a matter of a second. We have
restarted the server as well as applied some updates to the 7.02 hot fix.
The cfdocument will just no longer function properly. Does anyone know what
might be happening or anything I am forgetting to search?

-- 
Thank You
Dan


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

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


Re: cfx_payflowpro

2007-10-29 Thread Dan Vega
Sean,
Thanks for the response. I just took a look and here is the java version
diff

current
1.6.0_03

mx6
1.6.0_02

On 10/28/07, Sean Corfield [EMAIL PROTECTED] wrote:

 On 10/28/07, Dan Vega [EMAIL PROTECTED] wrote:
  I have done some searching around and have yet to find an answer. I
 upgraded
  a server to CF7 and our cfx_payflowpro tag no longer works.

 Could it be a Java version compatibilty issue? What JVM were you
 running on before CF7 and what JVM are you running now?

 Are you using certificate security or signature security?
 --
 Sean A Corfield -- (904) 302-SEAN
 An Architect's View -- http://corfield.org/

 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwood

 

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

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


cfx_payflowpro

2007-10-28 Thread Dan Vega
I have done some searching around and have yet to find an answer. I upgraded
a server to CF7 and our cfx_payflowpro tag no longer works. I saw others
with the same problem but can't seem to find a resolution. The error is
below, any help is appreciated.


500 com/Verisign/payment/PFProAPI com/Verisign/payment/PFProAPI

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


cfajaxproxy

2007-10-27 Thread Dan Vega
I have an application that uses cfajaxproxy. On my local machine it works
great but on hostmysite I see an error in firebug that says ColdFusion is
not defined. Do i need to import the tag? If so do i need to contact them to
find the location of the scripts folder?

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: PAYPAL PRO CFC

2007-10-25 Thread Dan Vega
What code? If you are talking about payflow pro on riaforge I am the creator
and would be happy to help, just email me back.

On 10/25/07, Elliott Kayne [EMAIL PROTECTED] wrote:

 I need someone who has working knowledge of PAYPAL PRO and PAYPAL's CFC
 code.  If you do please contact me at 570-686-2300 or [EMAIL PROTECTED]

 

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

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


no such binding error

2007-10-24 Thread Dan Vega
Has anyone ever gone to a cf site and seen No Such Binding? It does not
happen server wide but it seems to happen to many sites at once randomly. In
my application I am loading configuration from a database. To correct the
problem I simply go into my admin and verify all connections under
datasources and that seems to fix the problem. I really don't think this is
a coding issue but I can't seem to figure out how to fix it or at least how
to notify us so that our customers are not down.Below is the stack trace
from exception log.

Error,jrpp-200,10/24/07,11:47:21,ApplicationName,No such binding:
ApplicationName The specific sequence of files included or processed is:
E:\www\appname\index.cfm 
coldfusion.server.ServiceRuntimeException: No such binding: ApplicationName
at coldfusion.server.jrun4.SqlExecutive.getDataSource(SqlExecutive.java
:149)
at coldfusion.sql.Executive.getDatasource(Executive.java:464)
at coldfusion.sql.DataSrcImpl.validate(DataSrcImpl.java:64)
at coldfusion.sql.SqlImpl.validate(SqlImpl.java:200)
at coldfusion.tagext.sql.QueryTag.doStartTag(QueryTag.java:397)
at cfApplication2ecfm272758846.runPage
(E:\www\appname\Application.cfm:19)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(
ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java
:249)
at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java
:527)
at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(
JRunProxyService.java:192)
at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(
ThreadPool.java:348)
at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(
ThreadPool.java:451)
at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(
ThreadPool.java:294)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


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

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


cfwebstore ups rates table

2007-10-23 Thread Dan Vega
I am looking for anyone who has used the cfwebstore software before. I have
a client who is using a very old version (3.1) and needs to update the
shipping rates table. The tables are organized by service. For example there
is a next day air table called UPS_1da and has the following fields. I need
to find a way to update these rates for my client. Any help into this
problem would be great.

Weight:number
Zone102:currency
Zone103:currency
Zone104:currency
Zone105:currency
Zone106:currency
Zone107:currency
Zone108:currency
Zone124:currency
Zone125:currency
Zone126:currency


-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: Forums?

2007-09-19 Thread Dan Vega
Justin,
If you are ever looking for open source projects your first search should
always be RIAForge, then from there you can start searching other avenues.

http://www.riaforge.org

Dan

On 9/19/07, Justin Scott [EMAIL PROTECTED] wrote:

  Damn it took way too long for someone to bring up CFMBB =)
 
  CFMBB is actually based on Ray's Galleon, which was a great
  base, but the goal of the CFMBB project is to integrate
  many more of the phpBB features that make phpBB so popular.
  .. including BBML/BBCode, private messages, signatures, etc.

 Thanks, I have it implemented at http://forums.editdns.net/ now.  Thanks
 to everyone who made suggestions on the forums apps.


 -Justin Scott

 

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

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


Re: date and ms sql

2007-09-19 Thread Dan Vega
You can use the null attribute of the cfqueryparam tag like so

INSERT INTO contact
(dob)
VALUES
(
cfqueryparam value=#arguments.dob# null=#not len(arguments.dob)#
)

On 9/19/07, Chad Gray [EMAIL PROTECTED] wrote:

 I have a form that asks for a date.

 If no date is entered into the form what gets inserted into the database
 is 01/01/1900.

 How do I get the database to have NULL or blank and not this date
 01/01/1900?

 I don't know if it is best to try to fix this on the database side or
 write cfif's to see if the form variables is blank.

 Thanks!


 

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

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


Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
Bruce,
Are you sure that you are not caching the components in the application
scope? I find that sometime I forget to re instantiate my components when I
add new methods to them.

Dan

On 9/13/07, Bruce Sorge [EMAIL PROTECTED] wrote:

 I have CFC's that I am using throughout our districts web site and they
 are
 all working fine except one. I keep getting the error message that a
 method
 cannot be found in the CFC, but the method is there. All works fine on my
 dev machine. It is when I put it all on my test machine that it does not
 work.  And it is only certain methods in this component. There are other
 methods on this component that are working fine. Any suggestions?
 Everything
 worked fine a couple of days ago.



 Thanks,



 Bruce







 

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

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


Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
If you dump the component do you the method? Is it just private and
inaccessible?

Dan


On 9/13/07, Bruce Sorge [EMAIL PROTECTED] wrote:

 No I am not. And the methods that cannot be found were written last
 Thursday. I just moved everything to the test server yesterday and
 remembered that I did not check out the specific school sites that I am
 looking at today. I just find it strange that some of the methods are
 accessible but others on the same page, written on the same day are not.
 Strange indeed.

 Bruce
 -Original Message-
 From: Dan Vega
 Sent: Thursday, September 13, 2007 11:00 AM
 To: CF-Talk
 Subject: Re: Getting error message on one page only

 Bruce,
 Are you sure that you are not caching the components in the application
 scope? I find that sometime I forget to re instantiate my components when
 I
 add new methods to them.

 Dan


 

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

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


Re: Java Script Value to CF Value

2007-09-04 Thread Dan Vega
Robert,
Look at the docs for toScript(), this function will help you out.

Dan

On 9/4/07, Robert Harrison [EMAIL PROTECTED] wrote:

 I have a value I'm retrieving from Java Script.  I need to set it to a CF
 value. What is the correct syntax. Below does not work, but it makes the
 point on what I'm trying to do. How do I do this correctly?



 cfset wide=script
 language='javascript'document.write(document.images[0].height)/script



 Thanks,





 Robert B. Harrison
 Director of Interactive services
 Austin  Williams
 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
 T : 631.231.6600 Ext. 119

 F : 631.434.7022
 www.austin-williams.com

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



 

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

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


fckeditor custom folders

2007-08-24 Thread Dan Vega
Does anyone know of an easy way to create custom folders for fckeditor? For
example the default image folder is

/Image

Default file folder
/File

Is there no easy way to customize these folders? my default image folder
should be images/images my default file folder should be /documents.

I have been searching around but it looks like there is no easy way to do
this without hacking away at the file manager templates.



-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


xml closing an empty tag

2007-08-23 Thread Dan Vega
I have an xml file that I am trying to parse and if there is no data for an
element the file has an empty closing tag like so.


address2/
foo1/
foo2/

When I try to parse the xml file I get the following error.
  An error occured while Parsing an XML document. I thought this was valid
xml?

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: xml closing an empty tag

2007-08-23 Thread Dan Vega
Sorry, i thought thats what was causing the error, it appears there was a
tag with a non case matching end tag.

Thanks!

On 8/23/07, Brad Wood [EMAIL PROTECTED] wrote:

 If that is the entire document, there is no root node.

 Valid might look like this:

 bar
 address2/
 foo1/
 foo2/
 /bar

 ~Brad

 -Original Message-
 From: Dan Vega [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 23, 2007 10:10 AM
 To: CF-Talk
 Subject: xml closing an empty tag

 I have an xml file that I am trying to parse and if there is no data for
 an
 element the file has an empty closing tag like so.


 address2/
 foo1/
 foo2/

 

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

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


Re: Good CF Developer learning ActionScript?

2007-08-23 Thread Dan Vega
I have viewed the lynda videos and I found them to be helpful. With that
being said I am currently reading Essential ActionScript 3.0 by Colin Moock
and it is a very good book. The author has broken down the language and
really gone in depth into everything. I am a ColdFusion guy myself and found
the language pretty easy to learn so far.

Dan Vega
http://www.danvega.org/blog/

On 8/23/07, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:

 Anyone know of any high quality learn as you go DVD based training for
 Actionscript?

 Thanks

 D

 

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

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


Re: xml closing an empty tag

2007-08-23 Thread Dan Vega
Dave,
That is valid xml. My problem was that I had an xml file with thousands of
values and i didnt see this


fatherDOB/motherDOB

The tags did not match and that is why the parser was throwing an error.

Dan

On 8/23/07, Dave Francis [EMAIL PROTECTED] wrote:

 Joe,
 Doesn't an xml tag also have to have either a value or an
 attribute?
 Thus
 contact
 foo /
 /contact
 Isn't actually valid?

 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 23, 2007 11:15 AM
 To: CF-Talk
 Subject: Re: xml closing an empty tag

 Hey Dan,

 An XML document needs to have a single root node...this is valid XML:

 contact
address2 /
foo1 /
foo2 /
 /contact

 While this is not:

address2 /
foo1 /
foo2 /

 If that's not the issue, can you reply and post an example invalid file?

 Thanks,

 Joe

 On Aug 23, 2007, at 11:09 AM, Dan Vega wrote:

  I have an xml file that I am trying to parse and if there is no
  data for an
  element the file has an empty closing tag like so.
 
 
  address2/
  foo1/
  foo2/
 
  When I try to parse the xml file I get the following error.
An error occured while Parsing an XML document. I thought this
  was valid
  xml?
 
  --
  Thank You
  Dan Vega
  [EMAIL PROTECTED]
  http://www.danvega.org
 
 
 



 

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

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


fckeditor not under root and image connector

2007-08-20 Thread Dan Vega
I am having trouble getting fckeditor configured into our cms system. Here
is my folder structure

+webroot
  +cmsroot
 --Application.cfm
 --editpage.cfm
 --fckeditor
   Application.cfm
  +application1
  +application2


The editor is instantiated from editpage.cfm and is actually called from
app1 or app2. My problem is trying to configure the image connectors. The
users Files Path in the config file needs to be dynamic. I have no way of
figuring out what application is instantiating the editor. Has anyone done
something similar to this?


config.userFilesPath = /app1orapp2orapp3??;

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: fckeditor not under root and image connector

2007-08-20 Thread Dan Vega
Well application1 and 2 are client websites for example so nobody will ever
cross applications. The problem lies here.

Application 1
  --application.cfm
/cmsFolderMapping
   --application.cfm
   --fckeditor
 --application.cfm


I can not just set a variable that will transfer across apps.

Dan

On 8/20/07, Scott Weikert [EMAIL PROTECTED] wrote:

 If you're using session vars - when someone hops into app1 or app2 (as
 at that point, I assume, you DO know which application is being used),
 set a variable with the proper userFilesPath data in their session. Then
 tap that session variable when firing up FCKEditor.

 

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

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


Re: Is cfqueryparam worth it?

2007-08-10 Thread Dan Vega
Ben,
Please take a look at the following post by Ben Forta. This should clear up
some why issues for you.

http://www.forta.com/blog/index.cfm/2005/12/21/SQL-Injection-Attacks-Easy-To-Prevent-But-Apparently-Still-Ignored

Dan Vega
http://www.danvega.org/blog/


On 8/10/07, Ben Mueller [EMAIL PROTECTED] wrote:

 Mike,

 Thanks for the response.  But the question is this:  what benefits will I
 get from saying this:

 cfqueryparam cfsqltype=cf_sql_integer value=#val(url.userid)#

 over just this:

 #val(url.userid)#

 Am I going to see a significant performance increase?  For the sake of
 argument, pretend that sample query I included in my first post is heavily
 hit.  I'm running SQL Server 2000 (soon to upgrade to 2005).







 As many others have said, there is never a reason NOT to use
 cfqueryparam.
 
 You can still use your trick and cfqueryparam doesn't have to bomb:
 
 cfqueryparam cfsqltype=cf_sql_integer value=#val(url.userid)#
 
 M!ke
 
 I'm trying to determine if cfqueryparam is really worth using.
 
 For data validation, we tend to do something like this:
 
 SELECT username
 FROM user
 where userID = #int(URL.userID)#
 
 the nice thing about this is that if URL.userID isn't an integer,
 int() returns 0, and the query executes and simply returns no records.
 For us, this is a far preferable method than what cfqueryparam would do,
 which is to bomb before executing the query.
 
 Then today I discovered that cfqueryparam supports bind variables, which
 theoretically will improve database performance.  So now the question
 is:  how much does it improve performance?  Am I really going to notice
 it?  Should I really switch my queries over to something like this:
 
 SELECT username
 FROM user
 where userID = cfqueryparam CFSQLType=CF_SQL_INTEGER
 value=#int(URL.user_id)#
 
 Any advice is appreciated.
 
 Thanks,
 Ben

 

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

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


Re: ColdFusion 8 cfgrid and formatting

2007-08-08 Thread Dan Vega
Thanks for the reply Bhakti!

Dan

On 8/8/07, Bhakti Pingale [EMAIL PROTECTED] wrote:

 Sorry for the late reply.
 Yes, the mask attribute applies only if format is flash. If you want to
 format the data in an html grid, you will have to write your query
 accordingly so that it returns the date in the required format.
 This was specifically for the date.
 However we can take this up as an enhancement. I shall file it for you.
 Thanks for the inputs. If you have any doubts feel free to ask

 Regards,
 Bhakti
 Adobe ColdFusion team

 -Original Message-
 From: Dan Vega [mailto:[EMAIL PROTECTED]
 Sent: Sunday, August 05, 2007 11:25 PM
 To: CF-Talk
 Subject: ColdFusion 8 cfgrid and formatting

 I am having a hard time finding an answer to this riddle so maybe
 someone
 here can help. I have a grid with columns show below. The livedocs say
 the
 mask attribute for cfgridcolumn is only used in when the format is
 flash. If
 this is correct then how do i format data in html? This would not just
 be
 dates but really any data, does anyone know how to format data?

 cfform
 cfgrid name=ClientsGrid format=html striperows=true
 autowidth=true pagesize=30 bgcolor=black textcolor=white
 bind=cfc:clients.getClients
 ({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})
 
 cfgridcolumn name=studentlast header=Last Name
 cfgridcolumn name=studentfirst header=First Name
 cfgridcolumn name=studentemail header=Email Address
 cfgridcolumn name=advisor header=Advisor
 cfgridcolumn name=entrydate header=Entry Date
 mask=[MM/DD/]
 cfgridcolumn name=monthly header=Monthly
 cfgridcolumn name=billto header=Bill To
 cfgridcolumn name=anniversary header=Anniversary
 /cfgrid
 /cfform

 --
 Thank You
 Dan Vega
 [EMAIL PROTECTED]
 http://www.danvega.org




 

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

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


Re: Eclipse/CFEclispe

2007-08-08 Thread Dan Vega
You can also look at Aptana, I use that plugin and it has a lot of nice
features.

http://www.aptana.org

On 8/8/07, Dawson, Michael [EMAIL PROTECTED] wrote:

 Yeah, that's a good question.

 I have the WTP build, but I don't really see any other features, such as
 CSS, when I'm editing .css files or even styles within an HTML page.

 M!ke

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 08, 2007 9:40 AM
 To: CF-Talk
 Subject: RE: Eclipse/CFEclispe

 It does CSS?  I wonder which one I installed, because I have never
 gotten CSS and that is the missing link to get me off of Dreamweaver.

 

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

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


Re: Eclipse/CFEclispe

2007-08-08 Thread Dan Vega
Well i only use aptana when I am editing .css, .js, .html. When I am editing
cfm or cfc I use CFEclipse of course!

Dan

On 8/8/07, Chad Gray [EMAIL PROTECTED] wrote:

 I tried aptana, but then I lost the ability to autocomplete CF tags... it
 was like I had to choose one or the other.  CSS or CF.. I could not get
 autocomplete to work for each language at the same time.

 Is there anyway for me to upgrade my eclipse so I get this WTP all in
 one package features???  Or do I have to re-install and loose all my custom
 keys and plugins?





 -Original Message-
 From: Loathe [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 08, 2007 10:44 AM
 To: CF-Talk
 Subject: RE: Eclipse/CFEclispe

 Look at Aptana.

 Best CSS and JS plugin around far as I am concerned.

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 08, 2007 10:40 AM
 To: CF-Talk
 Subject: RE: Eclipse/CFEclispe

 It does CSS?  I wonder which one I installed, because I have never gotten
 CSS and that is the missing link to get me off of Dreamweaver.



 -Original Message-
 From: Tom Chiverton [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 08, 2007 10:14 AM
 To: CF-Talk
 Subject: Re: Eclipse/CFEclispe

 On Wednesday 08 Aug 2007, [EMAIL PROTECTED] wrote:
  that it. So, first which version of Eclipse should I install? There are
  several on page http://www.eclipse.org/downloads/

 'WTP all in one' from

 http://download.eclipse.org/webtools/downloads/drops/R2.0/R-2.0-200706260303
 /
 It has a few extra bits like CSS and HTML editing and CFEclipse will drop
 right in.

 --
 Tom Chiverton

 

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

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

 CONFIDENTIALITY

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

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








 

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

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


ColdFusion 8 cfgrid and formatting

2007-08-05 Thread Dan Vega
I am having a hard time finding an answer to this riddle so maybe someone
here can help. I have a grid with columns show below. The livedocs say the
mask attribute for cfgridcolumn is only used in when the format is flash. If
this is correct then how do i format data in html? This would not just be
dates but really any data, does anyone know how to format data?

cfform
cfgrid name=ClientsGrid format=html striperows=true
autowidth=true pagesize=30 bgcolor=black textcolor=white
bind=cfc:clients.getClients
({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})
cfgridcolumn name=studentlast header=Last Name
cfgridcolumn name=studentfirst header=First Name
cfgridcolumn name=studentemail header=Email Address
cfgridcolumn name=advisor header=Advisor
cfgridcolumn name=entrydate header=Entry Date
mask=[MM/DD/]
cfgridcolumn name=monthly header=Monthly
cfgridcolumn name=billto header=Bill To
cfgridcolumn name=anniversary header=Anniversary
/cfgrid
/cfform

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: Forcing a session to end...

2007-08-02 Thread Dan Vega
I have to agree with Ray here. I always see people worried about detecting
session end. If you want to figure out session end take session start +
session length you set in the administrator. If not then you should just be
worried about the data you are working with. When the user clicks the logout
button clear the session structure.

Dan

On 8/2/07, Raymond Camden [EMAIL PROTECTED] wrote:

 The short answer is no. You don't end a session. ColdFusion does. But
 you can easily clear the data you work with. And honestly, that is
 what you should be concerned with. So if you set a variable when a
 user logs in, just clear out that variable when they logout.

 Isn't that what you really want to do anyway?

 On 8/2/07, James Smith [EMAIL PROTECTED] wrote:
  Is there any way to end a session when a logout link is clicked?
 
  I have tried...
  cfset temp = onSessionEnd(session,application)
  cfapplication name=application
  sessiontimeout=#createTimeSpan(0,0,0,0)#
 
  But it leaves the session scope fully populated.
 
  I have even tried...
  cfset temp = onSessionEnd(session,application)
  cfapplication name= application 
  sessiontimeout=#createTimeSpan(0,0,0,0)#
  cfset temp = structClear(sesion)
  cflocation url=/
 
  But that doesn't work either.  I am sure I am missing something simple
 but
  this is driving me nuts!
 
  --
  Jay
 
 
 

 

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

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


Re: cfmail and server/username/password attributes

2007-08-01 Thread Dan Vega
Or course if you are using ColdFusion 8 you could use this approach

http://www.danvega.org/blog/index.cfm/2007/5/11/Scorpio--ArgumentsCollection

Dan Vega
http://www.danvega.org/blog/

On 8/1/07, Raymond Camden [EMAIL PROTECTED] wrote:

 Actually, the server attribute for cfmail lets you embed u/p in it. So
 in my code I'll just have 2 blocks in a CFIF. One block for a totally
 unprotected cfmail (where its set in the cfadmin) and one that passes
 the server info, which MAY or may not have username/password in it.

 Checkout how lighthouse pro does this.

 On 8/1/07, Rick Root [EMAIL PROTECTED] wrote:
  CFMBB - and several of my applications - use cfmail to send mail.
 
  On some hosts, you don't need to include the SERVER, USERNAME, and
  PASSWORD attributes.
 
  On some hosts, you do.
 
  I'd like to make this a non-required configuration option, but you
  can't supply blank strings to these fields.
 
  Seems to me the only way to deal with this would be something like this:
 
  cfif mailServer neq 
 cfif mailUser neq 
  cfmail ... server=#variables.mailServer#
  username=#mailUser# password=#mailPass#/cfmail
 cfelse
  cfmail ... server=#variables.mailServer#/cfmail
 /cfif
  cfelse
  cfmail .../cfmail
  /cfif
 
  Any better way to do this (besides using the attributes collection in
 CF8!)?
 
  Rick
  --
  Rick Root
  Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
  www.opensourcecf.com
 
 

 

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

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


Re: Connection Flex to CF Error

2007-07-27 Thread Dan Vega
Tom
Have you checked out this tutorial yet? It helped me out!

http://www.kylehayes.info/blog/index.cfm/2007/4/16/Captivate-Tutorial-Viewing-a-ColdFusion-Query-in-a-Flex-DataGrid


On 7/26/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote:
  Everything about my installations are defaults. I'm using the built in
 cf
  server as well.

 Get wireshark/webscarab/servicecapture and check where the AMF packets are
 going.

 --
 Tom Chiverton

 

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

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

 CONFIDENTIALITY

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

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


 

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

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


Re: FCKEditor + ColdFusion + CMS + Customizing Help Needed

2007-07-27 Thread Dan Vega
Scott,
Thanks for the reply. I forgot to post back yesterday but I am almost
complete. While I have not gotten into plugins yet I was able to figure out
how to customize the folders that it uses and now understand how link works

Thanks!

On 7/27/07, Scott Weikert [EMAIL PROTECTED] wrote:

 Dan Vega wrote:
  I am looking for some people who have used the FCKEditor along with the
  ColdFusion capabilities that come with it. Right now our cms system only
 has
  ActiveEdit built into it and I would like to change that because users
 are
  limited to IE (boo). I have everything setup in our cms so that the
 editor
  works great and uses a specific folder that is controlled on a per
  application basis using the following
 
  !--- fckEditor ---
  cfset application.FCKeditor = StructNew()
  cfset application.FCKeditor.userFilesPath =
  #application.ApplicationName#/myfolder
 
  Now that the editor is working and I have been able to configure the
  filebrowser and image uploader I have a couple of questions.
 
  1.) If a user wanted to add an image they can just click on the image
 icon.
  This works great but what if they wanted to link to
  a pdf document, where is a general filebrowser button?
 
 Highlight your text to use as a link, click the link button, and click
 browse server at the bottom of that popup to get at the file area
 (as opposed to the image area via the image browser).

  2.) When you get to the filebrowser there is a drop down of folders.
  Image,Flash,Media,File. Does anyone know how to customize this list? If
 i
  just change the list
  below it does not work, I have also tried in a couple other places but
 can
  not find the answer.
 
 
 Do a search on your FCKEditor folder for the word media. You'll find
 some references to it, including spots in the code where it's
 references. There's a few spots you'd have to change to get this sort of
 thing to work. Good luck on that one! :D



 

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

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


FCKEditor + ColdFusion + CMS + Customizing Help Needed

2007-07-26 Thread Dan Vega
I am looking for some people who have used the FCKEditor along with the
ColdFusion capabilities that come with it. Right now our cms system only has
ActiveEdit built into it and I would like to change that because users are
limited to IE (boo). I have everything setup in our cms so that the editor
works great and uses a specific folder that is controlled on a per
application basis using the following

!--- fckEditor ---
cfset application.FCKeditor = StructNew()
cfset application.FCKeditor.userFilesPath =
#application.ApplicationName#/myfolder

Now that the editor is working and I have been able to configure the
filebrowser and image uploader I have a couple of questions.

1.) If a user wanted to add an image they can just click on the image icon.
This works great but what if they wanted to link to
a pdf document, where is a general filebrowser button?
2.) When you get to the filebrowser there is a drop down of folders.
Image,Flash,Media,File. Does anyone know how to customize this list? If i
just change the list
below it does not work, I have also tried in a couple other places but can
not find the answer.

config.allowedExtensions = structNew();
config.deniedExtensions = structNew();

// config.allowedExtensions[File] =
doc,rtf,pdf,ppt,pps,xls,csv,vnd,zip;
config.allowedExtensions[file] = ;
config.deniedExtensions[file] =
php,php2,php3,php4,php5,phtml,pwml,inc,asp,aspx,ascx,jsp,cfm,cfc,pl,bat,exe,com,dll,vbs,js,reg,cgi;

config.allowedExtensions[image] = png,gif,jpg,jpeg,bmp;
config.deniedExtensions[image] = ;

config.allowedExtensions[flash] = swf,fla;
config.deniedExtensions[flash] = ;

config.allowedExtensions[media] =
swf,fla,jpg,gif,jpeg,png,avi,mpg,mpeg,mp3,mp4,m4a,wma,wmv,wav,mid,midi,rmi,rm,ram,rmvb,mov,qt;
config.deniedExtensions[media] = ;


3.) Finally, does anyone know an easy way of adding custom buttons? I have
looked around and can not find anything on this. I have a cfm page
in each applications root that I would like to be able to open.

Any help with this would be great!!!

-- 
Thank You
Dan Vega
[EMAIL PROTECTED]
http://www.danvega.org


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

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


Re: Incident Tracking

2007-07-20 Thread Dan Vega
We just started using lighthouse and I am liking everything so far!

http://lighthousepro.riaforge.org/


On 7/20/07, Steve Good [EMAIL PROTECTED] wrote:

 Hey Gang,

 Before I go and put a project together, thought I would ask if something
 like this already exists.

 My support team needs a way to track various support incidents
 throughout the company.  The only solutions I have seen were outdated
 PHP apps.  The one I found that seemed to have the most promise is not
 working the way I want it to.  Besides, I'm already running CF7, so I'd
 like to leverage that to my benefit.

 Thanks in advance,

 Steve Good

 

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

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


Re: Incident Tracking

2007-07-20 Thread Dan Vega
Yes,
It is bug tracking software. Sorry Steve, I must of mis read your question.

Dan

On 7/20/07, Steve Good [EMAIL PROTECTED] wrote:

 I thought lighthousepro was more for bug tracking, am I wrong?  I'm
 looking for something that can be used for Tech Support Call Tracking
 and for other support issues (non-technical).

 Dan Vega wrote:
  We just started using lighthouse and I am liking everything so far!
 
  http://lighthousepro.riaforge.org/
 
 
  On 7/20/07, Steve Good [EMAIL PROTECTED] wrote:
 
  Hey Gang,
 
  Before I go and put a project together, thought I would ask if
 something
  like this already exists.
 
  My support team needs a way to track various support incidents
  throughout the company.  The only solutions I have seen were outdated
  PHP apps.  The one I found that seemed to have the most promise is not
  working the way I want it to.  Besides, I'm already running CF7, so I'd
  like to leverage that to my benefit.
 
  Thanks in advance,
 
  Steve Good
 
 
 
 
 

 

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

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


Re: OT - Screen Capture Video

2007-07-18 Thread Dan Vega
Andrew,
Funny you ask this because I just found a new tool that I posted a quick
review on today.

http://www.jingproject.com/
http://www.danvega.org/blog/index.cfm/2007/7/17/Jing-Capture-Record-amp-Share-Images-amp-Screencasts

Dan Vega
Letternine

On 7/18/07, Andrew Peterson [EMAIL PROTECTED] wrote:

 Hi,

 I'm looking for a Windows solution that will capture my screen and audio
 and present it in Flash for embedding in a web page. A friend uses Snapz Pro
 at Ambrosia Software, a cheap and effective solution, but only for the Mac.
 The videos are saved as Quicktime files and then he uploads them to YouTube
 for the .swf. Very cool. Any ideas for a similar Windows solution? What
 Adobe products will do this for me?  Thanks in advance.

 Sincerely,
 Andy

 

~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: OT - Screen Capture Video

2007-07-18 Thread Dan Vega
JingProject was created by the same people who made Catasia (TechSmith)

On 7/18/07, Adam Churvis [EMAIL PROTECTED] wrote:

 Nothing beats Camtasia Studio 4 (from TechSmith).

 Respectfully,

 Adam Phillip Churvis

 Get advanced intensive Master-level training in
 C#  ASP.NET 2.0 for ColdFusion Developers at
 ProductivityEnhancement.com

 -Original Message-
 From: Andrew Peterson [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 18, 2007 9:30 AM
 To: CF-Talk
 Subject: OT - Screen Capture Video

 Hi,

 I'm looking for a Windows solution that will capture my screen and audio
 and present it in Flash for embedding in a web page. A friend uses Snapz Pro
 at Ambrosia Software, a cheap and effective solution, but only for the Mac.
 The videos are saved as Quicktime files and then he uploads them to YouTube
 for the .swf. Very cool. Any ideas for a similar Windows solution? What
 Adobe products will do this for me?  Thanks in advance.

 Sincerely,
 Andy



 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


Re: cfc question

2007-07-18 Thread Dan Vega
Chad,
Here is what I do in that situation. First my select statement by default
will return all rows

SELECT *
FROM FlexoDirectConfigFiles
WHERE 1=1

1 will always be eqal to 1 so this is an easy way of getting all records and
allowing for optional and clauses then you can do this; Pass in optional
arguments to your function. You want to make these arguments not required
that way can pass as many or as few filters to your function as possible.
The code below may not be right I just threw it together quickly, but
hopefully you get the idea.

cfargument name=arg1 type=string required=false
cfargument name=arg1 type=string required=false


cfquery ...
SELECT *
FROM FlexoDirectConfigFiles
WHERE 1=1
cfif structKeyExists(arguments,arg1)
AND column = cfqueryparam value=#arguments.arg1#
/cfif
cfif structKeyExists(arguments,arg2)
AND column = cfqueryparam value=#arguments.arg2#
/cfif
/cfquery



On 7/18/07, Chad Gray [EMAIL PROTECTED] wrote:

 I have a CRUD CFC that has this function and I load the CFC into the
 application scope:

 cffunction name=readZJF access=public returntype=query
 cfargument name=criteria type=string required=yes

 cfquery datasource=dsn name=readZJF
 SELECT *
 FROM FlexoDirectConfigFiles
 WHERE #arguments.criteria#
 /cfquery

 cfreturn readZJF
 /cffunction

 I want to be able to pass in the WHERE statement into it.  So it could
 be:
 FileName = 'PLATES.zjf' AND FileModificationDate = '09/30/2005 12:34:01
 PM'

 So I run something like this to call the function:

 cfset DoesFileAlreadyExist = application.ZJF.readZJF(FileName =
 '#getZJF_files.name#' AND FileModificationDate =
 '#getZJF_files.dateLastModified#')

 What I get back is an error:
 [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near '
 PLATES.zjf'.

 Then I look at the SQL that was run in debugging.
 SELECT *
 FROM FlexoDirectConfigFiles
 WHERE FileName = ''PLATES.zjf'' AND FileModificationDate = ''09/30/2005
 12:34:01 PM''

 Why did it take my single quotes and add another single quote?  Is it
 trying to escape the single quote?  How do I keep it from doing this?


 

~|
ColdFusion 8 beta – Build next generation applications today.
Free beta download on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

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


Re: Jump to a certain line in CFEclipse?

2007-07-16 Thread Dan Vega
Andy,
cntrl + L on win or navigate  go to line

Dan Vega
http://www.danvega.org/blog/

On 7/16/07, Andy Matthews [EMAIL PROTECTED] wrote:

 Anyone know what the shortcut or mapping in CFEclipse is to jump to a
 specified line number?

 

 Andy Matthews
 Senior ColdFusion Developer

 Office:  877.707.5467 x747
 Direct:  615.627.9747
 Fax:  615.467.6249
 [EMAIL PROTECTED]
 www.dealerskins.com http://www.dealerskins.com/



 

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

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


Re: SOT: Eclipse Plugins

2007-07-12 Thread Dan Vega
Aptana
http://aptana.org/


On 7/12/07, Terry Schmitt [EMAIL PROTECTED] wrote:

 The  Eclipse Web Standard Tools work for me at:

 http://www.eclipse.org/webtools/wst/main.php

 Handles js, xml, css and lots more.

 Terry schmitt

 Hello Guys,
 
 
 
 After a few troubles I've been having recently I've decided this morning
 to
 rebuild my eclipse with a new 3.3 install and some nice new plug-ins too
 and
 thought I'd come here for your thoughts on the 'must have' plug-ins for a
 ColdFusion developer. I've currently not got much on it, simply Aptana
 and
 CFEclipse.
 
 
 
 Thoughts guys?
 
 
 
 Thanks,
 
 
 
 Rob

 

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

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


Re: SOT: Eclipse Plugins

2007-07-12 Thread Dan Vega
Neil,
I found no easy way. I ended up donwload the new eclipse and having to
reinstall all of my plugins. It sucks
but the whole process only knocked out 30 min of my life :)


On 7/12/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
wrote:

 On the same note, how are people who use Eclipse 3.2 upgrading to 3.3? The
 normal update means doesn't seem to work I thought it would.






 This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
 Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of
 the
 intended recipient(s).  If you are not the intended recipient(s) please
 note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or
 call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within
 this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com

 -Original Message-
 From: Terry Schmitt
 To: CF-Talk
 Sent: Thu Jul 12 18:53:04 2007
 Subject: Re: SOT: Eclipse Plugins

 The  Eclipse Web Standard Tools work for me at:

 http://www.eclipse.org/webtools/wst/main.php

 Handles js, xml, css and lots more.

 Terry schmitt

 Hello Guys,
 
 
 
 After a few troubles I've been having recently I've decided this morning
 to
 rebuild my eclipse with a new 3.3 install and some nice new plug-ins too
 and
 thought I'd come here for your thoughts on the 'must have' plug-ins for a
 ColdFusion developer. I've currently not got much on it, simply Aptana
 and
 CFEclipse.
 
 
 
 Thoughts guys?
 
 
 
 Thanks,
 
 
 
 Rob



 

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

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


Re: Looking for an xml-rpc client

2007-07-11 Thread Dan Vega
Dave,
Are you looking for weblog software that is xml-rpc compitable? If so
BlogCFC is a great choice  www.blogcfc.com. If you are looking for clients
to create posts in using xml-rpc I have some good examples on my website and
can be found at the link below.

http://www.danvega.org/blog/


On 7/11/07, Bosky, Dave [EMAIL PROTECTED] wrote:

 I was looking for a Cold Fusion based xml-rpc client. I'm currently
 using a php version and would like to convert over to Cold Fusion. Any
 recommendations for a xml-rpc client?

 Thanks,

 Dave Bosky | Information Services | HTC | direct:  843-369-8613 | fax:
 843-369-7178 | [EMAIL PROTECTED]

 **
 HTC Disclaimer:  The information contained in this message may be
 privileged and confidential and protected from disclosure. If the reader of
 this message is not the intended recipient, or an employee or agent
 responsible for delivering this message to the intended recipient, you are
 hereby notified that any dissemination, distribution or copying of this
 communication is strictly prohibited.  If you have received this
 communication in error, please notify us immediately by replying to the
 message and deleting it from your computer.  Thank you.
 **


 

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

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


  1   2   3   >