Re: Getting thread name via CF

2012-09-06 Thread Mark Mandel

Another example for you:
http://www.compoundtheory.com/?action=displayPostID=251

Mark

On Fri, Sep 7, 2012 at 3:05 PM, Pete Freitag p...@foundeo.com wrote:


 Yes the java.lang.Thread class has a static method you can call
 currentThread() which gives you the current thread, just call getName() on
 it, eg:

 cfset currentThread = CreateObject(java,
 java.lang.Thread).currentThread()
 cfoutputCurrent Thread: #currentThread.getName()#/cfoutput


 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://petefreitag.com/ - My Blog
 http://hackmycf.com - Is your ColdFusion Server Secure?




 On Thu, Sep 6, 2012 at 3:28 PM, Rick Root rick.r...@gmail.com wrote:

 
  Hi,
 
  I have a process that runs using an event gateway.  Sometimes, I'd like
 to
  be able to look in FusionReactor and see what it is currently doing, if
  anything.
 
  But I don't alwaysk now what thread to look at, and I don't want to have
 to
  look and every thread to find it.
 
  I know that if I do a cflog statement, it will log the thread name...
 
  I wondered if there's a way I can access the current java thread name
 from
  within the CF code itself.
 
  Thanks.
 
  Rick
 
  --
  *The beatings will continue until morale improves.*
 
 
 

 

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


Re: Software Project Development Process

2012-06-25 Thread Mark Mandel

What issues are you finding with UML itself? Or it is the UML diagramming
tool you are looking to replace?

UML is the OO modelling standard - I don't think anything else out there
really exists.

Mark

On Mon, Jun 25, 2012 at 11:36 PM, Tom Small t...@re-base.net wrote:


 Hi

 We are about the start our first large project, and in the past I have
 with have been using UML although in my opinion it has its limitations and
 is not flexible for ColdFusion and ExtJS 4.

 Could anyone advise me on a standardize-general purpose modelling tool
 that can be used for ColdFusion/ ExtJS 4 project?

 Thanks

 Tom


 

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


Re: Software Project Development Process

2012-06-25 Thread Mark Mandel

So I'm still confused - you've mentioned UML diagramming tools, and then
talked about Software development life-cycle processes as a way of solving
your diagramming tool issues.

There seems to be a disconnect somewhere here?

Maybe if you could outline the issues you are having further, we could help
narrow down a solution.

Mark

On Tue, Jun 26, 2012 at 7:49 PM, Tom Small t...@re-base.net wrote:


 Hi Mark

 Due to the size of the project we were looking an alternative UML
 diagramming
 tools. A lot of people have suggested reviewing Agile to management a
 large software project.


 

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


Re: Software Project Development Process

2012-06-24 Thread Mark Mandel

I'm confused - are you using uml for ui mockups or for object oriented
analysis and design?

Sent from my mobile doohickey.
On Jun 24, 2012 6:38 AM, Tom Small t...@re-base.net wrote:


 Hi

 We are about the start our first large project, and in the past I have
 with have been using UML although in my opinion it has its limitations and
 is not flexible for ColdFusion and ExtJS 4.

 Could anyone advise me on a standardize-general purpose modelling tool
 that can be used for ColdFusion/ ExtJS 4 project?

 Thanks

 Tom


 

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


Re: Is CF slower than Java?

2012-06-11 Thread Mark Mandel

Okay guys - there is a lot of misinformation going on here.

To clear up a few things:

In a pure apples to apples comparison, yes, Java will most likely be faster.

For example, if you do a Fibonacci sequence generator in Java, it will most
likely be faster in Java than CF.

Reason being that ColdFusion is a dynamic language, whereas Java is static.
So ColdFusion has to write a lot more byte code than straight Java will
need to.  This will be true for any dynamic language that is compiled to
bytecode on the JVM, simply because it needs to manage the dynamic nature
of the variables and methods that pass through it.

So the statement of they are compiled down to bytecode, so they are just
as fast is actually incorrect. It's a question of what the bytecode is
doing and how much bytecode is the million dollar question.

Now - the statement of Cold Fusion is written in JAVA which means,
generally, that a ColdFusion program will run slower than a program written
directly in JAVA.  If speed of the application were the primary
consideration, PHP or JAVA is the clear choice.. I say that this is
incorrect as well, for a few reasons:

1) As people said, if speed is a primary consideration, write in Assembly.
2) The programming language is 99% time never the bottleneck in the an
application. It's usually aspects such as the database.  If speed of
the application is the primary concern, I'd be far more interested in
horizontal scalability.
3) I'm not sure where they get the stats that PHP is faster than anything
else? That seems like a weird statement. I'd be curious about the numbers
to back it up.

Hopefully that clears things up.

Mark

On Tue, Jun 12, 2012 at 7:49 AM,  wrote:


  Cold Fusion is written in JAVA which means, generally, that a
 ColdFusion program will run slower than a program written directly in JAVA.

 Yet another statement from a guy who doesn't know what he is talking about.
 Java programs AND CF templates are compiled into Java byte code.
 CF templates are recompiled only if they have been modified.
 CF might be longer or even faster to compile than Java, but when they are
 compiled, they both are just Java byte code and should execute as fast.
 The only reson CF could be slower would be if the compiler generates less
 efficient code, and this is yet to be proven.

 One thing is certain however, a CF application is many times faster to
 develop than Java!

 

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


Re: Coldspring docs?

2012-06-07 Thread Mark Mandel

Yeah, I know this sucks. A new server is coming I promise.

I have no control over this one, so I have to bug someone who has to bug
someone...

In the mean time - web archive to the rescue!

http://web.archive.org/web/20110716211542/http://www.coldspringframework.org/index.cfm/go/documentation

Mark

On Wed, Jun 6, 2012 at 3:00 AM, Jason Durham jqdur...@gmail.com wrote:


 Coldspringframework.org is down.  Are the docs for 1.2 hosted somewhere
 that is currently accessible?  I already found the 2.0 docs on
 SourceForge.net.

 Jason Durham


 

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


Re: ColdFusion developers in Australia

2012-04-30 Thread Mark Mandel

Martin,

You may want to send this to the CFAUSSIE making list, but to ask a stupid
question: What does your site actually do?

Mark

Sent from my mobile doohickey.
On Apr 30, 2012 4:35 PM, Martin Parry martin.pa...@beetrootstreet.com
wrote:


 Hey guys - I'm trying to get a ColdFusion developer community going in
 Australia - Go to http://www.coldfusion.com.au and register your
 interest.. We will have project sharing and profiles available once I know
 the interest level is there.

 Martin

 

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


Re: ColdFusion developers in Australia

2012-04-30 Thread Mark Mandel

For anyone who is not aware of the ways to get in contact with the
ColdFusion community in Australia, here are some resources

Mailing lists:
https://groups.google.com/forum/?hl=enfromgroups#!forum/cfaussie
https://groups.google.com/forum/?hl=enfromgroups#!forum/cfjobs

Conferences:
http://www.cfobjective.com.au

User Groups:
http://groups.adobe.com/pages/anz

Local Adobe Community Professionals:
Me! :)
Justin McLean

(There are more, but I don't know if they use CF at all)

Local Railo Evangelists:
AJ Mercer

Podcasts:
http://2ddu.com/


So there is some stuff going on, if you know where to find it!!!


Martin - I would love to hear more about what you plan to do with the site.
Sorry to be super cynical, but so far it just looks like a site to collect
a lot of people's personal information. I mean, why do you need my address,
zip and the company I work at to register interest? On it's face value,
this site could seem to just be a fishing expedition for personal
information.  That being said, maybe it's not (and I hope it isn't) - just
that I've not seen you around the regular Aussie ColdFusion water coolers,
so I've got nothing to base the opinion on.

Looking forward to hearing more!

Mark

On Mon, Apr 30, 2012 at 10:04 PM, Mike Kear afpwebwo...@gmail.com wrote:


 I for one am eager to see the re-emergence of a ColdFusion community here.
   Based on current activity,  the Usergroups arent interested in it, Adobe
 in Australia doesnt seem very interested in it,  the people organising
 conferences apparently arent much interested, and it basically seems to be
 petering out of existence.   Us developers are just left to our own
 devices it seems.

 So someone taking an interest in ColdFusion again is a GOOD THING.

 Thank you Martin.

 --
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

2 Devs from Down Under Podcast
http://www.2ddu.com/


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


Re: CF Groovy

2012-04-04 Thread Mark Mandel

On Thu, Apr 5, 2012 at 1:16 AM, Brian Kotek brian...@gmail.com wrote:

 There's still actually quite a bit of activity around Groovy (2.0 is
 imminent with many enhancements), but it is overshadowed by Grails, which
 is extremely active. Since the two are tightly linked (you use Groovy to
 build Grails apps), looking at *only* Groovy activity may be misleading.
 Probably similar to looking at straight Ruby vs. looking at Rails, which is
 what virtually everyone who uses Ruby is actually working with.


While I agree that there is activity... I'm just not seeing the growth in
the language (and from what I'm reading, people have similar opinions).

That's not to say that people shouldn't be using it - but it's just a
factor of adoption.

I really like Groovy - I think it's a great language with some kick ass
language constructs, and it has SpringSource behind it, which is also cool
- I'm just curious to see how much it is going to grow.

Mark


-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

2 Devs from Down Under Podcast
http://www.2ddu.com/


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


Re: CF Groovy

2012-04-03 Thread Mark Mandel

I quite like Groovy as well - although unfortunately it doesn't look like
it really exploded like I think many of us thought it would do.

While it has a following, from my research, it seems to have kinda
stagnated in it's community growth, in favour of some other JVM based
languages.

I'm looking at Ruby a lot these days, as it has similar constructs and meta
programming models, but a much larger community - and if you run it on
JRuby, it has access to both the Java libraries as well as Ruby ones, which
is very powerful.

Mark



On Wed, Apr 4, 2012 at 12:54 PM, Brian Kotek brian...@gmail.com wrote:

 Groovy is by far the best all-around programming *language* I have ever run
 into. It doesn't have all the built-in extras that CF does, but CF is
 actually a platform, not just a language. But in my opinion (and I may get
 flak for saying it), in terms of language elegance and power, Groovy blows
 everything else out of the water.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

2 Devs from Down Under Podcast
http://www.2ddu.com/


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


Re: New computer set up

2012-01-17 Thread Mark Mandel

Xubuntu these days :)

Then, Chromium, Skype, Pidgin, Thunderbird, XChat, Synergy, IntelliJ,
Vmware Workstation, Compiz, Guake, Crashplan, ClipIt, Kupfer,
and Guayadesque...

That's probably my base :)

Mark

On Wed, Jan 18, 2012 at 4:57 PM, Steven Durette sdure...@prodigy.netwrote:


 Hi all,

 Just wondering what all of the guru's here install when they get a new
 laptop.

 Its a windows based machine, but will probably be dual booting a form of
 Linux before the end of the week.

 Steve

 

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


Re: ColdFusion - Long Running Processes - Garbage Collection - structDelete

2011-12-18 Thread Mark Mandel

When doing big batch processing, I will often cfthread and then join the
thread back at the end of the loop. This means that everything tied to the
thread is now able to garbage collected, as the thread has been marked as
expired.

Mark

On Sat, Dec 17, 2011 at 7:40 AM, Ryan Duckworth
ryanduckworth...@gmail.comwrote:


 We used a trick in *ColdFusion 8* that does not seem to work in *ColdFusion
 9*.

 Inside of loops in heavy lifting / long running processes ( scheduled pages
 ), we would use:

 structDelete( variables, foo );
 This would, in theory, remove the pointer to the location in memory and
 allow for garbage collection.

 I have tried moving the processing inside of a cffunction and using a
 similar trick on the local scope.
 var objOrder = 
 
 structDelete( local, foo );

 structDelete on variables and local do *not work* in *ColdFusion 9*.

 Another trick, that is less than ideal, and would require re-writing a
 significant amount of code is to have 2 pages:
 The 1st page would contain the loop and use cfhttp to call the 2nd page
 that actually does the processing.

 This, in theory, would be a solution if ColdFusion 9 only allows Garbage
 Collection at the *end of each request*. ( I sure hope this isn't true )

 Any Ideas?
 Maybe cfthread?

 I know that others out there must have encountered this same problem and
 come up with a solid solution.
 Please share your tricks.

 Best,
 Ryan


 

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


Re: Very disappointing statis

2011-12-14 Thread Mark Mandel

So, what are you going to do to promote ColdFusion more?

No point in complaining about the problem, unless you are going to propose
and implement some solutions :)

Mark

On Thu, Dec 15, 2011 at 3:02 AM, Robert Harrison rob...@austin-williams.com
 wrote:


 Very disappointing statistics for ColdFusion market penetration.

 http://w3techs.com/technologies/overview/programming_language/all

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

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

 Plug in to our blog: AW Unplugged
 http://www.austin-williams.com/unplugged

 

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


Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Mark Mandel

A couple of things (I need to do a blog post on this)
- There are some rough edges around auto formatting
- the mxunit support is nowhere near as good as Eclipse's
- Script support can be flaky in some places.
- No dedicated debugger.

But overall, I'm liking IntelliJ a lot more than Eclipse - it has a lot
going for it. (I really need to write that blog post actually).

Make sure to join up with the mailing list, in case you need to ask
questions:
https://groups.google.com/forum/#!forum/cfml-plugin-for-intellij-idea

Mark


On Thu, Dec 8, 2011 at 5:13 AM, Cameron Childress camer...@gmail.comwrote:


 Mark-

 I just installed IntelliJ and like it quite a bit in the little bit I've
 used it so far.  It opened my CFBuilder project right up.  Any significant
 weaknesses you've noticed?  I think I am going to try to use this for 30
 days and see how it goes.

 -Cameron

 On Wed, Dec 7, 2011 at 11:39 AM, Cameron Childress camer...@gmail.com
 wrote:

  Mark / Eric - Both solid suggestions.  I may give some alternate tools a
  look. Little annoyances like this add up over the course of a
  day/week/month.  I used CFEclipse before CFBuilder was released but
 haven't
  tried IntelliJ yet.  Maybe I should give it a shot.
 
  Thanks!
 
  -Cameron
 
 
  On Tue, Dec 6, 2011 at 10:43 PM, Mark Mandel mark.man...@gmail.com
 wrote:
 
 
  I may be on repeat at the moment, but while it has it's rough edges, the
  CFML plugin for IntelliJ is quite nice. You can always evaluate that for
  30
  days.
 
  I just switched to using that full time, and I'm quite enjoying it.
 
  Mark
 
  On Wed, Dec 7, 2011 at 1:38 PM, Eric Roberts 
  ow...@threeravensconsulting.com wrote:
 
  
   I got rid of CFBuilder and went back to CFEclipse...CFBuilder is still
  too
   buggy and clunky...
  
   Eric
  
   -Original Message-
   From: Cameron Childress [mailto:camer...@gmail.com]
   Sent: Tuesday, December 06, 2011 11:01 AM
   To: cf-talk
   Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem
  
  
   That did clear up the problem, though I suspect it's only temporary.
  I
   restart Eclipse at least once a day already and see this problem
   continuously.
  
   If anyone else has any ideas of what I might try disabling in Eclipse
 or
   CFB
   relating to cut/pasting content, I'm willing to give it a try. I don't
   notice any sluggishness except for when I cut/paste
  
   -Cameron
  
   On Tue, Dec 6, 2011 at 11:24 AM, Steve 'Cutter' Blades 
   cold.fus...@cutterscrossing.com wrote:
   
I've had similar issues, due to some kind of internal memory leak
(possibly related to search). I've found that if I restart Eclipse
when I first notice the issue, then I can avoid it until Eclipse
 gets
bogged down again.
  
  
  
  
  
 
 

 

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


Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Mark Mandel

I may be on repeat at the moment, but while it has it's rough edges, the
CFML plugin for IntelliJ is quite nice. You can always evaluate that for 30
days.

I just switched to using that full time, and I'm quite enjoying it.

Mark

