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()

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

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

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

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

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

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

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:

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

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

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,

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

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

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Mark Mandel
. 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

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

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

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

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

Re: Performance Issue with CFLOOP

2011-03-09 Thread Mark Mandel
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

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

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

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,

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

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

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

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!

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

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

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

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

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!

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

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!

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

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

2010-09-14 Thread Mark Mandel
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

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

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,

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

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

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,

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

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

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'.

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

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.

Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Mark Mandel
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

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

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

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

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

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

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

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

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

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

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

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

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,

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

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

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

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

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

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,

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

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

Re: Enterprise Blogging Solutions?

2009-11-10 Thread Mark Mandel
. 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

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

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

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

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

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

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

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

Re: CF BUILDER - setup and configuration issues

2009-08-03 Thread Mark Mandel
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

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

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

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

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

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

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);

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

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

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

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

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

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.

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

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

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

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

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

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

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?

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),

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

Re: CF-based freelancer time/billing system?

2008-12-18 Thread Mark Mandel
://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

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

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

Re: IntelliJ CFML Plugin

2008-12-02 Thread Mark Mandel
/ 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

  1   2   3   >