On Wed, Dec 7, 2011 at 1:38 PM, Eric Roberts 
ow...@threeravensconsulting.com wrote:


 I got rid of CFBuilder and went back to CFEclipse...CFBuilder is still too
 buggy and clunky...

 Eric

 -Original Message-
 From: Cameron Childress [mailto:camer...@gmail.com]
 Sent: Tuesday, December 06, 2011 11:01 AM
 To: cf-talk
 Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem


 That did clear up the problem, though I suspect it's only temporary.  I
 restart Eclipse at least once a day already and see this problem
 continuously.

 If anyone else has any ideas of what I might try disabling in Eclipse or
 CFB
 relating to cut/pasting content, I'm willing to give it a try. I don't
 notice any sluggishness except for when I cut/paste

 -Cameron

 On Tue, Dec 6, 2011 at 11:24 AM, Steve 'Cutter' Blades 
 cold.fus...@cutterscrossing.com wrote:
 
  I've had similar issues, due to some kind of internal memory leak
  (possibly related to search). I've found that if I restart Eclipse
  when I first notice the issue, then I can avoid it until Eclipse gets
  bogged down again.




 

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


Re: Korean text going into DB as '??????

2011-10-18 Thread Mark Mandel

What's the code you are using to insert it?

Also, you may want to check the advanced datasource settings to see if there
is a UTF-8 option that needs enabling.

Mark

On Wed, Oct 19, 2011 at 2:35 PM, Torrent Girl moniqueb...@gmail.com wrote:


 Hi All.

 I have been working with Korean content and am now displaying it my pages
 properly BUT when I add it to the DB (SQL 2008 - nvarchar), the Korean
 content is changed to .

 ANY suggestions?

 

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


Re: What event specifically triggers OnApplicationStart?

2011-03-28 Thread Mark Mandel

Is it possible that someone is accessing your site by it's ip address, in an
attempt to fool it into something that could enable a hacking attempt?

I've seen security scanning software do similar things.

This is why I tend to have the production state be the default state, and
have development and stage be explicitly defined. That way, if the system is
not sure which configuration to use, it uses the most secure.

Mark

Sent from my mobile device.
On 29/03/2011 7:58 AM, Dean Lawrence dean...@gmail.com wrote:

 Dave,

 Since your config is based on the cgi.server_name variable, why don't
 you search your web server access logs for calls to your dev domain
 name? This would tell you when and what was accessed which might have
 reset your app.

 Dean

 On Mon, Mar 28, 2011 at 4:00 PM, Dave Burns cft...@burnsorama.com wrote:

On 3/28/2011 11:10 AM, Dave Burns wrote:
 My code looks like this:

 configName = dev
 if CGI.SERVER_NAME contains blah.com
  configName = production



 --

---
 Dean M. Lawrence
 INTERNET DATA TECHNOLOGY
 p // 888.438.4381 ext. 701
 w // www.idatatech.com
 f // www.facebook.com/idatatech
 t // www.twitter.com/idatatech

 Social Marketing | SEO | Design | Internet Developm

 

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


Re: Performance Issue with CFLOOP

2011-03-09 Thread Mark Mandel

Batch stuff like this, I tend to break into chunks, and call each chunk via
a cfhttp call. (maybe 1000 records or so per chunk?)

That way you get a single request, that can be entirely gc'd after each
request.

Worked well for me in the past.

Mark

On Thu, Mar 10, 2011 at 10:26 AM, Michael Grant mgr...@modus.bz wrote:


 Good luck.

 On Wed, Mar 9, 2011 at 4:44 PM, webmas...@pegweb.com wrote:

 
  Ok I tried this. I took all the flushes out but one so only one timer
  per loop and ran it over 5000 records.
 
  With all the flushes in place total execution time was 111905 ms
  With only one flush total execution time for the same query was 74622 ms
 
  A difference of a little over 37 seconds
 
  With no flushing at all total execution time was 70520 ms
 
  A total difference of a little over 41 seconds
 
  So it does appear the flushing is the cause of some of the slowdown.
 
  However I tried running the loop over 10k records and I run into this
  error
 
  GC overhead limit exceeded null
 
  I have increase my maximum heap size to 1500mb so will try again. :(
 
  -Original Message-
  From: Michael Grant [mailto:mgr...@modus.bz]
  Sent: Wednesday, March 09, 2011 4:12 PM
  To: cf-talk
  Subject: Re: Performance Issue with CFLOOP
 
 
  Are you sure it's actually the loop slowing down or is it your browser
  slowing down from all the cfflush-ing? Try removing the cfflush and
  track the time it takes by writing the execution time to an array then
  dump out the array after the loop completes and compare your results.
  That will at least help you narrow down if it's truly a problem with the
  loop.
 
 
 
  On Wed, Mar 9, 2011 at 4:03 PM, webmas...@pegweb.com wrote:
 
  
   Looking for any ideas here.
  
  
  
   I'm running a cfloop over a query from a database with a little over
   60,000 records in it on MSSQL. I am doing a cfflush so I can watch
   what record it is on so I can keep up with how quickly or slowly the
   loop is running. The problem is after about 4850ish records the loop
   slows waaay down. Any idea why the speed change or how I can stop it
  from happening?
   All I am doing is querying 2 columns and based on the data in those 2
   I am updating 3 other columns. So it looks up the data then loops over
 
   it then updates each record with some new data. Runs great till about
   95% of the loop. Looking for any ideas out there.
  
  
  
  
 
 
 
 

 

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


Re: Performance Issue with CFLOOP

2011-03-09 Thread Mark Mandel

Yeah, I usually pass through a start and offset variable, so it knows which
records to call in, and I use the DB to paginate through.

Mark

On Thu, Mar 10, 2011 at 1:45 PM, webmas...@pegweb.com wrote:


 This sounds like a good solution. Do you just call the same page over
 and over with the cfhttp at the bottom passing a record variable until
 you reach the end of file or you doing something different?





 -Original Message-
 From: Mark Mandel [mailto:mark.man...@gmail.com]
 Sent: Wednesday, March 09, 2011 9:03 PM
 To: cf-talk
 Subject: Re: Performance Issue with CFLOOP


 Batch stuff like this, I tend to break into chunks, and call each chunk
 via a cfhttp call. (maybe 1000 records or so per chunk?)

 That way you get a single request, that can be entirely gc'd after each
 request.

 Worked well for me in the past.

 Mark

 On Thu, Mar 10, 2011 at 10:26 AM, Michael Grant mgr...@modus.bz wrote:

 
  Good luck.
 
  On Wed, Mar 9, 2011 at 4:44 PM, webmas...@pegweb.com wrote:
 
  
   Ok I tried this. I took all the flushes out but one so only one
   timer per loop and ran it over 5000 records.
  
   With all the flushes in place total execution time was 111905 ms
   With only one flush total execution time for the same query was
   74622 ms
  
   A difference of a little over 37 seconds
  
   With no flushing at all total execution time was 70520 ms
  
   A total difference of a little over 41 seconds
  
   So it does appear the flushing is the cause of some of the slowdown.
  
   However I tried running the loop over 10k records and I run into
   this error
  
   GC overhead limit exceeded null
  
   I have increase my maximum heap size to 1500mb so will try again. :(
  
   -Original Message-
   From: Michael Grant [mailto:mgr...@modus.bz]
   Sent: Wednesday, March 09, 2011 4:12 PM
   To: cf-talk
   Subject: Re: Performance Issue with CFLOOP
  
  
   Are you sure it's actually the loop slowing down or is it your
   browser slowing down from all the cfflush-ing? Try removing the
   cfflush and track the time it takes by writing the execution time to

   an array then dump out the array after the loop completes and
 compare your results.
   That will at least help you narrow down if it's truly a problem with

   the loop.
  
  
  
   On Wed, Mar 9, 2011 at 4:03 PM, webmas...@pegweb.com wrote:
  
   
Looking for any ideas here.
   
   
   
I'm running a cfloop over a query from a database with a little
over
60,000 records in it on MSSQL. I am doing a cfflush so I can watch

what record it is on so I can keep up with how quickly or slowly
the loop is running. The problem is after about 4850ish records
the loop slows waaay down. Any idea why the speed change or how I
can stop it
   from happening?
All I am doing is querying 2 columns and based on the data in
those 2 I am updating 3 other columns. So it looks up the data
then loops over
  
it then updates each record with some new data. Runs great till
about 95% of the loop. Looking for any ideas out there.
   
   
   
   
  
  
  
  
 
 



 

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


Re: Losing Sessions

2011-03-08 Thread Mark Mandel

Separate domains?

www.domain.com vs domain.com ?

I've been caught by that before, and as far as cookies go, they see them as
totally separate.

Mark

Sent from my mobile device.
On 09/03/2011 2:55 PM, Mary Jo Sminkey mary...@cfwebstore.com wrote:

 How about dropping a cflog tag with some useful info into
 OnSessionStart
 to see if the sessions is actually restarting or not?

 Hhm, currently it uses application.cfm so that isn't available, I'd have
to look at how easy it would be to switch it if this really becomes
necessary to debug it. I'm also going to see if I can get access to an
earlier server version to see if it's specific to CF9.

 But I did some diagnostics when I was testing that certainly seemed to
indicate that the session was being lost when you clicked through to the
next page. If I commented out the code that initialized the user ID in the
session, when I clicked through to the next page, it would throw an error
that it didn't exist when it hit a place in the page that used it. Since
nowhere in the code do I ever *remove* that variable, that's a pretty good
indication that the session is not persisting.


 --- Mary Jo




 

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


Re: How secure is RDS

2011-02-28 Thread Mark Mandel

I'm no Flex guru by any stretch, but I've never heard this one before (and
find it kinda hard to believe?)

Can anyone who has more Flex experience confirm this?

Mark

On Tue, Mar 1, 2011 at 7:25 AM, Bryan Stevenson 
br...@electricedgesystems.com wrote:

 Now I did mention that Flex says it REQUIRES RDS to be enabled in order
 to use Flex data services.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 17, 18 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com


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


Re: Big XML files processing Really s-l-o-w. Solution?

2011-02-14 Thread Mark Mandel

Either that, or start looking at something like StaX -
http://stax.codehaus.org/Home

Pulling that large a file in memory is going to suck a lot, no matter
what you do.

Mark

On Tue, Feb 15, 2011 at 10:24 AM, Casey Dougall
ca...@uberwebsitesolutions.com wrote:

 On Mon, Feb 14, 2011 at 5:44 PM, Matt Robertson websitema...@gmail.comwrote:


 My question is how do I reduce processing time... is there anything I
 could be doing better?

 I am tasked with doing an import on a file whose size can essentially
 be unlimited.  We've been able to handle in the 10-15mb range but it
 recently ballooned to 100 mb, and its going to get larger.  Processing
 time seems to be about 66 hours for a 45 mb file and thats a disaster.
  For a 14mb file its about 90 minutes.

 Whats happening is this:  CF is looping over a very large number of
 records that are in themselves fairly complex.  The more records there
 are, the longer the loop over them takes.  More records + more time
 per record = a seemingly geometric increase in processing time.





 Are you using MS SQL 2005? Because throwing the XML file directly at SQL
 server works a 1000% better. I've basically given up on processing large XML
 files directly with coldfusion. IF you can save these xml files on the SQL
 server you can make use of BulkInsert but that needs to read the file from
 that server. OR just setup a stored procedure, send your xml over and let it
 do it's thing.

 http://msdn.microsoft.com/en-us/library/ms345117%28v=SQL.90%29.aspx


 

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


Re: RE: dbcreate set to update, then errors out

2011-02-05 Thread Mark Mandel

Or you could just call ApplicationStop() or better yet ORMReload().

Mark

Sent from my mobile device.
On 05/02/2011 2:05 PM, Andrew Scott andr...@andyscott.id.au wrote:

 Those errors are because you need to stop and restart the Application, the
 most effective way is to change the Application name. The reason is that
the
 ORM is cached with the Entites, therefore a change will not take place
until
 the Application is restarted, hence the errors you are getting.


 Regards,
 Andrew Scott
 http://www.andyscott.id.au/



 -Original Message-
 From: Carol F [mailto:cfcn...@gmail.com]
 Sent: Saturday, 5 February 2011 1:31 PM
 To: cf-talk
 Subject: dbcreate set to update, then errors out


 Hi I'm a noobie with CF and ORM. I'm using SQL Server 2008

 I have a test CF app, and I have the ormSettings.dbcreate set to
update,
 like so:
 this.ormSettings = {
 datasource = dsn,
 dbcreate = update,
 schema = dbo,
 logsql = true
 };

 Here's my Account.cfc
 component persistent=true {
 property name=id column=AccountID generator=identity;
 property name=username;
 property name=password;
 property name=datecreated;
 }

 Here's my test.cfm, in cfscript:
 ormReload()
 x = new Account();
 x.setUsername(user1);
 x.setPassword(pw1);
 entitySave(x);

 It was working at first, so I decided to delete the database from the SQL
 side
 (via Management Studio).

 So now, when I reload test.cfm, I get this error:

 Error in executing the DDL.[Macromedia][SQLServer JDBC
 Driver][SQLServer]Identity column 'AccountID' must be of data type int,
 bigint, smallint, tinyint, or decimal or numeric with a scale of 0, and
 constrained to be nonnullable.
 I tried changing dbcreate to dropcreate, and I get the same error, but
 this
 new message is there as well:

 [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot drop the table
 'dbo.Account', because it does not exist or you do not have permission.

 How do I get it working again? I tried restarting the service, but that
 did not
 help. I even recreated the table, and CF dropped it but I still get the
 Error in
 executing the DDL error.

 Thanks!


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


 

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


Re: why is cf_builder so expensive?

2011-01-26 Thread Mark Mandel

 uhmn, what?

I think what you mean to say is that, *from what you know* there are no
plans to fix *the bugs that bother you*.

Which could mean that (a) they aren't being fixed or (b) you haven't been
told.

I don't think it can be unilaterally claimed that no bugs would be fixed,
that seems a tad ludicrous, no?

Mark

On Thu, Jan 27, 2011 at 2:50 PM, Andrew Scott andr...@andyscott.id.auwrote:

 with no plans to fix any of the current bugs for this release.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com


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


Re: Help needed with jpedal java integration

2011-01-25 Thread Mark Mandel

You're welcome :o)

Mark

On Wed, Jan 26, 2011 at 1:25 AM, Stefan Richter ste...@flashcomguru.comwrote:


 Works. A. treat.

 Thank you, and thanks Mark Mandel.

 Stefan



 On 24 Jan 2011, at 14:42, Leigh wrote:

 
  But the fact that the two jars seem to conflict with one
  another throws a real spanner into the works... Is there any
  way I could separate them and have both present in CF?
 
  Try using the javaLoader
  http://javaloader.riaforge.org/




 

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


Re: CF Permanent Redirect (301)???

2011-01-18 Thread Mark Mandel

Ah apche rewrite rule will get that www. in place super quick

But for the google side - look at canonical urls:
http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html

Mark

On Wed, Jan 19, 2011 at 8:07 AM, Aaron Renfroe mossma...@gmail.com wrote:


 Hello Everyone!

 I've been optimizing my site and checking it in google's webmaster tools,
 fixing it all to be a SEO sensation (LOL).

 I keep getting the advice to use a permenant redirect from my
 www.griffinrad.com to griffinrad.com. Here is what its saying to do:

 .cfheader statuscode=301 statustext=Moved permanently
 .cfheader name=Location value=http://www.new-url.com;

 My issue is i only have the one site (griffinrad.com), there is no old or
 new site that i'm redirecting. I'm just trying to get the people that put
 www before the url.

 When i look at my CTR and traffic, the WWW is hurting bad, but the non www
 url is doing well.

 How do i use this option? Do i really just put it at the top of all my
 pages and tell it to re-direct back to its self? That doesn't make allot of
 sense...

 Thank you in advance!

 Aaron

 P.S.
 Has anyone used http://websitegrader.com/ by HubSpot? I was curious of the
 validity of the information and advice.

 

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


Re: Open source - No Mortgage

2011-01-13 Thread Mark Mandel

Sorry Rick - trying to understand... what is the question?

Are you trying to work out how we all have time/inclination to work on OSS?

Mark

On Fri, Jan 14, 2011 at 12:20 PM, Rick Colman rcol...@cox.net wrote:


 I guess I am old school but I have car payments, a mortgage, etc. etc.
 All of this open source/freeware stuff leaves me a little mystified.

 I suppose that it is possible to make some money around the edges of
 these technologies, but, I have this vision of an army of geeks
 working on these open source projects while they live in the garage of
 their parents house ...

 Rick.

 

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


Re: Open source - No Mortgage

2011-01-13 Thread Mark Mandel

I also really like the RSA Animate of Daniel Pink's talk on What Motivates
Us:
http://www.youtube.com/watch?v=u6XAPnuFjJc

Mark

On Fri, Jan 14, 2011 at 1:27 PM, Sean Corfield seancorfi...@gmail.comwrote:


 On Thu, Jan 13, 2011 at 5:20 PM, Rick Colman rcol...@cox.net wrote:
  I guess I am old school but I have car payments, a mortgage, etc. etc.
  All of this open source/freeware stuff leaves me a little mystified.

 I can highly recommend The Cathedral  the Bazaar:

 http://oreilly.com/catalog/9780596001087

 It's a series of essays that examine the economics, motivations and
 unexpected success that surrounds the open source community.

 If you don't want to buy it, you can get most of it for free (of
 course!) online:

 http://www.catb.org/~esr/writings/cathedral-bazaar/http://www.catb.org/%7Eesr/writings/cathedral-bazaar/
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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

 

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


Re: Choosing between ColdFusion Builder and IntelliJ

2010-12-06 Thread Mark Mandel

Variable completion for me is the huge win. This is the biggest time saver
that I have ever had, and the biggest reason I use CFB.

Secondly is the integrated debugger. I pull this out when I need to debug
some seriously complex code, and it's a g-d send. It's one of those tools
that you may not need 90% of the time, but those 10% you do need it, it's
awesome.

Extensions are very useful. Crazy useful in fact (especially looking at what
they have demo'd in CFB2). Being able to right click on a folder/file in an
IDE and make your IDE do something is very useful. I've written at least 1
extension that has saved me hours of work.

That all being said - CFEclipse is free, both IntelliJ and CFB have trials.
Give them all a shot for a few days of development. See which one fits you.

( Side note - you can see my review of the CFML Plugin for IntelliJ IDE
here: http://www.compoundtheory.com/?action=displayPostID=498 )

Mark

On Tue, Dec 7, 2010 at 2:58 AM, Dave Burns cft...@burnsorama.com wrote:

 - So far the idea of extensions are great but I can run things like
 varscoper standalone without much effort and (correct me if I'm wrong!) but
 Apptacular is meant for the ORM features in CF9 and I have customers on CF8
 so I'll keep using PU-36 standalone.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com


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


Re: CFWDDX Serialization and Deserialization

2010-12-06 Thread Mark Mandel

I'm pretty sure I've stored HTML fragments inside WDDX packets just fine,
and never had an issue.

Mind you, I haven't use WDDX in probably ~8 years ;o)

Mark

On Tue, Dec 7, 2010 at 12:01 PM, Russ Michaels r...@michaels.me.uk wrote:


 I haven't used it in that way no, but as JSON is so widely used (JQUERY for
 example) I would imagine it can cope with anything.

 Russ

 -Original Message-
 From: Dan Baughman [mailto:dan.baugh...@gmail.com]
 Sent: 07 December 2010 00:43
 To: cf-talk
 Subject: Re: CFWDDX Serialization and Deserialization


 Yea I'm remembering why I chose to use cfwddx when I build this specific
 app, but I'm wishing I had used something else like that.

 Have you used that much with international or special character sets,
 writing to database, etc?

 Before I change serialization techniques I want to find the right one this
 time.

 On Mon, Dec 6, 2010 at 4:43 PM, Russ Michaels r...@michaels.me.uk wrote:

 
  Could you use CFJSON instead
 
  http://cfjson.riaforge.org/
 
  Russ
 
  -Original Message-
  From: Dan Baughman [mailto:dan.baugh...@gmail.com]
  Sent: 06 December 2010 21:24
  To: cf-talk
  Subject: CFWDDX Serialization and Deserialization
 
 
  It has recently (and very painfully) come to my attention that cfwddx
  serialize doesn't encapsulate strings in CDATA markers.
 
  This removes your ability to have HTML/XML markup in a string that is
 part
  of a struct you are trying to serialize/deserialize with out paying
 special
  attention to each string at serialization and deserialization time.
 
  Is there something I'm missing?  This would seem to be an incredibly
 useful
  feature that would save tons of work and make the serialization feature
  tons
  more useful.
 
 
 
 
 



 

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


Re: Alternative to CFCONTENT

2010-10-29 Thread Mark Mandel

Try mod xsendfile if you are on apache

http://tn123.ath.cx/mod_xsendfile/

Mark

Sent from my mobile device
On 30 Oct 2010 03:45, Chad Baloga cbal...@gmail.com wrote:


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


Re: Any way to prevent storing methods inside of an array

2010-10-05 Thread Mark Mandel

Odd question - why do you care if the methods are exposed?

If they are meant to be exposed, what is the point of hiding them?

Mark

On Wed, Oct 6, 2010 at 11:16 AM, Tony Bentley
cascadefreehee...@gmail.comwrote:


 Thanks Matt. I think I understand the difference between the two
 scopes and why not to use the this scope. For the very reason I am
 needing! In most cases it isn't a problem but when methods are exposed
 it becomes apparent.

 - Tony Bentley
 (sent from iPhone)

 On Oct 5, 2010, at 3:11 PM, Judah McAuley ju...@wiredotter.com wrote:

 
  Matt, do you know of a good rundown on the difference between This and
  Variables scope in a CFC? I have a basic understanding of it but it is
  always been something I wanted to make sure I understood the fine
  distinctions in, kind of like the difference between var scoped
  variables and the local scope in CF9.
 
  Cheers,
  Judah
 
  On Tue, Oct 5, 2010 at 3:00 PM, Matt Quackenbush quackfu...@gmail.com
 wrote:
 
  I don't think I am actually understanding the question at hand, but
  hopefully this will at least help you out.
 
  First of all, I would strongly discourage anyone from using the this
 scope
  of the CFC. �There are a variety of reasons for that recommendation, but
  chief among them is the ability to access and change the instance data
 from
  outside of the object.
 
  Instead, you will want to use the variables scope, and have getX() and
  setX() methods to access/change the instance data.
 
  Now then, if you are wanting a struct representing the instance data,
 then
  you would create a getMemento() method to return that, which would look
  something like the following:
 
  public struct function getMemento()
  {
  � � // duplicate it so the internal data cannot be changed outside of
 the
  object
  � � return duplicate(variables);
  }
 
  These are just general guidelines and may/should change based upon your
  actual needs.
 
  HTH
 
 
 
 
 

 

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


Re: Any way to prevent storing methods inside of an array

2010-10-05 Thread Mark Mandel

How does composition over inheritance apply here?

Mark

On Wed, Oct 6, 2010 at 12:09 PM, Tony Bentley
cascadefreehee...@gmail.comwrote:


 composition over inheritance?


 

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


Re: An instance of CF 7, CF 8, CF 9 on single pc

2010-09-14 Thread Mark Mandel

I've always liked using Virtual Machines:

http://www.compoundtheory.com/?action=displayPostID=334

Mark

On Wed, Sep 15, 2010 at 5:00 AM, Russ Michaels r...@michaels.me.uk wrote:


 the only problem with this is that cf7 and cf8 may not work correctly if at
 all with the version of java installed with cf9.
 In which case, you will need to install an older version of java and create
 a separate jvm.config for each instance.
 this article will help you with that.

 http://www.n8williams.com/devblog/coldfusion/multiple-coldfusion-instances-with-separate-jvm-configs-as-windows-services


 On Tue, Sep 14, 2010 at 6:43 PM, Jacob Munson yacoub...@gmail.com wrote:

 
  You will want to install CF9 first to make sure you get the most current
  JVM.  Install the Multi-server version of CF.  In your new CF 9 Admin,
 add
  a
  new CF9 instance in the Instance Manager.  Then install CF8 and CF7 as
 J2EE
  EARs.  Finally, you can add the CF8/CF7 EARs as instances in your CF9
  Instance Manager.  If you wish, you can add the instances to your web
  server
  to avoid having to use the ported sites.
 
  On Tue, Sep 14, 2010 at 11:22 AM, Don danfar...@hotmail.com wrote:
 
  
   What would be the best way to do this?
  
 
 
 

 

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


Re: An instance of CF 7, CF 8, CF 9 on single pc

2010-09-14 Thread Mark Mandel

All good points ;o)

My laptop is also a quad core, 8gb of ram... so yeah, it handles it nicely.

When running it on 65W mode on a plane... it tends to get... sluggish with
even 1 VM open.

Mark

On Wed, Sep 15, 2010 at 11:09 AM, Russ Michaels r...@michaels.me.uk wrote:


 that's the easiest option as long your machine has the power and diskspace
 and probably better even to have just 1 VM to save cluttering up your
 desktop pc with all those server apps auto starting and consuming your
 resources and slowing it down.
 If you have a single CPU this could be a bit slow though, I would suggest a
 dual core as minimum.

 I run windows 7 64bit on my desktop with 8gb RAM and a quad core CPU, so I
 don't really have any issues with running everything at the same time in
 here, so no need for a VM, although I do keep an unbuntu VM to hand in case
 I need it.

 On my laptop I have windows 7, a core2 mobile cpu and 2.5 gb ram. It
 struggles a bit running a VM (prob due to the mobile cpu) and everything
 runs fairly slow, so I prefer to just run Multiple instances of CF, railo,
 MSSQL, MySQL etc in a STOPPED state and just start the services I need as
 and when I need them. I do this with a batch file for each setup.

 e.g.
 CF7_mysql.bat will just start cf7 and mysql
 cf8_MSSQL.bat will just start cf8 and MSSQL

 you get the idea.


 On Wed, Sep 15, 2010 at 1:07 AM, Mark Mandel mark.man...@gmail.com
 wrote:

 
  I've always liked using Virtual Machines:
 
  http://www.compoundtheory.com/?action=displayPostID=334
 
  Mark
 
  On Wed, Sep 15, 2010 at 5:00 AM, Russ Michaels r...@michaels.me.uk
  wrote:
 
  
   the only problem with this is that cf7 and cf8 may not work correctly
 if
  at
   all with the version of java installed with cf9.
   In which case, you will need to install an older version of java and
  create
   a separate jvm.config for each instance.
   this article will help you with that.
  
  
 
 http://www.n8williams.com/devblog/coldfusion/multiple-coldfusion-instances-with-separate-jvm-configs-as-windows-services
  
  
   On Tue, Sep 14, 2010 at 6:43 PM, Jacob Munson yacoub...@gmail.com
  wrote:
  
   
You will want to install CF9 first to make sure you get the most
  current
JVM.  Install the Multi-server version of CF.  In your new CF 9
 Admin,
   add
a
new CF9 instance in the Instance Manager.  Then install CF8 and CF7
 as
   J2EE
EARs.  Finally, you can add the CF8/CF7 EARs as instances in your CF9
Instance Manager.  If you wish, you can add the instances to your web
server
to avoid having to use the ported sites.
   
On Tue, Sep 14, 2010 at 11:22 AM, Don danfar...@hotmail.com wrote:
   

 What would be the best way to do this?

   
   
   
  
  
 
 

 

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


Re: Millions of Coldfusion sites need to apply patches

2010-08-11 Thread Mark Mandel

While I'm glad that Adobe and Procheckup have worked this out, it shows yet
another reason why people should be making sure that their cfadmin is not
publicly accessible.

Making it only accessible from behind a firewall or vpn should be something
is something that I think people should be doing by default.

Regardless, thanks for the hard work from Adobe and Procheckup.

Mark

Sent from my mobile device

On 12 Aug 2010 06:57, Procheckup news n...@procheckup.com wrote:

 Millions of users of Adobe’s ColdFusion programming language are at risk
of losing control of their applications and websites.

 Penetration testing company ProCheckUp were able to access every file
including username and passwords from a server running ColdFusion. This was
completed through a directory traversal and file retrieval flaw found within
ColdFusion administrator. A standard web browser was used to carry out the
attack; knowledge of the admin password is not needed.

 A competent attacker would be able to steal files from the server and gain
access to secure areas as well and eventually modify content or shut down
the website or application.

 Richard Brain of ProCheckUp commented “This is a trivial attack which can
be performed easily by a competent engineer; ProCheckUp thanks Adobe for
consciously working with us to produce a patch which fixes the traversal
attack. By performing a simple Google search for inurl:index.cfm, it was
found that over 80 million examples of sites using Coldfusion.

 Procheckup has released an advisory relating to this flaw, though will not
publish the exploit code for 7 days giving administrators time to apply the
Adobe patches. Procheckup felt it unwise to delay releasing the exploit any
longer, as the exploit is trivial and can be easily determined by analysing
the patches.

 The full details of the vulnerability can be found on www.procheckup.com


 

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


Re: Millions of Coldfusion sites need to apply patches

2010-08-11 Thread Mark Mandel

Just expose the scripts, you don't have to expose the entire admin.

This could be done by simply copying them, or if you are on Apache, use
aliases, or on Linux, symbolic links, IIS Virtual directories (I think, I
don't really use IIS)...

Lots of options.

Mark

On Thu, Aug 12, 2010 at 8:52 AM, rex li...@pgrworld.com wrote:


 If we restrict access to CFIDE, won't the tags that make use of
 resources in this directory break?

 For example, the CF ajax features reference the file
 cfide/scripts/ajax/package/cfajax.js

 If we block CFIDE, these would break.  What would be the workaround?

 Procheckup news wrote:
  Regrettably Adobe has seen fit to release only patches for version 8 and
 version 9.
 
  The easiest solution is to restrict access to /CFIDE/, which
 unfortunately only a slight majority of Coldfusion sites have done.
 
 

 

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


Re: Millions of Coldfusion sites need to apply patches

2010-08-11 Thread Mark Mandel

Having worked with Google's search API, those numbers do tend to be
estimates ;o)

Mark

On Thu, Aug 12, 2010 at 12:44 PM, Bobby Hartsfield bo...@acoderslife.comwrote:


 Says About 2,600,000,000 results for me.



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

 -Original Message-
 From: andy matthews [mailto:li...@commadelimited.com]
 Sent: Wednesday, August 11, 2010 10:38 PM
 To: cf-talk
 Subject: RE: Millions of Coldfusion sites need to apply patches


 If you google for inurl:*.cfm

 You get 259 million results.


 andy

 -Original Message-
 From: Will Tomlinson [mailto:w...@wtomlinson.com]
 Sent: Wednesday, August 11, 2010 9:12 PM
 To: cf-talk
 Subject: Re: Millions of Coldfusion sites need to apply patches


  Richard Brain of ProCheckUp commented ???This is a trivial attack
 which
  can be performed easily by a competent engineer; ProCheckUp thanks
  Adobe for consciously working with us to produce a patch which fixes
  the traversal attack. By performing a simple Google search for
  inurl:index.cfm, it was found that over 80 million examples of  sites
  using Coldfusion.
 

 Gee, I thought ColdFusion was dead. Guess not

 Will





 

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


Re: SOT: Best CF development laptop

2010-08-04 Thread Mark Mandel

Some thoughts to add to the mix.

I consistently buy Dell laptops, for a variety of reasons, but primarily for
their 3 year, on site support. As a contractor, even a single day downtime
is no good.

No idea which part of the world you are in, but here in australia, I've
called tech support at 3pm and had a tech at my house 9am the next morning
to fix my computer.

If you can find a brand of laptops that provide multi-year on site support,
it's invaluable.

On another note - if you want the best performance out of your vms, put them
on an external hd, the faster the better, with the fastest connection as
well.

Anyway, just my experience, thought I would share.

Sent from my mobile device

On 3 Aug 2010 17:39, Victor Moore victor.mo...@gmail.com wrote:

 I did look around and some time you can get 100 off.

 The advantage at the sony store is that it can be somewhat customized
 (including engraving) and the previous model F11 has a 200$ discount

 Thanks

 On Tue, Aug 3, 2010 at 11:14 PM, Eric Roberts
 ow...@threeravensconsulting.com wrote:

 You might want to check out some of the deals they have at Tiger Direct
and
 New Egg...you can save a lot of money that way.

 -Original Message-
 From: Dave Watts [mailto:dwa...@figleaf.com]
 Sent: Tuesday, August 03, 2010 11:10 PM
 To: cf-talk
 Subject: Re: SOT: Best CF development laptop


 Price wise they are very similar. Asus has Blu-Ray, bigger screen and
 hard drive but battery life sucks.
 Sony smaller screen and hard and no Blu-Ray drive (I can add one for
 100 I think) but better CPU and much better battery.

 A lot of these things really depend on how you plan to use it. If
 you're getting a desktop replacement, you probably don't care about
 battery life. If you're not going to watch movies, you don't care
 about Blu-Ray, etc, etc.

 When I got my laptop (Dell Studio XPS 13) I had a very specific set of
 requirements, and that's what guided my purchase. I wanted something
 no larger than 13 (I have to schlep it around a lot), with at least 8
 GB RAM, a SSD drive (fast, doesn't run as hot or use as much battery),
 and a webcam. There were only about 3 laptops around at the time that
 met those requirements, and this was the cheapest.

 In the end I want one that's good quality and doesn't die after one
year.

 Overall I've been very happy with Sony hardware, but their quality all
 seems to be on the high end - if you buy a really expensive Sony,
 it'll generally have a noticeably better build quality than their
 lower-end stuff.

 That said, I have some Sonys that have been all around the world, had
 the crap kicked out of them, and still work just fine.

 I don't really have any experience with Acer hardware.

 @Dave u know the saying u can't be too slim or have too much memory :)

 Well, sure, if you're going to run a 64-bit OS. Otherwise, there's no
 need for more than 4GB.

 When I bought my laptop, about 18 months ago I guess, I specifically
 wanted one with 8GB RAM, and they were fairly rare at the time. But I
 wanted that primarily for running multiple VMs. I didn't really need
 that for CF development alone, where you might run CF, a database
 instance, an IDE and a browser.

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

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





 

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


Re: SOT: Best CF development laptop

2010-08-04 Thread Mark Mandel

Maybe I am off base with this one, but the research I did a while back
stated that the biggest bottleneck to vm performance was disk io conflicts.

I.e. if your vm lives on the same hd as your os and your programs they are
all competing to read and write at the same time.

Having a separate hd, internal or external solves that problem. (i have an
external 7200 rpm firewire drive).

I'll have to look up the articles that discussed this.

Mark.

Sent from my mobile device

On 4 Aug 2010 04:39, Dave Watts dwa...@figleaf.com wrote:

 On another note - if you want the best performance out of your vms, put
them
 on an external hd, the faster the better, with the fastest connection as
 well.

 Yikes! I'm sorry, but this is overall terrible advice unless you
 happen to have external eSATA or something along those lines. Most
 people have external drives using USB 2, and running VMs from that
 will be exponentially slower. I haven't tried USB 3 yet, but no matter
 what it's not going to match the performance from running them
 onboard.

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

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

 

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


Re: Export CF app as HTML files to save on cd

2010-07-20 Thread Mark Mandel

If you're on a linux platform, you can always cfexecute a wget to mirror a
website to HTML very easily.

Mark

On Tue, Jul 20, 2010 at 11:08 PM, Matthew VanderMeer
mlvan...@uwaterloo.cawrote:


 I have built a large CF application that tracks many different things about
 the center that I work for.  One example is all of the publications that the
 scientists in the center have written.  Our center is undergoing and
 external review and as a part of that review they would like lists of
 publications by scientist.  The app that I have displays this information
 very cleanly by drawing it from the database.

 What I would like to do is export all the HTML from this part of the
 application so I can display the website in HTML, independent of the
 database.  I want to save the website on a cd and then distribute the cd to
 all of the external reviewers.

 Can someone point me in the direction of a tutorial or give me a few hints
 about how I could accomplish this?

 

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


Re: Best conference?

2010-07-14 Thread Mark Mandel

cf.Objective(ANZ) ;o) It's in Australia. What more do you want? ;o)

Mark

On Wed, Jul 14, 2010 at 6:34 PM, Will Swain w...@hothorse.com wrote:


 Scotch on the Rocks.

 There was free beer this year. Free beer is always good.


 -Original Message-
 From: Andrew Clarke [mailto:s...@clarke.ca]
 Sent: 13 July 2010 21:57
 To: cf-talk
 Subject: Re: Best conference?


 Thanks, I hadn't really considered that one.  My big concern right now is
 CFUnited.  I would have liked to go but since there are other options and
 it's a very inconvenient time for me I think I'll check out one of the
 others later on in the year or next year.

 I'm not knocking NCDevCon but most of the emphasis seemed to be on other
 than CF, and most of the CF topics didn't really grab my attention.

 - Andrew.

 On 2010-07-13, at 16:36, Charlie Griefer wrote:

  They've all got their pros and cons.
 
  I think CFUnited has the widest variety of content (from beginner to
  somewhat advanced), and it's certainly one of the biggest CF-based
  conferences (probably second only to MAX).  Lots of networking and
  good times with friends.
 
  Based on what you've said, I'd look at cf.Objective().  It's a smaller
  conference with more advanced topics, and probably more that you'd
  find relevant.
 
  While conferences like NCDevCon may feature Flash/Flex etc, you
  shouldn't let that dissuade you.  As long as there are enough sessions
  specific to what you want to learn, doesn't really matter how many
  other sessions there might be, or how off-topic they are.  And as
  far as NCDevCon goes, you can't beat the price.
 
  IMO, regardless of which one you may choose to attend, it'll be
 worthwhile.
  Of the conferences that I've been fortunate enough to get to
  (CFUnited, cf.Objective(), and MAX), it's evident that the folks
  behind them make every effort to ensure that it's both a valuable and fun
 experience.
 
 
  -
  Charlie Griefer
  http://charlie.griefer.com/



 

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


Re: Turning off try/catch

2010-07-13 Thread Mark Mandel

I was going to say - this is probably a good place for a tool like Logbox.

If you log your errors in your catch statements at one level (say debug
level), then when you are working in development you set your log level to
'debug'.

When you're in stage or prod, you have it at 'warn' or 'error'.

That way you can easily change your reporting, depending on what level you
want to know things at.

How's that?

Mark

On Wed, Jul 14, 2010 at 5:14 AM, Andrew Clarke s...@clarke.ca wrote:


 You can have errors dumped to the screen in dev, and quietly handled in
 production, if you keep the try/catch.

 You probably understood what I was saying earlier, but just in case, I'll
 reiterate my point.  If you call some sort of error handling function inside
 the cfcatch blocks, you can do whatever you want in that function.  For
 example, you can:

 - Have errors in production emailed to you, but not errors in dev.
 - Have errors dumped to the screen when it's your IP, but emailed to you
 when it's someone else's.
 - Write errors to an HTML file that you can read even if you don't have
 access to the filesystem or ColdFusion logs.
 - Handle different types of errors differently, so that some types of
 errors can be logged, others passed back to the screen, etc.
 - Rethrow errors for some people/environments, and not for others.

 All of this can be done by adding one line to each cfcatch block.  There
 are security implications to some of the suggestions above, so be careful
 where you log  email your errors if they contain potentially sensitive
 information.

 - Andrew.

 On 2010-07-13, at 14:31, Shannon Rhodes wrote:

 
  Thanks all, great suggestions.  I especially like the find/replace
 option, since I don't have access to the administrator and log files here.
 
  Andrew, this is a dev site that I fully expect to error dozens of times,
 my main task being clean-up.  It costs time and aggravation when these
 errors are handled so I have to detect the issue as a logical error rather
 than as a hard error.  This is a new site based on an old site where about
 half the object references are now directed to a new schema, resulting in
 database errors.  So yes, this is an example of a situation where hard
 errors to the screen are more efficient than gracefully degrading errors and
 having them quietly sent to admin.
 
  I heartily endorse proper use of try/catch in production environments,
 but dev is a different beast.
 
  Is there any global way to turn off try/catch handling?  I believe
  I've heard of this for VB but I don't think I've come across it for CF.
 
 
  My issue is that I'm creating a new version of a site based on an
  existing codebase, and I have to update the schema references and some
  other cleanup.  It's a lot easier to fix a hard error than to
  notice/track down logical errors (i.e. did the item I just saved not
  show up because it wasn't saved or because the query to display is
  wrong).
 
  It's clunky to go around commenting out try/catch blocks.
 
 
 

 

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


Re: Serving Files via cfcontent - how much processing is required

2010-06-17 Thread Mark Mandel

Doh, I just realised you're not running apache, otherwise I would say use
mod_xsendfile:
http://tn123.ath.cx/mod_xsendfile/

Maybe there is something similar for IIS?

Mark

On Fri, Jun 18, 2010 at 8:49 AM, Dave Watts dwa...@figleaf.com wrote:


  In other applications I routinely use cfcontent to serve protected files
 on
  extranet applications however the traffic ( 10-20 files/day) is nowhere
 near
  as rigorous as will be required here with 12,000 per day of 40Meg average
  per file.  I am considering serving the files now through cfcontent via
 HTTP
  instead of FTP for a couple of reasons. 1) because most Internet Security
  programs block FTP and we have to help people (mostly kids) open the port
  and 2) to prevent direct linking to the files because this endeavor is
  funded by ads on the website (and my wallet).
 
  I know the most efficient way to serve this quantity and size of files is
  via ftp but what I don't know is what is required by the various CF
 engines
  AdobeCF, OpenBD, Bluedragon, Ralio to serve up the same via HTTP.  Will
 our
  new server hardware handle that kind of HTTP file traffic (I suspect so),
  will OpenBD/Tomcat be up to the task or will I need a different CFML
 engine?
  Essentially what I need to know is what it would take to routinely serve
  that many/size files through the CF engine. I don't want to go down this
  road and find that people are having problems downloading because the CF
  engine / Web server can't keep up.  Has anyone had experience with this
 and
  can you offer some advice?

 My advice for you would be to avoid using CFCONTENT for this, as it's
 really not designed for this. Each request using CFCONTENT will use
 one of your threads, I think, and there are decent alternatives.

 The alternative I'd recommend would be the use of temporary symlinks.
 When someone is granted access to a file, you'd create a symlink for
 that file, pointing to a web-accessible location, then let the user
 download it via HTTP. Sometime after, you'd delete the symlink.
 Exactly how long after, I'm not sure - that would be a balance of
 convenience to the user (in case they don't download it immediately)
 versus the potential for abuse (the user provides the link to someone
 else).

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

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

 

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


Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Mark Mandel

I believe that is enterprise only, no?

Mark

On Thu, Jun 17, 2010 at 4:31 AM, Alan Rother alan.rot...@gmail.com wrote:


 IF you have purchased CF9 for your production systems, you may also install
 a copy on your DEV / Staging servers at no additional cost and without
 violating the license.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com


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


Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Mark Mandel

Well whaddayaknow learn something new every day.

Thanks for the heads up!

Mark

On Thu, Jun 17, 2010 at 8:05 AM, Alan Rother alan.rot...@gmail.com wrote:


 Nope...

 Either edition.

 Enterprise offers more Cloud Instances than Standard (10 vs 1)

 http://www.terrenceryan.com/blog/post.cfm/coldfusion-9-eula-changes



 http://www.adobe.com/products/eulas/pdfs/adobe_coldFusion_combined_20090811_0930.pdf

 3.2 Development Software License. This Section 3.2 applies only if Licensee
 has obtained either a valid
 developer edition of the Software or one or more separate Production
 Software licenses (see Section 3.1.3).
 Adobe grants Licensee a license to install and use the Software as
 Development Software on one Server.
 Licensee must separately obtain the right to install or use the Software as
 Developer Software on more than
 one Server. In addition to the other terms contained herein, Licensee’s
 license to the Development Software
 is limited to use in Licensee’s technical environment strictly for testing
 and development purposes and not
 for production purposes. Licensee may (a) install the Development Software
 on Servers connected to
 Licensee’s Internal Network provided that the total number of Computers
 used
 to operate the Development
 Software does not exceed the licensed number of Servers, and (b) permit
 Authorized Users to use the
 Development Software in accordance with this Agreement. Licensee shall not
 (i) use the Development
 Software for any application deployment in a live or stand-by production
 environment, in each case,
 including, without limitation, in any environment accessed by application
 end-users including but not
 limited to servers, workstations, kiosks, and mobile computers, (ii) access
 the Development Software from
 more than a single IP address at any given time, or (c) use the Development
 Software to deploy
 applications that are accessed by end users. NOTWITHSTANDING ANYTHING TO
 THE
 CONTRARY,
 THE DEVELOPMENT SOFTWARE IS PROVIDED TO LICENSEE BY ADOBE ON AN AS IS
 BASIS,
 AND ADOBE DISCLAIMS ANY WARRANTY OR LIABILITY OBLIGATIONS TO LICENSEE OF
 ANY KIND.

 http://www.terrenceryan.com/blog/post.cfm/coldfusion-9-eula-changes=]

 On Wed, Jun 16, 2010 at 2:48 PM, Mark Mandel mark.man...@gmail.com
 wrote:

 
  I believe that is enterprise only, no?
 
  Mark
 
  On Thu, Jun 17, 2010 at 4:31 AM, Alan Rother alan.rot...@gmail.com
  wrote:
 
  
   IF you have purchased CF9 for your production systems, you may also
  install
   a copy on your DEV / Staging servers at no additional cost and without
   violating the license.
 
 
 
 
  --
  E: mark.man...@gmail.com
  T: http://www.twitter.com/neurotic
  W: www.compoundtheory.com
 
  cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
  http://www.cfobjective.com.au
 
  Hands-on ColdFusion ORM Training
  www.ColdFusionOrmTraining.com
 
 
 

 

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


Re: Coldfusion Builder Stored Procedures

2010-06-01 Thread Mark Mandel

I'm pretty sure the data tools plungin from eclipse has this functionality,
if you are looking for a better integrated database experience in eclipse.

Sent from my mobile device

On 2 Jun 2010 01:29, Raymond Camden rcam...@gmail.com wrote:


I don't believe it is supported. I did a quick search on the CFBuilder
public bug tracker and this was the closest related bug:

http://cfbugs.adobe.com/bugreport/flexbugui/cfbugtracker/main.html#bugId=75148

It seems a bit broad though. I'd consider adding a very specific bug.
I'd vote for it.



On Tue, Jun 1, 2010 at 10:13 AM, Paul Alkema
paulalkemadesi...@gmail.com wrote:

 Hi,

 Does...



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


Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Mark Mandel

On Wed, Jun 2, 2010 at 2:24 PM, Les Mizzell lesm...@bellsouth.net wrote:


  It won't even be mainstream then. There's still an awful lot of people
 out there running XP

 XP isn't broke. I've seen no reason to fix it myself so far. Guess I'm
 one of those awful lot of people. If MS had given me an upgrade path
 from XP instead of a delete everything start from scratch install all
 your crap from the beginning path, I might have made the move to Win 7
 already.


Check out Windows Easy Transfer:
http://www.microsoft.com/windows/windows-vista/features/easy-transfer.aspx

It's actually really good stuff.

Mark



-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 18, 19 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com


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


Re: RE: This expression must have a constant value error

2010-05-29 Thread Mark Mandel

I think you find that you can't have a variable for a cfcase value, I expect
that that will be your issue.

Sent from my mobile device

On 30 May 2010 13:56, Bobby Hartsfield bo...@acoderslife.com wrote:


What is the value of #Games.GameMasterID#?



-Original Message-
From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
Sent: Saturday...
Archive:
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334117

Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.hous...


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


Re: XPATH

2010-05-26 Thread Mark Mandel

Chad,

There is a great discussion of exactly this issue here:
http://www.bennadel.com/blog/494-Stripping-XML-Name-Spaces-And-Node-Prefixes-From-ColdFusion-XML-Data-To-Simplify-XPath-.htm

Basically - xpath and namespaces are a pain in cf.

Check the comments of the blog post, they offer a good number of good ideas.

Mark

On Thu, May 27, 2010 at 3:06 AM, Chad Gray cg...@careyweb.com wrote:


 Can someone help me figure out the XPATH of the node that contains “DISK
 SENT”?

 Thanks!
 Chad

 ?xml version=1.0 encoding=UTF-8?
 soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:xsi=
 http://www.w3.org/2001/XMLSchema-instance;
  soapenv:Body
  ns1:jobStatusResponse soapenv:encodingStyle=
 http://schemas.xmlsoap.org/soap/encoding/; xmlns:ns1=
 http://DefaultNamespace;
   jobStatusReturn xsi:type=ns2:QueryBean xmlns:ns2=
 http://rpc.xml.coldfusion;
columnList soapenc:arrayType=xsd:string[1] xsi:type=soapenc:Array
 xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/;
 columnList xsi:type=xsd:stringPRODUCTIONSTATUS/columnList
/columnList
data soapenc:arrayType=xsd:anyType[][1] xsi:type=soapenc:Array
 xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/;
 data soapenc:arrayType=xsd:anyType[1] xsi:type=soapenc:Array
  data xsi:type=soapenc:stringDISK SENT/data
 /data
/data
   /jobStatusReturn
  /ns1:jobStatusResponse
  /soapenv:Body
 /soapenv:Envelop

 

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


Re: cflocation in cfc

2010-05-22 Thread Mark Mandel

I would say so, yes... but given that you've given us no details, its very
hard to say for sure.

Sent from my mobile device

On 23 May 2010 10:34, Matthew P. Smith m...@smithwebdesign.net wrote:


bad idea?




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


Re: SOT: most important CFML framework

2010-05-17 Thread Mark Mandel

The most important framework is the one that allows you to get things done.

Mark

On Mon, May 17, 2010 at 4:10 PM, Arsalan Tariq Keen
arsalk...@hotmail.comwrote:


 What's the response on CFWheels? Isn't it gaining popularity?
 I wanna know because I am in the phase of choosing a framework. FW/1 and
 CFWheels are my preferences because they are easy to learn. Amongst them I
 am getting more inclined towards CFWheels but on the other hand I haven't
 seen FW/1 in much detail. Is there anyone who can give a comparison between
 the two?


 Regards,
 Arsalan

 --
 From: Maureen mamamaur...@gmail.com
 Sent: Monday, May 17, 2010 9:19 AM
 To: cf-talk cf-talk@houseoffusion.com
 Subject: Re: SOT: most important CFML framework

 
  Which is meaningless.  I've heard of all of them.  The only one I'm
  currently using is FW/1 and a lot of peeps who used to use others are
  moving that way as well.
 
  On Sun, May 16, 2010 at 10:24 AM, David McGuigan
  davidmcgui...@gmail.com wrote:
 
  It's the total number of people who have ever heard of them.
 
 

 

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


Re: Software Recommendations

2010-05-13 Thread Mark Mandel

Just to throw the Australian angle - Farcry has an integrated blogging
platform. I'm not sure if it has an integrated Shopping Cart, although I'm
sure someone has written one.

It's worth investigating both engines if you are going to take the time.

Mark

On Fri, May 14, 2010 at 7:42 AM, Alan Rother alan.rot...@gmail.com wrote:


 Mura is still in the infant stages on Plug in options. They have a small
 handful, some free some paid.

 They have stated they want to build an app store (ala apple) for Mura Plug
 ins.

 But it hasn't happened, yet...

 =]
 --
 Alan Rother
 Adobe Certified Advanced ColdFusion MX 7 Developer
 Manager, Phoenix Cold Fusion User Group, AZCFUG.org


 

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


Re: How to protect PDF documents from direct access

2010-05-03 Thread Mark Mandel

Keep them off the webroot, and then serve them up with cfcontent or apache
mod_xsendfile

Mark

On Tue, May 4, 2010 at 8:57 AM, col...@uci.edu col...@uci.edu 
col...@uci.edu wrote:


 Is there some easy way to protect PDF (and perhaps other kinds of
 documents) from sideaways access?

 In other words, after building login pages, protecting html/cfm pages from
 direct access, etc.; someone can still directly access a document with a
 direct URL, like

 www.xxx.com/.pdf

 Any quick and easy ideas appreciated.

 Rick.

 

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


Re: How to protect PDF documents from direct access

2010-05-03 Thread Mark Mandel

Rename them with a .cfm extension - put a Application.cfm in the root of the
dir with a cfabort in it.

Then push them out through cfcontent and using HTTP Headers tell the
browser the name of the file without the .cfm extension.

Mark

On Tue, May 4, 2010 at 12:53 PM, Rick Colman rcol...@cox.net wrote:


 I am on a shared host, so moving outside the web directories is not
 practical.

 On 5/3/2010 4:09 PM, Dave Watts wrote:
 
  Is there some easy way to protect PDF (and perhaps other kinds of
 documents) from sideaways access?
 
  In other words, after building login pages, protecting html/cfm pages
 from direct access, etc.; someone can still directly access a
  document with a direct URL, like
 
  www.xxx.com/.pdf
 
  You can remove them from web-accessible directories and (a) serve them
  with CFCONTENT, or (b) create a temporary symlink of some sort using
  CFEXECUTE.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.
 
 

 

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


Re: How to protect PDF documents from direct access

2010-05-03 Thread Mark Mandel

...or I could also say ;o) get off a shared host.

Mark

On Tue, May 4, 2010 at 1:00 PM, Mark Mandel mark.man...@gmail.com wrote:

 Rename them with a .cfm extension - put a Application.cfm in the root of
 the dir with a cfabort in it.

 Then push them out through cfcontent and using HTTP Headers tell the
 browser the name of the file without the .cfm extension.

 Mark


 On Tue, May 4, 2010 at 12:53 PM, Rick Colman rcol...@cox.net wrote:


 I am on a shared host, so moving outside the web directories is not
 practical.

 On 5/3/2010 4:09 PM, Dave Watts wrote:
 
  Is there some easy way to protect PDF (and perhaps other kinds of
 documents) from sideaways access?
 
  In other words, after building login pages, protecting html/cfm pages
 from direct access, etc.; someone can still directly access a
  document with a direct URL, like
 
  www.xxx.com/.pdf
 
  You can remove them from web-accessible directories and (a) serve them
  with CFCONTENT, or (b) create a temporary symlink of some sort using
  CFEXECUTE.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.
 
 

 

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


Re: CFDocument Slowness (CF8)

2010-03-14 Thread Mark Mandel

Can the server resolve itself via DNS? I.e. if you ping its own hostname,
does it work?

I've often seen cfdocument issues because of DNS resolution issues, as it
basically does a browser snapshot of a HTML rendering.

Mark

On Mon, Mar 15, 2010 at 11:26 AM, E Cohe cft...@longmeadcrossing.comwrote:


 Hello,

 I am moving ColdFusion to a new server and I am running into an issue which
 does not exist on the current server: producing PDFs with CFDOCUMENT is very
 slow--it can take 60 seconds to produce a single 3 page PDF file. The same
 thing on the current, similarly configured server takes maybe 5 seconds to
 fully load.

 I have tested a few  things to try to narrow the problem down:

 - Both servers are running ColdFusion 8 , but one the new server now has
 the newest patches so the new one is version 8,0,1,195765 and the old one is
 version 8,0,0,176276  (I had this problem before I installed the patches
 though, so I don’t think that’s the issue)

 - Other than that, the main difference I can find with the installations is
 that when I click on the i in the coldFusion administrator, I notice the
 one that works normal speed, has an OLDER version of JVM.  (Old server:
 1.6.0_01 New Server: 1.6.0_04)

 - The problem does not seem to have to do with images.  I have commented
 out images and still have the same slow speeds.  I also know that if I run
 the template without CFdocument, it runs very quickly.

 Thanks for any ideas!

 EC




 

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


Re: Possible switch to CFEclipse

2010-02-10 Thread Mark Mandel

Well, the question here is more - what do you do outside of cfml editing?

I tend to download the Eclipse Java EE developer package that has the
Eclipse Web Tool Plugins (WTP) installed by default - so that covers some
straight HTML, XML and JS files. Some people prefer Aptana studio for that,
but they can work side by side easily.

If you are looking at doing database querying through Eclipse, you can look
at the Eclipe Data Tools Plugins (DTP). This can be a little tricky to set
up, and provides decent database support, but a vendor specific client tends
to be better - YMMV.

The next question is - are you using source control? If so, which one? Each
has at least 1 plugin at its disposal depending on what you are doing.

Are you doing unit testing? The mxUnit plugin is a must if you are.

I could go on, but really it boils down to - what do you want Eclipse to do
for you?

Mark

On Thu, Feb 11, 2010 at 1:23 PM, Terry Troxel te...@it-werks.com wrote:


 I do not want to start a flame here, just get some information to help me
 make a decision.
 I am using CF8 and not yet ready for CF9. I am currently using Homesite+
 for
 my IDE and would like to know what the requirements are for installing
 Eclipse and CFEclipse on my 32 bit dual core laptop w/3 gigs of ram.
 I do not know anyone who is currently using it which is why I am asking
 here. I do not do any Java programming at all and am planning on using it
 to
 replace Homesite if that is possible and maybe get some advise from all of
 you.
 If you recommend Eclipse, which package and other plugins do I need as
 well?

 Terry



 

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


Re: IE8 is killing my website

2010-02-02 Thread Mark Mandel

Windows firewall maybe?

Mark

On Wed, Feb 3, 2010 at 7:55 AM, Rick Sanders c...@webenergy.ca wrote:


 This seems to only be a problem on Windows XP. Myself nor my clients have
 problems with IE8 on Vista or Windows 7.

 Are your users on a network on an Active Directory domain with a domain
 policy? If the Server hasn't been updated with the new IE8 policies, then
 it
 defaults to the IE7 policies which are different than IE8.

 In the Internet options, particularly the Privacy tab, the Medium setting
 restricts 1st party cookies that save information that can be used to
 contact you without consent. This setting is default in IE8.

 If you're using an older version of CF server than 8, it may be time to
 think about upgrading. I have not had any issues with IE8 on any Windows
 platform with 1st party cookies.

 Rick Sanders
 Canada: 902-431-7279
 USA: 919-799-9076
 www.webenergy.ca

 -Original Message-
 From: subscripti...@advantex.net [mailto:subscripti...@advantex.net]
 Sent: Tuesday, February 02, 2010 1:34 PM
 To: cf-talk
 Subject: IE8 is killing my website


 The curse of the Microsoft browsers continues.  This time, it's not even a
 design issue, it's a functional issue, and it's ruining our user
 experience.

 Plainly put, a certain subset of IE8 users are unable to log in to our
 site.
 Mind you, this is a signup/login process that has worked, literally for
 years.  Along comes IE8, and suddenly there has to be a problem.

 It appears that IE8 is not storing our cookies, that track a successful
 login.  Every other browser works fine.  Some group of IE8 users, however,
 get our successful login screen, but when they click to go to a members
 area of the site, they are NOT logged in.

 We've done everything, including the setup of a P3P policy.  This should
 work, for everyone, but it does not.  I'm at my wits end here, and
 embarrassed as hell that I can't figure out what this issue is.  I can't
 even reproduce it here, but I've seen it happen via remote desktop on some
 (gracious) member's PCs.

 We've tried telling them to check their security settings, clear cache,
 clear cookies, and more.  But damn, they shouldn't HAVE to do all this
 stuff.  Not this many people (and growing).  They can accept cookies and
 view other sites (presumably), just not ours.

 I need ideas... fast.  Can I solicit the help of the CF community on this?
 I have no idea where else to look.

 Thanks,

 Marc





 

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


Re: Why i fear ColdFusion is on its last legs

2010-01-21 Thread Mark Mandel

* Sigh *

You know what.  This kind of stuff really upsets me.

If you want change - then its time to step up and do something about it.

Get involved in your local UGM, start presenting to people, go to local
techups, or non-CF conventions or twitter meets.  There are SO many avenues
out there for intigating change its ridiculous.

Being more proactive also allows you to find work through multiple avenues
as well as you build relationships with people.  I would say almost the
majority of contract jobs out there are fulfilled by word of mouth, that I
think that Seek is almost a waste of time.

The only thing you can control the change of is yourself. You can't control
the change in other people.

Mark


-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

Hands-on ColdFusion ORM Training @ cf.Objective() 2010
www.ColdFusionOrmTraining.com/


~|
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:329996
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|JRun CPU and|or memory problem.

2010-01-20 Thread Mark Mandel

First of all - having memory tracking enabled in your production server is
going to make it crawl ;o)

I would start with thread dumps. You can do this through the monitor (there
is a snapshot feature that I believe does this), although setting up a cron
job or similar to fire the Java commands neccessary to get it to happen on
interval wouldn't be bad.

May just be easier to do it when the CPU spikes - I leave it up to you, but
grab a few at least.

Then use a tool like Thread Dump Analyzer - so you can see what ColdFusion
is actually doing under the hood.

Once you can see what is actually going on - you should be able to see what
is causing the problem.

Mark

On Thu, Jan 21, 2010 at 8:37 AM, Ian Skinner h...@ilsweb.com wrote:


 Any good information on how to track down what is causing a ColdFusion
 server to behave badly.

 The symptoms we have to date:

 1) Starting January 5th, our Windows 2003, ColdFusion Web Server will
 suddenly jump from under 5% CPU usage to an average over 50% with
 frequent spikes to 80%, 90% and over.

 2) When this happens the JRun process for our main JRun process will be
 running with over 600,000kb of memory.

 3) Restarting this ColdFusion instances resets the server back to it's
 normal 5% CPU usage.

 4) When I point the Administrator monitor at the server nothing seems to
 be obviously wrong

 5) *EXCEPT*  The monitor will sometimes report an Application Scope of
 nearly 821,000,000,000,000kb.  Yes, that is over 100 petabytes of data
 according to Wolfram-Alpha.  I am pretty sure we do not have that much
 memory on this server.

 The weird thing is that there does not seem to be a correlation between
 that impossible memory spike and the problem with the server.  I have
 been able to see the spike twice since I have started monitoring things
 yesterday.  Once this occurred during a problem period, once it did not.

 Using the monitor and looking at the various log files, I can not find
 any clear smoking gun, so I am looking for advice on how one my track
 down an elusive problem like this.

 

~|
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:329862
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|JRun CPU and|or memory problem.

2010-01-20 Thread Mark Mandel

On Thu, Jan 21, 2010 at 9:51 AM, Ian Skinner h...@ilsweb.com wrote:

  First of all - having memory tracking enabled in your production server
 is
  going to make it crawl ;o)
 

 Well, this is an Intranet web server that has a minimal load probably
 measured in a dozen or two simultaneous requests at most.  So while the
 monitor is definatly a load, I beleive the server has plenty of capacity
 to spare in its normal state.


No seriously - don't use it in production, ever. Ever. Ever.

The thread dumps are pretty straight forward to read - just ignore most of
the the Java gobbley-de-gook.

Mark

-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

Hands-on ColdFusion ORM Training @ cf.Objective() 2010
www.ColdFusionOrmTraining.com/


~|
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:329867
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|JRun CPU and|or memory problem.

2010-01-20 Thread Mark Mandel

+1 to Dominic

Very useful tool! and can be setup so you can access the server remotely -
it doesn't have to run on the same server.

Mark

On Thu, Jan 21, 2010 at 10:15 AM, Dominic Watson 
watson.domi...@googlemail.com wrote:


 Something else to look at is jConsole. It comes with the Java SDK and will
 let you look at any java app's memory, thread and cpu usage in detail
 (you'll need to change jrun's JVM args to have it report those stats).
 Something like SeeFusion will have some more ColdFusion specific stuff
 (long
 running pages, queries, etc), but jConsole gets into the memory side of
 things in more detail (and it's free).

 HTH

 Dominic


-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

Hands-on ColdFusion ORM Training @ cf.Objective() 2010
www.ColdFusionOrmTraining.com/


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


Re: hosting

2010-01-13 Thread Mark Mandel

I've used atoz before, and it was just an aweful experience all around. I'd
vote no to atoz.

Mark

On Thu, Jan 14, 2010 at 11:19 AM, denstar valliants...@gmail.com wrote:


 +1 for really inexpensive and they've been swell.  Not a single
 complaint here!

 If it's just for playing around, someone has free hosting on cf9-- I
 think I just saw it come across here recently, can't remember the
 location tho.

 hostingatoz has been fine, just fine.

 Thanks Charlie!  I'm pretty sure you were the one who turned me onto
 them, a couple years ago.

 :den

 --
 To find out what one is fitted to do, and to secure an opportunity to
 do it, is the key to happiness.
 John Dewey

 On Wed, Jan 13, 2010 at 5:00 PM, Phillip Vector wrote:
 
  I can attest to this. Except for one ticket that took 5 months or so
  to fix, they have always been prompt and helpful setting up service.

 

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


Re: Load CF Page - get asked to save binary data?

2009-12-21 Thread Mark Mandel

I've seen this before when hitting a cf server before Apache has been
configured right.

Usually, it takes a browser restart to get the correct mime type to get
through - 'cause the browser caches it.

Mark

On Tue, Dec 22, 2009 at 4:58 PM, Jason Slack applesl...@gmail.com wrote:


 HI All,

 CF 8.01 and CentOS 5.4

 I am moving along further, not CF loads great, Apache loads mod_jrun22.so.

 When I try to get to:
 http://my ip/cfide/administrator/index.cfm

 FireFox asks me to save the untyped binary data (a dialog box comes up)

 I recall this happening before, I just dont recall the fix and Google is
 not helping me.

 Can anyone point me in the right direction?


 

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


Re: Enterprise Blogging Solutions?

2009-11-10 Thread Mark Mandel

As a silly question -

Have you been in contact with either Mura or the ASFusion to ask what sort
of support packages they could provide for you?

They may fit your requirements.

Mark

On Wed, Nov 11, 2009 at 5:01 AM, Steve Keator skea...@mlinc.com wrote:


 You and I know they are all great products.  The problem, however, is
 that they're FOSS (Free-Open-Source-Software).  I can tell you that the
 client is a very large financial institution, and because they are such,
 they have very stringent requirements for creating ANY website.  We
 could, of course, create a custom solution for them as well, however, my
 bosses up the chain agree that we need to find a ready-made solution.

 -Original Message-
 From: Alan Rother [mailto:alan.rot...@gmail.com]
 Sent: Tuesday, November 10, 2009 12:47 PM
 To: cf-talk
 Subject: Re: Enterprise Blogging Solutions?


  Of course, this means no BlogCFC, Mango Blog, or Mura CMS to handle
 it
 (and CERTAINLY not WordPress!).

 Why not? These are all great products. What are they missing?


 =]

 --
 Alan Rother
 Adobe Certified Advanced ColdFusion MX 7 Developer
 Manager, Phoenix Cold Fusion User Group, AZCFUG.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:328221
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Enterprise Blogging Solutions?

2009-11-10 Thread Mark Mandel

ASFusion is the people behind Mangoblog.

I have no idea if they *do* support for Mango, but its worth asking the
question.

Farcry *does* have a blogging platform, and they most definitely have a
support plan/professional open source business.

Mark



On Wed, Nov 11, 2009 at 7:40 AM, Steve Keator skea...@mlinc.com wrote:


 Mura won't work in this case.  If it could, I wouldn't be writing this.
 We use Mura day in and day out around here.

 Part of the client's requirements, no FOSS software, doesn't really help
 us with this one.  :-(

 As far as ASFusion, I'm not familiar with them, it looks like they are
 some sort of a custom solution provider.  When I spoke to my boss a
 little while ago, he made sure to mention that we won't be building
 something custom for this, specifically for the reasons that Alan
 mentioned (Guarantee on the box).

 I guess I'll be calling salespeople.  EEEK.

 Cheers,
 S.

 -Original Message-
 From: Mark Mandel [mailto:mark.man...@gmail.com]
 Sent: Tuesday, November 10, 2009 3:24 PM
 To: cf-talk
 Subject: Re: Enterprise Blogging Solutions?


 As a silly question -

 Have you been in contact with either Mura or the ASFusion to ask what
 sort
 of support packages they could provide for you?

 They may fit your requirements.

 Mark

 On Wed, Nov 11, 2009 at 5:01 AM, Steve Keator skea...@mlinc.com wrote:

 
  You and I know they are all great products.  The problem, however, is
  that they're FOSS (Free-Open-Source-Software).  I can tell you that
 the
  client is a very large financial institution, and because they are
 such,
  they have very stringent requirements for creating ANY website.  We
  could, of course, create a custom solution for them as well, however,
 my
  bosses up the chain agree that we need to find a ready-made solution.
 
  -Original Message-
  From: Alan Rother [mailto:alan.rot...@gmail.com]
  Sent: Tuesday, November 10, 2009 12:47 PM
  To: cf-talk
  Subject: Re: Enterprise Blogging Solutions?
 
 
   Of course, this means no BlogCFC, Mango Blog, or Mura CMS to
 handle
  it
  (and CERTAINLY not WordPress!).
 
  Why not? These are all great products. What are they missing?
 
 
  =]
 
  --
  Alan Rother
  Adobe Certified Advanced ColdFusion MX 7 Developer
  Manager, Phoenix Cold Fusion User Group, AZCFUG.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:328223
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 with a Java model

2009-11-01 Thread Mark Mandel

If you are interested in JavaLoader based setups -

http://www.compoundtheory.com/?action=javaloader.index

There is a link to MAX presentation as well.

Mark

On Mon, Nov 2, 2009 at 6:42 AM, Kevan Stannard ke...@stannard.net.auwrote:


 I'm looking to find any information on using ColdFusion for the
 presentation
 layer with a Java/Spring back end.

 So far I have found an excellent presentation by Andrew Powell here

 http://www.infoaccelerator.net/blog/post.cfm/enterprise-mvc-with-coldfusion-and-java

 
 http://www.infoaccelerator.net/blog/post.cfm/enterprise-mvc-with-coldfusion-and-java
 But
 I need to fill in a few gaps in how to set up the environment so that this
 would work.

 Any other sample applications, blog articles, presentations etc would be a
 great help.

 Thanks

 Kevan


 

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


Re: Generating Documentation CF9

2009-10-29 Thread Mark Mandel

Well it looks fine, are you sure the expandPath() is resolving to the right
place?

Mark

On Fri, Oct 30, 2009 at 7:52 AM, Jeremy Rottman rottm...@gmail.com wrote:


 I was testing the tool with a second application structure I have. Hence
 the /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:327825
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Generating Documentation CF9

2009-10-29 Thread Mark Mandel

I just ran the CS2.0 ColdDoc script i have on CF9. Worked no problems.

Mark

On Fri, Oct 30, 2009 at 9:32 AM, Mark Mandel mark.man...@gmail.com wrote:

 Well it looks fine, are you sure the expandPath() is resolving to the right
 place?

 Mark


 On Fri, Oct 30, 2009 at 7:52 AM, Jeremy Rottman rottm...@gmail.comwrote:


 I was testing the tool with a second application structure I have. Hence
 the /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:327826
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Generating Documentation CF9

2009-10-28 Thread Mark Mandel

Well since you told me that your folder structure starts with /com, and you
are expandPath()'ing on /org... I'm not surprised ;o)

Mark

On Thu, Oct 29, 2009 at 3:43 AM, Jeremy Rottman rottm...@gmail.com wrote:


 I have to have something setup wrong then.

 When I use the run.cfm below, it generates the documents, but they do not
 contain any of the information about the cfc's I have written.

 Here is my run.cfm

 cfscript
colddoc = createObject(component, ColdDoc).init();

base = expandPath(/org);
docs = expandPath(docs);

colddoc.generate(base, docs, , Media Review .63);
 /cfscript


 h1Done!/h1

 p
 a href=/docs/index.htmlView Docs/a
 /p

 

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


Re: Generating Documentation CF9

2009-10-27 Thread Mark Mandel

Try ColdDoc, it works with CF9, although you will have to grab the SVN
version (I've been really slack about releasing a new version).

If works off MetaData, so it doesn't matter *how* you write your CFCs.

http://colddoc.riaforge.org/

Mark

On Wed, Oct 28, 2009 at 8:23 AM, Tony Bentley t...@tonybentley.com wrote:


 Javadocs after the first patch?


 http://www.danvega.org/blog/index.cfm/2009/8/24/ColdFusion-9-setting-attributes-in-cfscript-using-javadoc-syntax


 

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


Re: Generating Documentation CF9

2009-10-27 Thread Mark Mandel

Yep it does.

Should be fine.

I use ColdDoc to generate the documentation for Transfer:
http://docs.transfer-orm.com/html/transferapi/

And I am also using it when developing Narwhal (ColdSpring 2.0)

And I've used it on a CF9 project.

Mark

On Wed, Oct 28, 2009 at 9:12 AM, Jeremy Rottman rottm...@gmail.com wrote:


 Looks like I may have spoken a bit too soon Mark.

 I am not sure if this issue is related to my directorystructure or if I set
 something wrong in the run.cfm. Does your tool recursively look at the
 directories underneath the base directory?

 Right now my directorystructure looks like this:

 com
model
vo
cfc1.cfc
cfc2.cfc
cfc3.cfc
dao
cfc1.cfc
cfc2.cfc
cfc3.cfc
etc

 

~|
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:327782
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 BUILDER - setup and configuration issues

2009-08-03 Thread Mark Mandel

File  New  ColdFusion Project

Enter the project name you want

Untick 'use default location'

Browse to the location you want to use instead.

Click 'Finish'.  (Or click 'next', the rest are just server and debugging
details, which you may not need).

Mark

On Tue, Aug 4, 2009 at 1:52 PM, JDK m...@gobluerocket.com wrote:


 Eclipse noob here, please bear with me.

 On my local dev box I'm running CF8 with the internal web server. Each
 local site is set up as a virtual directory from the jrun-web.xml file
 in C:\ColdFusion8\wwwroot\WEB-INF\.

 I've successfully configured CF Builder to see my local CF8 install
 which I can now see in the Servers view.

 I've also successfully set up a CF Builder Project in the web root.

  What I cannot seem to get working is setting up a CF Builder Project
 for any of the sites defined as virtual directories.

 Any help with that would be appreciated.


 

~|
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:325193
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 BUILDER - setup and configuration issues

2009-08-03 Thread Mark Mandel

Oh no idea.. I don't use it ;o) Sorry.

Mark

On Tue, Aug 4, 2009 at 2:21 PM, JDK m...@gobluerocket.com wrote:


 Thanks Mark. Should have been more specific...

 So the actual question is, how do I configure a CF Builder Project so
 that I can use the browser preview Views with sites defined as virtual
 directories..?

 For example;

 MySite
 ---
 System Path: C:\projects\clients\widgetcorp\siteroot\
 Local URL: http://localhost:8501/widgetcorp/

 When I attempt to use the browser preview View CF throws a missing
 template error as follows;

 File not found: /index.cfm

 Looks like it's not configured for the /widgetcorp/ virtual directory..?




 Mark Mandel wrote:
  File  New  ColdFusion Project
 
  Enter the project name you want
 
  Untick 'use default location'
 
  Browse to the location you want to use instead.
 
  Click 'Finish'.  (Or click 'next', the rest are just server and debugging
  details, which you may not need).
 
  Mark
 
  On Tue, Aug 4, 2009 at 1:52 PM, JDK m...@gobluerocket.com wrote:
 
  Eclipse noob here, please bear with me.
 
  On my local dev box I'm running CF8 with the internal web server. Each
  local site is set up as a virtual directory from the jrun-web.xml file
  in C:\ColdFusion8\wwwroot\WEB-INF\.
 
  I've successfully configured CF Builder to see my local CF8 install
  which I can now see in the Servers view.
 
  I've also successfully set up a CF Builder Project in the web root.
 
   What I cannot seem to get working is setting up a CF Builder Project
  for any of the sites defined as virtual directories.
 
  Any help with that would be appreciated.
 


 

~|
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:325195
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 SME

2009-07-08 Thread Mark Mandel

Small to Medium Enterprise

http://en.wiktionary.org/wiki/SME

Mark

On Thu, Jul 9, 2009 at 1:58 PM, Pranathi Reddy rk.prana...@gmail.comwrote:


 Hi All,

 May be this is not related to technical question but I came across this
 word many times and wanna know .. What is Coldfusion SME or Coldfusion SME
 candidate?

 In software engineering - SME is Subject Matter Expert...

 Is Coldfusion SME is same as SME...?

 Can anyone explain me in detail?

 Thanx in advance...

 Pranathi.

 

~|
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:324370
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 SME

2009-07-08 Thread Mark Mandel

Or it could be Subject Matter Expert.. ;o) Guess it depends on context.

Mark

On Thu, Jul 9, 2009 at 2:05 PM, Mark Mandel mark.man...@gmail.com wrote:

 Small to Medium Enterprise

 http://en.wiktionary.org/wiki/SME

 Mark


 On Thu, Jul 9, 2009 at 1:58 PM, Pranathi Reddy rk.prana...@gmail.comwrote:


 Hi All,

 May be this is not related to technical question but I came across this
 word many times and wanna know .. What is Coldfusion SME or Coldfusion SME
 candidate?

 In software engineering - SME is Subject Matter Expert...

 Is Coldfusion SME is same as SME...?

 Can anyone explain me in detail?

 Thanx in advance...

 Pranathi.

 

~|
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:324371
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 + MVC Framework

2009-06-27 Thread Mark Mandel

I would suggest reading the documentation :oD

http://www.mach-ii.com/

Mark

On Sun, Jun 28, 2009 at 11:42 AM, Gerald Guido gerald.gu...@gmail.comwrote:


 I am not sure what you are asking. Could you restate your question?

 You might want to post to the Mach II mailing list

 mach-ii-for-coldfus...@googlegroups.com

 http://groups.google.com/group/mach-ii-for-coldfusion?hl=en

 HTH
 G!

 On Sat, Jun 27, 2009 at 1:45 PM, Priya Koya priya23...@gmail.com wrote:

 
  Hi All,
 
  I am trying to devlop website using MachII Framework. Can any one have
 any
  suggestions for me.
 
 
  Thanks in Advance,
  Priya
 
 

 

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


Re: CSS editor for eclipse galileo?

2009-06-25 Thread Mark Mandel

Web Tools Project?

Mark

On Fri, Jun 26, 2009 at 9:05 AM, Jake Pilgrim jpilg...@snapfitness.comwrote:


 Hi everyone, does anyone have any recommendations for a CSS editor for
 eclipse galileo? I used to use aptana, but it just does WAAAY more than i
 need it to, and it seems to get in the way of CFEclipse at times (for
 example, when I have aptana  cfeclipse installed i can no longer drag 
 drop text).

 I'm okay with firing up an external editor if there's a good free one
 available.

 Thanks!

 

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


Re: CF8 Uses Incorrect Component Path

2009-06-24 Thread Mark Mandel

I'm not 100% sure, but if you have the createObject() call straight after
the this.mappings[] code it probably won't work.

I would expect that CF has yet to build those mappings into what it uses to
determine mapped paths yet.

Do your createObject() call inside a index.cfm or similar, and you should
find that it works.

Mark

On Thu, Jun 25, 2009 at 7:43 AM, Dawson, Michael m...@evansville.eduwrote:


 Steve, I appreciate your help.

 I'm just not getting it to work.  I've taken it back to the most-basic
 where I have a component in a Components directory.  CF will still not
 find the component.

 I have a path at:

 E:\WebSites\applybeta.evansville.edu\Extensions\Components

 In that directory, I have the file:

 E:\WebSites\applybeta.evansville.edu\Extensions\Components\ErrorHandler.
 cfc

 In my Application.cfc, I have the following:

 cfset this.mappings[/Components] =
 E:\WebSites\applybeta.evansville.edu\Extensions\Components
 cfset errorHandler = createObject(component,
 Components.ErrorHandler).init()

 I still get Could not find the ColdFusion Component or Interface
 Components.ErrorHandler.

 I'm at a total loss as to why this does not work.  I wish that the CF
 error would display where (file paths) it tried to access the
 components.

 Thanks,
 Mike

 -Original Message-
 From: Cutter (ColdFusion) [mailto:cold.fus...@cutterscrossing.com]
 Sent: Wednesday, June 24, 2009 4:28 PM
 To: cf-talk
 Subject: Re: CF8 Uses Incorrect Component Path


 Just do a mapping to /edu

 cfset THIS.mapping[/edu] =
 E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu /

 Steve Cutter Blades
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 Co-Author of Learning Ext JS
 http://www.packtpub.com/learning-ext-js/book
 _
 http://blog.cutterscrossing.com


 On 6/24/2009 4:10 PM, Dawson, Michael wrote:
  Alright gentlemen, I think I have it figured out now.  I do remember
  that CF looks in custom tag paths, but that was when I was using
  components with application.cfm and my legacy code.
 
  http://livedocs.adobe.com/coldfusion/6.1/htmldocs/buildi12.htm
 
  #4 reads Directories specified on Custom Tag Paths page of the
  Administrator
 
  That said, I'm ready to move on to doing it the right way with
  Application.cfc.
 
  I want to specify my components using a FQDN such as:
 
  edu.evansville.applybeta.package.component
 
  My components are located at:
 
  E:\WebSites\applybeta.evansville.edu\Extensions\Components
 
  I would then have the following directory structure:
 
  E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu
  E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu\evansvi
  ll
  e
  E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu\evansvi
  ll
  e\applybeta\
  and so on...
 
  Should I:
  * Create a / mapping to
  E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu
  * Create a /edu.evansville.applybeta mapping to
  E:\WebSites\applybeta.evansville.edu\Extensions\Components\edu\evansvi
  ll
  e\applybeta\
 
  What is the most accepted method for mapping in this manner?
 
  I certainly appreciate your help with clarifying this for me.
 
  Thanks,
  Mike
 
  -Original Message-
  From: Cutter (ColdFusion) [mailto:cold.fus...@cutterscrossing.com]
  Sent: Wednesday, June 24, 2009 1:53 PM
  To: cf-talk
  Subject: Re: CF8 Uses Incorrect Component Path
 
 
  Components are different from CustomTags, and your mapping is a
  customTagPaths mapping. You'll want to use a standard cf mapping:
 
  this.mapping['/Components'] = 'c:\Inetpub\componentpath\';
 
  Then ref that path (/Components) in your code.
 
  Steve Cutter Blades
  Adobe Certified Professional
  Advanced Macromedia ColdFusion MX 7 Developer
 
 



 

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


Re: CFC and jQuery

2009-06-17 Thread Mark Mandel

Just to give you another way of looking at it.

JSON is just a string format, much like WDDX is (although a lot less
verbose).  Without parsing, it's still just a string.

The manual way of converting JSON to a JS data struct is by calling eval()
on it - like so:

var data = eval(myJSONString);

And you are good to go.

Mark

On Thu, Jun 18, 2009 at 9:16 AM, Josh Nathanson p...@oakcitygraphics.comwrote:


 It looks like you're getting a string back and it never becomes a
 javascript
 object.

 If you put dataType:'json' in your ajax params, I believe it will
 automatically eval the response for you, which turns the json string
 response into a javascript object.  You should see this in Firebug as a
 clickable green link;  when you click it, it should show you the property
 values.  If it is not clickable, then you have a string rather than an
 object.

 This is independent of passing returnformat=json to your cfc.  That creates
 a json string which gets passed back to the client.  However you must do
 something in javascript to turn the string into an object;  either eval'ing
 it manually, or use dataType: 'json' which will do it for you.

 -- Josh



 -Original Message-
 From: James White [mailto:jwhite1...@gmail.com]
 Sent: Wednesday, June 17, 2009 3:51 PM
 To: cf-talk
 Subject: Re: CFC and jQuery


 1) Add dataType:'json' as an attribute of your ajax call, or use $.getJSON
 2) use Firebug / console.log to examine the response, make sure DATA is a
 valid property of the response JSON
 
 -- Josh
 
 
 
 I am trying to call a query from a CFC using jQuery with the following
 code:
 
 $(document).ready(
  function () {
$.ajax({
type: GET,
url: SpellChecker.cfc?method=getTextMemoFieldsreturnformat=json
 queryformat=column,
data: datastring,
success:
function(response) {
var resp = jQuery.trim(response);
alert(resp);
}
});
 
 });
 
 When I look at the data inside an alert it looks exactly like it should.
 However, when I try to get to the values inside of it (e.g. resp.DATA) it
 is
 always undefined. Do I need to perform an extra step?  I appreciate any
 advice I can get on this.
 
 Thanks,
 
 JW

 Josh,

 1. I already am getting the results back in JSON format using the
 returnformat=json parameter.  I tried $.getJSON without much success (If
 you
 know of a good CFC example using $.getJSON, I'd be happy to review it).  I
 cannot even get results back using it, where as with the $.ajax I get
 results, I just can't seem to do much with them but print the whole json
 object(i.e. document.write) to a page or display the results in an alert
 box.

 2.  I am Firebug and I did verify that DATA is a valid parameter.
  Basically
 I am returning a db table and putting in JSON format.  The code I have
 returns the following:


 {ROWCOUNT:20,COLUMNS:[SAVEDVALUE],DATA:{SAVEDVALUE:[blah,blah,bla
 h]}}

 But when I try and access for instance resp.ROWCOUNT, it's undefined.  So
 basically, I want to know how I can actually get to the values I can only
 seem to read.

 Thanks,

 James










 

~|
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:323619
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 8 Hosting recommendations

2009-05-10 Thread Mark Mandel

Ech.. never go with hostingatoz... they are abysmal.

You may want to look at:
http://www.carehart.org/cf411/#cfhost


Mark

On Mon, May 11, 2009 at 10:45 AM, Phillip Vector
vec...@mostdeadlygame.comwrote:


 I USED to recommend hostingatoz.com, but lately, their customer
 service has been non-existent. So if you happen to find something, let
 me know as well? :)

 On Sun, May 10, 2009 at 5:41 PM, Gerald Guido gerald.gu...@gmail.com
 wrote:
 
  Like this hasn't been beaten to death ;o)
 
  I have 10 domains I need to host. Nothing mission critical (like a sugar
  daddy e-commerce site) but I will have my blog on it so four or five
 nines
  would be nice.
 
  My requirements:
  Adobe CF 8
  10 small domains - not a lot of email addresses, FTP accounts etc.
  ~10 gigs of drive space and ~ 50 gigs of traffic,
  MySQL 5 and MSSQL 2005 support with  8-10  databases and CF DSN's
  regular backups
  No tag/function restrictions
 
  And get this: I want it for $20/mo. or less.
 
  Any recommendations?
 
  Thanx
  G!
 
  --
  Gerald Guido
  http://www.myinternetisbroken.com
  http://www.cfsimple.org/
 
  To invent, you need a good imagination and a pile of junk.
  -- Thomas A. Edison
 
 
 

 

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


Re: convert doc file to html file

2009-04-01 Thread Mark Mandel

Have a look at using OpenOffice with JODConverter:
http://www.artofsolving.com/opensource/jodconverter

Mark

On Thu, Apr 2, 2009 at 8:02 AM, Nathan Chen nathan.c...@cu.edu wrote:


 Scott,
 That's the step the end users try to avoid. They want something on the
 fly, letting CF to do the trick automatically after the file is
 uploaded.

 Nathan

 -Original Message-
 From: Scott Stewart [mailto:sstwebwo...@bellsouth.net]
 Sent: Wednesday, April 01, 2009 2:49 PM
 To: cf-talk
 Subject: RE: convert doc file to html file


 1) Open in MS Word and save as html
 2) Open in Dreamweaver and use the cleanup tool
Commands = Cleanup Word HTML

 --
 Scott Stewart
 ColdFusion Developer
 http://www.sstwebworks.com

 4405 Oakshyre Way
 Raleigh, NC 27616

 Phone: 919-874-6229
 Cell: 703-220-2835


 -Original Message-
 From: Nathan Chen [mailto:nathan.c...@cu.edu]
 Sent: Wednesday, April 01, 2009 3:20 PM
 To: cf-talk
 Subject: RE: convert doc file to html file


 So does anyone know this or is this something not available?

 Nathan

 -Original Message-
 From: Nathan Chen [mailto:nathan.c...@cu.edu]
 Sent: Sunday, March 29, 2009 10:56 PM
 To: cf-talk
 Subject: convert doc file to html file


 Hi, Everyone:



 Is there a tag or tool that can convert a Word file to an html file?
 Let's say, the end user uploads a doc file, the tag/scripts/tool reads
 the file, converts it to html, and saves it in a pre-defined directory
 on the server. I need a tool like this to complete one of my projects.
 Thanks.



 Nathan









 

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


Fwd: public call for speakers...cf.O

2009-03-25 Thread Mark Mandel

Hi all,

You might have already heard that cf.Objective() is coming to the Pacific
region and that we're going to hold cf.Objective(ANZ) in Melbourne, AU later
this year (12  13 November 2009).

At this stage we're opening the public call for speakers. If you're
interested in coming over to Melbourne and present on a topic that goes
along nicely with the ColdFusion Enterprise Development scheme
cf.Objective() has become successful in the US, we'd like to hear from you.

Topics we're looking for fit into (but are not limited to) the following
major categories:

Architecture and Design:

OOP, Design Patterns, Frameworks, Modeling, Refactoring Legacy Apps,
Persistence etc.

RIA:

LC DS and CF, Ajax/Flex with CF, BlazeDS and CF etc.

Process and Methodology:

Agile Development, SOA, Managing large CF architectures, Debugging and
Metrics etc.

Integration and Testing:

CF and Java, Build and Deployment processes, Server tuning, Unit Testing
etc.

Please let us know by April, 24 2009 if you're interested in coming to
Melbourne to present at cf.Objective(ANZ). A short blurb about yourself and
one or multiple topics you'd be interested in presenting on would be very
appreciated. Please
send all topic submissions to speak...@cfobjective.com.au .

cf.Objective(ANZ) will provide speaker accommodation for the night of the
12th to the 13th of November 2009 at the conference venue (Renaissance Hotel
in Melbourne). At this stage we unfortunately can't provide any further
financial assistance with travel cost or other expenses.

We look forward to hearing from you!

cf.Objective(ANZ) Steering Group


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


Re: Configuring ColdFusion for Shared Hosting

2009-03-17 Thread Mark Mandel


  If I am right, I should also be disabling createObject for .NET, COM,
 CORBA and Java, but are there any other functions I should disable?

 That should do it if you are just after security.


If this is a CF8 Box, you can have createObject() for Java enabled, just
remember to disable access to the ColdFusion components.  This should
mitigate access to things like the ServiceFactory, but still give your users
access to the full functionality of Java.

Not entirely sure createObject for .NET or COM would be a security issue?

Mark


-- 
E: mark.man...@gmail.com
W: www.compoundtheory.com


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


Re: catalog of reusable components

2009-02-21 Thread Mark Mandel

ColdDoc?

http://colddoc.riaforge.org/

Mark

On Sun, Feb 22, 2009 at 1:31 AM, Richard White rich...@j7is.co.uk wrote:


 hi,

 our reusable components are beginning to get very large and therefore
 harder to find things we have already done.

 do you guys have a system for cataloging them so it is easy for any new
 employee to understand the catalog as well?

 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:319659
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform and PDF Dynamic XML Forms

2009-02-14 Thread Mark Mandel

TJ -

Just some random thoughts -

1) if you run cf from the console, do you see any errors in there? An
exception stack trace may be helpful.
2) If you put a try/catch around it, and dump the cfcatch, do you see
anything special? Sometimes it can show you Java errors you wouldn't
otherwise see.

Mark

On Sat, Feb 14, 2009 at 2:43 PM, TJ Downes koldfu...@gmail.com wrote:


 Hi all,

 I have been banging my head on this issue for a couple of days and hope
 someone has some experience to offer.

 We are replacing PDFs generated by cfdocument with PDF templates developed
 in LiveCycle Designer, due to the issues we have had trying to get our
 results to be consistent. I have what I feel is a solid PDF Form template
 going,and I can populate the form using cfpdfform. The one issue I am having
 is trying to get flowable content working. If you have worked with LiveCycle
 Designer you will know what flowable content is. If you haven't, its the
 ability to allow users to fill in data in a PDF form and the PDF will expand
 to fit the content.

 I have this working (flowable content) in the PDF only when I save it as a
 Dynamic XML Form. I can add data to my form fields and the document
 expands as expected. This behavior does not occur when saved as a standard
 PDF Form. From the limited information i have read, this is by design.

 When I save the document as a Dynamic XML Form and try to populate it with
 CF I get the following error: An exception has occurred in the processing of
 PDF forms. ''

 Pretty vague. Yes, this is even with debugging enabled :)

 I can't seem to do anything to populate the Dynamic PDF Form without
 causing this error. What's odd is that I can read the document just fine. I
 can populate it manually, and a cfdump shows the data as an XML structure
 (that's good!). I can also use the same method to populate a standard PDF
 Form, both using XML and cfpdfformparam. The only thing that isn't working
 is populating the Dynamic XML Form from CF.

 Can someone tell me if this is unsupported, or if there is a workaround? We
 sincerely hate the cfdocument method we have been using, cfpdfform has made
 this so much faster, cleaner and more reliable.

 I would be happy to provide a copy of my template from LiveCycle Designer
 as well as a code sample.

 Thanks
 TJ Downes

 

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


Re: Unable to create Datasource ColdFusion8

2009-02-14 Thread Mark Mandel

http://www.google.com/search?q=coldfusion+sql+server+expressie=utf-8oe=utf-8aq=trls=com.ubuntu:en-US:unofficialclient=firefox-a

Mark

On Sat, Feb 14, 2009 at 9:28 PM, Priya Koya priya23...@gmail.com wrote:


 Hi All,

 I am using Wista Home edition. I installed ColdFusion8, SQL Server 2005
 Express Edition in my PC. I set Protocols enabled in SQL Server 2005 but
 still I am unable to create a datasource.

 Can anyone help me with this?

 Thanks,
 Priya

 

~|
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:319308
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) WYSIWYG

2009-02-11 Thread Mark Mandel

I like tinyMCE, but that may just be because I'm more used to it.

Mark

On Thu, Feb 12, 2009 at 11:30 AM, John M Bliss bliss.j...@gmail.com wrote:


 On an *old* project, I'm getting rid of http://www.zrinity.com/activedit/
 Which do you prefer...?

 http://fckeditor.net
 http://tinymce.moxiecode.com
 something else

 --
 John Bliss
 IT Professional
 LinkedIn: http://www.linkedin.com/in/jbliss


 

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


Re: Execute a CF scheduled task

2009-02-03 Thread Mark Mandel

or cfschedue action=run

http://www.cfquickdocs.com/cf8/?getDoc=cfschedule

Mark

On Sat, Jan 31, 2009 at 2:06 PM, Adrian Lynch cont...@adrianlynch.co.uk wrote:

 cfinclude or call the page via cfhttp from within your admin section.

 Adrian

 -Original Message-
 From: Jim McAtee [mailto:jmca...@mediaodyssey.com]
 Sent: 31 January 2009 03:00
 To: cf-talk
 Subject: Execute a CF scheduled task


 In CF8 is there any way to execute a scheduled task from another CF
 template?  I have a complex database maintenance task that is run every
 couple of hours, but I'd also like to fire it off from an adminstrator
 type of application as certain changes are made to the data.  Short of
 duplicating all the code from the scheduled task, or creating a
 server-wide CFML tag or object out of it, this is the only solution
 that
 comes to mind.


 

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


Re: help with using CFCProxy.

2009-01-23 Thread Mark Mandel
Yeah, you need enterprise to use CFCProxy.

I thought they were meant to fix this in 8, under the whole 'Standard
is the same as Enterprise, just with limitations' spiel... but it
looks like it never happens.

Kinda annoys me actually.

Mark

On Sat, Jan 24, 2009 at 4:41 AM, Charlie Griefer
charlie.grie...@gmail.com wrote:
 http://www.forta.com/blog/index.cfm?mode=eentry=1756
 see comments.

 On Fri, Jan 23, 2009 at 8:15 AM, cf coder mailinglistid2...@yahoo.comwrote:

 Do I need the enterprise edition of ColdFusion to use CFCProxy? I'm getting
 the following error when I instantiate the CFCProxy object:

 java.lang.NoClassDefFoundError:
 coldfusion/license/LicenseManager$LicenseIllegalAccessException

 This is where the error occurs

 CFCProxy myCFC = new
 CFCProxy(C:\\Inetpub\\wwwroot\\cfcproxytest\\javacall.cfc);

 Please provide me with some help. There is no hardly any documentation on
 this issue.

  Hello everybody,
 
  I want to call ColdFusion objects from a Java class. I found this
  docucmentation by Ben Forta on CFCProxy: http://www.forta.
  com/misc/cfcproxy.htm
 
  I have a my CFC (see below) that has an init function which initialies
  all the objects?
 
  cfcomponent name=javacall
cffunction name=init output=false returntype=javacall
  hint=initialise
cfscript
//Example object
this.objFont =
 createObject(java,java.awt.Font).init(Arial,0,
  10);
return this;
/cfscript
/cffunction
  /cfcomponent
 
  The documentation says that the getThisScope() method can be used to
  retrieve the 'This' scope of the CFC. I want to retreive the 'objFont'
  this variable. Can someone show me how to do this please?
 
  Thanks,
  John




 

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


Re: Creating a PDF outline

2009-01-19 Thread Mark Mandel
Not sure, but it may be worth checking out - it MAY create the outline
from h1 , h3 , h3 elements in your document.

I could be wrong tho, but its worth a shot.

Mark

On Tue, Jan 20, 2009 at 12:25 PM, Chuck h...@coldfusionguru.com wrote:
 Let me explain what I'm looking for.

 Sometimes when you open a PDF you will get an outline or maybe you might
 call it a page jump on the left hand side of the PDF when viewing it in
 Acrobat Reader.  This is the section that you can click on and it will take
 you to that particular section in the PDF.

 Now that I have explain that, I think here is what I'm fully trying to do.

 1.  I will be merging multiple PDF files together using cfpdf and your
 (Ray Camden) pdfutils.cfc, which is awesome by the way.  The PDFs are not
 created by the application they are uploaded by users of the site.
 2.  Depending on if I can produce the outline, will determine how I use
 cfpdf and pdfutils.cfc.

 The documents that are being combined can and probably will be many pages
 and I want to give the end receiver of the combined PDF an easy way to
 navigate through the PDFs.

 I hope this helps.

 Thanks,
 Chuck


 

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


Re: Slow CF8 Startup Times

2009-01-14 Thread Mark Mandel
For the fastest start up times, I would recommend Java 1.6_11.

Also, make sure report execution times is off in your debugging :oD

Mark

On Thu, Jan 15, 2009 at 4:44 AM, Gerald Guido gerald.gu...@gmail.comwrote:

 I was going to say.. CF 8 takes a lot of time compared to 6 and 7. My start
 up times range from 20-30 seconds on a lite install with nothing but 6 or
 8 DSN's on my dev box to ~ a minute on my new(er) laptop. If this is a duel
 processor quad core box there is something seriously amiss. Did you try
 removing the DSN's to see if that is the bottle neck?

 G


 On Wed, Jan 14, 2009 at 12:12 PM, Mike Chabot mcha...@gmail.com wrote:

  Those times aren't that bad. CF takes a while to start up compared to
  other services. If it takes a minute to get going I would think that
  is normal. I used to have a dev workstation where CF took at least
  three minutes to start up every time, which I believe was related to
  the large number of fonts I had installed.
 
  -Mike Chabot
 
  On Tue, Jan 13, 2009 at 12:53 PM, Mark Richards clemud...@gmail.com
  wrote:
   Hey all,
  
   I recently stood up CF8 on Linux entirely from scratch and am seeing
 some
  extremely slow start-up times.  It can take anywhere from 75 seconds to
 115
  seconds for all the services to fully boot up.  It seems to take an
  extraordinary amount of time (40+ seconds) to complete 2 of the
 processes:
  Starting sql... and user MessageBrokerServlet: init.  From my brief
  tests, it appears that CF is working fine though.  Here are the system
  specs:
  
   ColdFusion 8.01 (64-bit, multi-server)
   Red Hat Linux AS 5.0 (running in a VM)
   Apache 2.2.9
   JDK 1.5.0_16 (we tried JDK 1.6.0_11 too)
  
   I've tried changing the JVM the one that ships with CF8 up to 1.6 and
  down to 1.5 seeing as there are some known issues with 1.6 in a 64-bit
  environment (although not with the version we tried).  Additionally, I've
  removed all the references to MessageBrokerServlet from web.xml thus
  preventing that service from even attempting to start.  That works fine
 and
  reduces the start time dramatically, but I don't think I should have to
 do
  that to get this thing to work.  I've confirmed that all the software
 we're
  using is 64-bit as well.  I've also looked in all the logs and have yet
 to
  find any errors.
  
   My questions:
   1. What is the line Starting sql... actually trying to do/what's it
  used for? I figure if I know that it'll allow me to debug better.
   2. Anybody have any ideas how to fix this or figure out the hang up?
   3. Could this be port related and how would I determine if it is?
  
   Any help would be greatly appreciated.  Thanks.
  
   Mark Richards
 
 

 

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


Re: Load testing tools.

2009-01-12 Thread Mark Mandel
I got quite into jMeter, but its a bit finicky to get into.

Once you understand how it works, tho', its very flexible (and free!)

Mark

On Tue, Jan 13, 2009 at 6:28 AM, Robert Rawlins 
robert.rawl...@thinkbluemedia.co.uk wrote:

 Afternoon guys,

 Any good recommendations on load testing tools? I'm just looking for
 something that'll make HTTP requests to a bunch of given URLS on set
 intervals for a period of time, monitoring response times etc. I've used a
 couple in the past but forget which, thought I'd get your suggestions.

 Obviously I'm quite partial to something free or open source ;-)

 Cheers,

 Rob



 

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


Re: How to wait in CF?

2009-01-06 Thread Mark Mandel
cfthread action=sleep ... 

Mark

On Wed, Jan 7, 2009 at 12:10 PM, Pete Ruckelshaus
pruckelsh...@gmail.com wrote:
 I'm using cfhttp to retrieve a large number of image files off of a
 supplier's catalog.  The problem is that I don't want to hammer the
 supplier's site (they know we're doing this), so I'd like to introduct
 a small period of wait time in each iteration of the loop.  Is there
 a straightforward way to do this?

 Thanks

 Pete

 

~|
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:317484
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-based freelancer time/billing system?

2008-12-18 Thread Mark Mandel
I use MYOB Accounting Plus (I assume you can get this in the US?, no
idea where it is based out of). Not the cheapest thing in the world,
but it saves me hours.

Mark

On Fri, Dec 19, 2008 at 3:44 PM, Mike Kear afpwebwo...@gmail.com wrote:
 I looked at all kinds of billing systems, and ended up writing my own.
  I found there was always something missing that i needed - the
 ability to price a line independently of all the others,  or the
 ability to use a currency other than AUD for example,  or be able to
 send a copy of an invoice where the client alleges he never got it.
 At least one feature i needed was missing from all the systems i
 looked at.

 So I wrote my own.  It's not all that difficult.   You need a means of
 putting line items into an account ready to be billed - software sold,
 hours worked,  domain names registered,   etc etc. Then you need a
 separate way to query that account and assemble those line items into
 an invoice,  do the arithmetic calculations,  prepare a PDF of your
 invoice and email it to the client.   Then you need to be able to send
 copies to people who dont pay you because they  allege they never
 received the invoice,Next, you need a way to keep track of who's
 paid you and who hasnt.And lastly you need to be able to produce
 reports for tax and other purposes.

 All involve adding records to a table,  and/or querying the table and
 displaying them in one way or another. There is no fancy
 processing required or ajax or flex or any of that. (although there
 are things you can do to make it all slicker and sexier using tools
 like ajax and flex) but its fairly straightforward from a coldfusion
 point of view.

 I have a clients table,  a price list table, a recurring charges table
 (for my hosting accounts and domain name registry - to handle the
 repeating monthly/quarterly/biannual/annual  charges)   and an
 invoices table.   Thats it.

 It took me a day to write and test my invoicing app, and a total of
 about half a day since then for tweaks and mods i've made

 At first, i tried to be cute and tie the hours to be billed in my
 invoicing  to a little time counter app i have, but that never worked
 because i dont always bill exactly the  hours i work on a project.
 For example some projects i record the hours but bill a fixed price.
 Or if it's maintenance work, some of the work is billable, some isnt.
  It all got too complicated.   So instead i have the time-tracking app
 (called Trax-Time but it would suit an AIR app perfectly) running
 separately,  and i use the reporting stuff in that to tell me how many
 hours i've spent on what, then i handle billing separately.It
 takes me a total of about an hour a month to handle the routine
 billing tasks.


 I say all this not to brag, because i dont think its anything to brag
 about,  but to make the point that it's not that hard to get exactly
 the billing system that suits you rather than have to change your
 business systems to suit some one else's idea of how your business
 should run.  It's simple and does precisely what i want it to, and no
 more.  And if my business model changes in any way i have the stuff to
 change my billing system to match the new business model.

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


 On Fri, Dec 19, 2008 at 1:25 PM, Jason Durham jdur...@cti-stl.com wrote:
 Thanks for the links.  Unfortunately none of those have a billing
 component to it.  I like Project Tracker and may consider adding the
 billing stuff myself.

 Jason

 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Thursday, December 18, 2008 4:51 PM
 To: cf-talk
 Subject: Re: CF-based freelancer time/billing system?

 Have you checked out riaforge.org?  Some possibilities...?

 http://lighthousepro.riaforge.org
 http://projecttracker.riaforge.org
 http://pronto.riaforge.org

 On Thu, Dec 18, 2008 at 4:47 PM, Jason Durham jdur...@cti-stl.com
 wrote:

 I'm looking for an inexpensive tool to keep track of time logs for
 side
 work.  Specifically, I'd like to be able to setup automated billing
 and
 allow the customer to view progress on their project.   Google landed
 me
 on ProWorkFlow.com which seems to fit the bill, however it might be a
 little more than I need.  5GB of storage at $200 a month is excessive,
 IMO.



 Are there any other less expensive (or open source) projects out
 there?



 Jason




 

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

Re: CF-based freelancer time/billing system?

2008-12-18 Thread Mark Mandel
Fair enough.. I don't do anything to try and report into/out of it, I
just use it as a standalone product, and it is great.

Mark

On Fri, Dec 19, 2008 at 4:14 PM, Mike Kear afpwebwo...@gmail.com wrote:
 MYOB is from almost next door to you, Mark.  They're in Melbourne and
 have gone world wide from there.

 But for heavens sake dont attempt to deal with their support people.
 I had a project where i had to connect the client's customer database
 to their MYOB to transfer order details in one direction and customer
 information in the other direction.   ALthough MYOB were happy to take
 quite a few hundred dollars of my client's money and sold us a driver
 to connect the MYOB database to our MSSQL database,  no one there knew
 how to do it,  no one could show me how to do it after a  year of
 attempting, and no one at their support area answers emails. phone
 calls always went to a cul-de-sac   sorry we dont know anything about
 connecting MYOB for writes and reads,   just reads only.  You'll have
 to talk to Nicole  - and Nicole never responded to anything.

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


 On Fri, Dec 19, 2008 at 3:55 PM, Mark Mandel mark.man...@gmail.com wrote:
 I use MYOB Accounting Plus (I assume you can get this in the US?, no
 idea where it is based out of). Not the cheapest thing in the world,
 but it saves me hours.

 Mark



 

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


Re: What IDEs are folks using?

2008-12-08 Thread Mark Mandel
Eclipse 3.4.1 for Java and CF work
Eclipse 3.3 for Flex (as that's what it works on Linux)

Various plugins for Eclipse from there.

Mark

On Tue, Dec 9, 2008 at 12:49 PM, Chuck [EMAIL PROTECTED] wrote:
 I'm using Dreamweaver CS3 and CFEclipse (Ganymeade).  Firebug plug-in for
 FireFox for debugging javascript and ajax calls.

 -Original Message-
 From: Neil Ross [mailto:[EMAIL PROTECTED]
 Sent: Monday, December 08, 2008 6:06 PM
 To: cf-talk
 Subject: What IDEs are folks using?

 I'm curious as to what people are using for IDE of choice these days. I'm
 sure some folks have moved toward the Eclipse-based IDE but are any of you
 using the IBM Rational IDE?



 

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


Re: IntelliJ CFML Plugin

2008-12-02 Thread Mark Mandel
Stupid question - where did $250 come from?

(I'd be happy with $250)

Mark

On Wed, Dec 3, 2008 at 5:24 PM, Wil Genovese [EMAIL PROTECTED] wrote:
 Let's hope Adobe notices this response when the set pricing for
 Bolt  I had the same response to the price tag.


 Wil Genovese

 One man with courage makes a majority.
 -Andrew Jackson

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

 On Dec 3, 2008, at 12:20 AM, Azadi Saryev wrote:

 hmm... a $250 IDE (personal licence)... no, thanks, i already have DW,
 which i am happy with... and the free Eclipse+CFEclipse which i am
 almost happy with...
 though it does look interesting to play with... i may consider testing
 it out when i start some open-source project (if i get approved by
 JetBrains for a free edition)...

 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/



 Kenton Gray wrote:
 With all the excitement over Bolt, I thought this would be a good
 time to let everyone know the smart guys at JetBrains have been
 working on a CFML plugin.

 It has only been released for a month, but it is rapidly improving.
 In my opinion IntelliJ is far superior to Eclipse, and has the most
 amazing Javascript editor I've ever seen (drill down, autocomplete
 and jsdocs support). To top it off they have Flex 3 support (with
 debugging) so you can do all your Adobe coding from one place.

 It is still early but if anyone wants to use a great Java IDE and
 have Coldfusion support this is the plugin to watch!

 Here is the download link:
 http://plugins.intellij.net/plugin/?id=3571

 Here is the blog to watch for updates:
 http://coldfusion-in-idea.blogspot.com/

 Also the JetBrains guys have been very responsive to bug reports
 and feature requests, so if you have any features you want, drop
 them a line.

 Kenton

 PS: I don't work for JetBrains, I just think they have the best IDE
 around




 

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


Re: IntelliJ CFML Plugin

2008-12-02 Thread Mark Mandel
Ahhh! $250 for IntelliJ. I thought you meant for Bolt.

Makes more sense now.

Mark

On Wed, Dec 3, 2008 at 6:06 PM, Azadi Saryev [EMAIL PROTECTED] wrote:
 check their Licensing  Upgrade page:
 http://www.jetbrains.com/idea/buy/index.jsp

 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/



 Mark Mandel wrote:
 Stupid question - where did $250 come from?

 (I'd be happy with $250)

 Mark



 

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


  1   2   3   >