Re: Good 'quick read' resources for CFMX gateways?

2005-12-09 Thread Sean Corfield
On 12/9/05, asherwood @ huntwar. com asherwood @ huntwar. com [EMAIL PROTECTED] wrote: Thanks Sean. I was hoping for some blogs or sites where some developers had posted more trail and error, tips n' tricks, and gotchas type info. My blog mentions event gateways quite a bit... not sure if any

Re: How do you access XMLAttributes in order of appearance?

2005-12-09 Thread Sean Corfield
On 12/9/05, asherwood @ huntwar. com asherwood @ huntwar. com [EMAIL PROTECTED] wrote: I had considered these before hand, but I wanted to try and work within the standard functions without having to maintain information about attribute order in things like lists. Just bear in mind that

Re: Good 'quick read' resources for CFMX gateways?

2005-12-08 Thread Sean Corfield
On 12/8/05, asherwood @ huntwar. com asherwood @ huntwar. com [EMAIL PROTECTED] wrote: Any links to quick starts and like resources for getting up and running with CFMX gateways would be helpful! The ColdFusion Develeper's Guide manual has several chapters on event gateways. I suggest you

Re: Form Scope Problems

2005-11-30 Thread Sean Corfield
On 11/30/05, Brad Haas [EMAIL PROTECTED] wrote: Here's some partial code from both pages. Even though this code is very watered down, I can get it to produce the same type of problems as the full application. All I have to do to get the form scope to disappear is to submit this form

Re: multithreading a single page/calling coldfusion methods from java

2005-11-30 Thread Sean Corfield
On 11/30/05, Russ [EMAIL PROTECTED] wrote: Is there any way to have a page start multiple child threads? If you're using CFMX 7 Enterprise, yes - the async CFML gateway. If you want to call methods asynchronously and get results back, look at my Concurrency library (which requires CFMX 7

Re: multithreading a single page/calling coldfusion methods from java

2005-11-30 Thread Sean Corfield
On 11/30/05, Russ [EMAIL PROTECTED] wrote: Thank you, Dave. That concurrency library looks great. I'll try to play with it later this week. Let me know if you have questions / issues. I'm halfway through release 1.3 which will have better documentation and a new TaskArray class. p.s. I'll be

Re: SalesForce Wrapper

2005-11-29 Thread Sean Corfield
On 11/29/05, Vegas Thornton [EMAIL PROTECTED] wrote: Has anyone developed a consumption in CF for the SalesForce.com platform? We have developed a full integration with SF.com using CF (using the partner API I believe). Do you have a specific question? The Macromedia ColdFusion forum has a long

Re: Using request var in CFC - was : FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Sean Corfield
On 11/28/05, Stan Winchester [EMAIL PROTECTED] wrote: What is best practise for passing dsn variable to cfc? It depends. As you get more comfortable with OO, you'll feel less comfortable with a CFC reaching outside itself for data. What people often do with their data access CFCs is to pass

Re: More RAD than Ruby On Rails

2005-11-25 Thread Sean Corfield
On 11/25/05, John Paul Ashenfelter [EMAIL PROTECTED] wrote: If the impression that Rails is cool because it has a good code generator has been given, let's quash that -- it's basically immaterial. These are no different than the boilerplate code generators many developer write to save typing.

Re: CFUnit Help ... assertEqualsBoolean?

2005-11-25 Thread Sean Corfield
On 11/25/05, Jeff Chastain [EMAIL PROTECTED] wrote: I am needing a bit of help with CFUnit from those more experienced. I have a cfc function that returns a boolean. Looking through the CFUnit code, I found the 'assertEqualsBoolean' which I thought might be an equality test for 2 boolean

Re: CFUnit Help ... assertEqualsBoolean?

2005-11-25 Thread Sean Corfield
On 11/25/05, Jeff Chastain [EMAIL PROTECTED] wrote: Well, the reason I was going with the assertEqualsBoolean() was, how can an equality test tell if a given string is a string or a boolean type? I am getting the following failure ... testIsNullID(crTracker2._com.test.propertyTest):

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Damien McKenna [EMAIL PROTECTED] wrote: However, my voiced concerns about scalability (of applications) in There are lots of sites out there that receive lots of traffic and have lots of data, e.g.: Everyone seems to misunderstand my comment about scalability in connection with

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Munson, Jacob [EMAIL PROTECTED] wrote: So, do you have the same concern with frameworks like FB, MG, Mach etc.? I am very ignorant of how these frameworks work, so I am curious. I am considering taking the plunge and using FB with my next big project. They aren't code generators.

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Munson, Jacob [EMAIL PROTECTED] wrote: Ok, thanks Sean. Your concern makes total sense. Cool! I really need to get into FB here soon so I can stop asking ignorant questions. ;) Those are not ignorant questions Jacob! A lot of people avoid frameworks because they feel that the

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Sean Corfield
On 11/23/05, Robert Everland III [EMAIL PROTECTED] wrote: I understand that CFC's are just like any other variables. My question is, why? I have used CFC's mostly to put functions that are used throughout an application into the application scope. You're using CFCs as a way to wrap up

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Mark Fuqua [EMAIL PROTECTED] wrote: You should grab yourself a wincrap box and try it for a few days. You will be amazed how far down the rabbit hole goes. I had someone send me a generated application to look at. I didn't like the framework or the generated code. You obviously

Re: SMS CF

2005-11-21 Thread Sean Corfield
On 11/21/05, John Lucania [EMAIL PROTECTED] wrote: I am utilizing a Microsoft Exchange Server for the cfmail connection, which has SMTP as the default protocol. Is there a way to change/specify the default protocol (SMTP) to something else, like SMS? SMTP *is* the outbound mail protocol by

Re: SMS CF

2005-11-21 Thread Sean Corfield
On 11/21/05, John Lucania [EMAIL PROTECTED] wrote: I am sending messages (e-mail) to pagers and getting many garbled messages on the pager. I have talked the wireless vendor, but it seems they don't know how to fix other than telling me to change the protocol. If the pagers support emails,

Re: CFUnit Error

2005-11-21 Thread Sean Corfield
On 11/21/05, Jeff Chastain [EMAIL PROTECTED] wrote: This is a cross post from the CFUnit list because there did not appear to be much traffice there. There's a CFUnit mailing list??? I am working on my first CFUnit test. I went through the primer document step by step and I believe I did

Re: cfproperty

2005-11-21 Thread Sean Corfield
On 11/21/05, Snake [EMAIL PROTECTED] wrote: Does anyone know what the undocumented functionality of cfproperty is, someone mentioned it to me the other day, but it has escaped me. What undocumented functionality? cfproperty serves just two purposes: 1. If you write a web service that returns

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Sean Corfield
On 11/21/05, Troy Simpson [EMAIL PROTECTED] wrote: Are mappings searched automatically when using CreateObject with a ColdFusion component? Yes createObject(component,foo.bar) will look for a /foo mapping (and if it doesn't find one, it will look for /foo off the webroot or off any of the

Re: Open Source Shopping Cart Coding Guidelines

2005-11-20 Thread Sean Corfield
that proscribes certain best practices) and the Developing Rich Clients with Macromedia Flex book: http://www.amazon.com/exec/obidos/tg/detail/-/0321255666?v=glance The coding guidelines I mentioned are for CFMX 7 (despite the link's title - I need to update that!): On 11/18/05, Sean Corfield [EMAIL

Re: Open Source Shopping Cart Coding Guidelines

2005-11-20 Thread Sean Corfield
On 11/20/05, Sean Corfield [EMAIL PROTECTED] wrote: The coding guidelines I mentioned are for CFMX 7 (despite the link's title - I need to update that!): Fixed. The links now correctly say ColdFusion MX 7! -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Peter Farrell [EMAIL PROTECTED] wrote: The distinguishing factor between M2 and MG for controller code is a name -- controller (MG) or listener (M2). In essense, they act in the same way. It's merely a semantic difference IMHO. I beg to differ... The more important difference

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Snake [EMAIL PROTECTED] wrote: I have been looking at mach-II and model-glue as my two possibilities. Has anyone used both and has any comments on which one they liked best and why. Read my frameworks comparison presentation and look at the frameworks sample code that goes with it

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Barney Boisvert [EMAIL PROTECTED] wrote: Fusebox 4 was developed specifically for CFMX, and doesn't use OO or CFCs. Just because it don't have the buzzword compliance doesn't make a framework bad. Heck, FB3 which was designed for CF4 is still a very viable framework. Which

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
I agree completely with Barney here and would refer folks to these posts by, respectively, Joe Rinehart and Ben Edwards about the implicit part of the invocation process in Mach II: http://clearsoftware.net/client/index.cfm?mode=entryentry=FFC3E60A-E081-2BAC-69C5B0BD2C8DE3C0

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Peter Farrell [EMAIL PROTECTED] wrote: Yes, you can announce events in your listeners, however you cannot clear the event queue (well, you could if you access some untouchable stuff in the request scope). But you can in a filter - which is really just a different type of

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Barney Boisvert [EMAIL PROTECTED] wrote: The web flows in a procedural way. It's just a byproduct of HTTP, and no real way around it. Yes, this is an extremely important point that many people seem to gloss over. Even trying to overlay MVC on the web interaction model is not a

Re: Mach-II vs model-glue

2005-11-19 Thread Sean Corfield
On 11/19/05, Barney Boisvert [EMAIL PROTECTED] wrote: To open a can of worms can you elaborate? Most of what I disliked about FB3 is implied in this review of the FB3 book: http://corfield.org/index.cfm/event/fusebox.fusebook I know some version-agnostic things about Fusebox (like

Re: CFMX 7 on Dual Core CPU's

2005-11-18 Thread Sean Corfield
On 11/17/05, Jordan Michaels [EMAIL PROTECTED] wrote: Anyone know off-hand if Macromedia considers Dual-Core CPU's one CPU or two? I asked internally and was told that, for licensing purposes, a CPU is considered one *physical* CPU so a dual core CPU is still considered *one* CPU (same with

Re: moving to cfeclipse... troubles

2005-11-18 Thread Sean Corfield
On 11/18/05, Munson, Jacob [EMAIL PROTECTED] wrote: The major thing I noticed was now extended find/replace. It is the main reason I use homesite and really hope you can do something very similar in eclipse. Any suggestions? I miss the same thing from Homesite. I haven't found anything as

Re: CFUnit ... Getting started

2005-11-18 Thread Sean Corfield
On 11/18/05, Jeff D. Chastain [EMAIL PROTECTED] wrote: So, I go to write a unit test around a simple bean object. First test, setName(name) Okay, obviously I need to pass in a string to this method, but as it is a setter, it does not return anything. So, what am I really testing here

Re: Open Source Shopping Cart Coding Guidelines

2005-11-18 Thread Sean Corfield
On 11/18/05, Andy [EMAIL PROTECTED] wrote: Are you going to get a chance to take a first cut at this? If not, can you point me to someplace that I can use to do so? http://livedocs.macromedia.com/wtg/public/ -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying

Re: Open Laszlo and CF

2005-11-15 Thread Sean Corfield
On 11/15/05, Bryan Stevenson [EMAIL PROTECTED] wrote: WIth the drop in flex's price coming I don't see any reason to even concider laszlo, I mean you could try it nad heres what I would try. Any idea what kind of drop we're talkin about Disruptor? He means the availability of Flex Builder 2

Re: Open Laszlo and CF

2005-11-15 Thread Sean Corfield
On 11/15/05, Bryan Stevenson [EMAIL PROTECTED] wrote: So I'm really clear on this Sean...are you saying I could build Flex apps for under $1000? or can they be built and deployed for that? I gather you haven't been following all of the announcements around the Flex 2 product line? Today, you

Re: Open Laszlo and CF

2005-11-15 Thread Sean Corfield
On 11/15/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Would it be a safe assumption that I could build standard web apps using Flex 2 that look and behave in a much more robust way (than HTML and cross browser of course due to SWFs) without having to know a tonne of Flash (but would have to

Re: DB connection question

2005-11-15 Thread Sean Corfield
On 11/15/05, Munson, Jacob [EMAIL PROTECTED] wrote: All of the hosts I've used so far don't allow remote db administration, except through a web interface. I have only been on a few, but I think this is standard practice in the hosting world. I do a lot of my db admin remotely with two sites

Re: More RAD than Ruby On Rails

2005-11-13 Thread Sean Corfield
On 11/11/05, Mark Fuqua [EMAIL PROTECTED] wrote: I really can't believe Ruby would be/could be quicker than PLUM. Nor can I. RoR requires you manually generate controllers, models and scaffolding. If you want a nicely formatted page / form, you need to write it yourself since the defaults are

Re: More RAD than Ruby On Rails

2005-11-13 Thread Sean Corfield
On 11/13/05, Marlon Moyer [EMAIL PROTECTED] wrote: I would say it's probably the most common type of web app deployed today. Possibly but the trend is to more complex business applications, IMO. RoR doesn't need any special editor other than notepad and a command line. Right, but PLUM does

Re: cftry/cfcatch - what the heck?

2005-11-11 Thread Sean Corfield
On 11/11/05, John Beynon [EMAIL PROTECTED] wrote: ok, here's a chunk of code; cftryPrices: pound;#numberformat(application.siteCodes.sitecode[thissitecode].pricerange.minprice)# - pound;#numberformat(application.siteCodes.sitecode[thissitecode].pricerange.maxprice)#/p cfcatch!---

Re: cfinclude problem

2005-11-11 Thread Sean Corfield
On 11/11/05, Charlie Griefer [EMAIL PROTECTED] wrote: / is (and has always been) a built-in CF mapping (defined in the CF Admin) that goes to the root of the site. It may have been in the past but recent releases do not define / as a mapping in the admin and, in fact, having that mapping can

Re: cfinclude problem

2005-11-11 Thread Sean Corfield
On 11/11/05, Charlie Griefer [EMAIL PROTECTED] wrote: wow. i had no idea that had changed. just out of curiousity...when you say 'recent versions'... MX? MX 7? I just checked my local 6.1 and 6.1.1 installs and those do not have a / mapping (they have a /CFIDE mapping). The 6.1.1 install is

Re: cfinclude problem

2005-11-11 Thread Sean Corfield
On 11/11/05, Dave Watts [EMAIL PROTECTED] wrote: If 'recent releases do not define / as a mapping in the admin', then what do they define the / as?? They simply don't define it at all. If you use a path that begins with a slash within a CFINCLUDE or CFMODULE tag, CF will then search the

Re: OT: Ruby on Rails

2005-11-10 Thread Sean Corfield
On 11/10/05, Bryan Stevenson [EMAIL PROTECTED] wrote: 1) On the surface...DAMN! Sure could be better than CF for RAD Yes, the first impressions of RoR are usually Wow!. 2) Demo was WAY too simple (basic blog). I'd bet that if you had conditional form validation (i.e. start date must be

Re: removing trailing comma in CSV row

2005-11-09 Thread Sean Corfield
On 11/9/05, Richard Colman [EMAIL PROTECTED] wrote: I am trying to build lines of CSV data. However, I don't know exactly how to get rid of the LAST comma in the line. There's an easy solution that involves thinking differently about the list you're outputting: Instead of worrying about

Re: Fist try at an async gateway

2005-11-09 Thread Sean Corfield
Is this on CF Enterprise or on CF Developer? The async g/w on Developer only processes one request at a time hence it would appear to be serial execution. On 11/9/05, Ian Skinner [EMAIL PROTECTED] wrote: I've created an async gateway that is supposed to do some processing that may take a few

Re: cfparam form variables

2005-11-08 Thread Sean Corfield
On 11/8/05, Ken Ketsdever [EMAIL PROTECTED] wrote: but I vaguely remember making a change having to do with the email address a few months ago. (Note to self: got to start commenting better) Two words: version control :) -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not

Re: OT: cfQuickDocs

2005-11-08 Thread Sean Corfield
On 11/8/05, Munson, Jacob [EMAIL PROTECTED] wrote: Last night I took care of the spaces in the category names. I'm just replacing them in the JS, then putting them back in the CF function (since the data has spaces, I need to have them there). Let me know if it still doesn't work in Safari,

Re: OT: cfQuickDocs

2005-11-08 Thread Sean Corfield
On 11/8/05, Munson, Jacob [EMAIL PROTECTED] wrote: This now works as you described. Select a tag category, then if you type in the cf tag box it will filter the existing category list. Same thing works for functions. Not on Safari :) http://www.techfeed.net/cfQuickDocs/?isDefined or

Re: cfinclude from a template, or onRequestStart?

2005-11-08 Thread Sean Corfield
On 11/8/05, Will Tomlinson [EMAIL PROTECTED] wrote: I usually assemble my pages with a cfinclude header, menu, footer, etc. But I figured it might be better to include the header.cfm in onRequestStart, and footer.cfm in onRequestEnd to keep from spreading includes all over the place. This

Re: eclpise and dw playing together

2005-11-07 Thread Sean Corfield
On 11/7/05, Adam Haskell [EMAIL PROTECTED] wrote: Sean i think he is referring to being able to do a split view of the same template's code. If thats not what dave was talking about I know a co-worker was asking for it the other day. Basically you open the same template into 2 panes so you can

Re: OT: cfQuickDocs

2005-11-07 Thread Sean Corfield
On 11/7/05, Munson, Jacob [EMAIL PROTECTED] wrote: http://www.techfeed.net/cfQuickDocs/ Very slick indeed! I like the way it fills in the possible matches as you type. The category drop-downs don't seem to behave how I would expect - how are they meant to work? -- Sean A Corfield --

Re: OT: cfQuickDocs

2005-11-07 Thread Sean Corfield
On 11/7/05, Munson, Jacob [EMAIL PROTECTED] wrote: They should give you all the tags/functions that match the category you clicked. Is it not doing that for you? Ah, several of the categories are empty then. Application Framework (empty) Database Manipulation (empty) Data output (empty)

Re: OT: cfQuickDocs

2005-11-07 Thread Sean Corfield
On 11/7/05, Munson, Jacob [EMAIL PROTECTED] wrote: I'll look into this tonight and try to escape or replace the spaces in the category names, I'll bet that fixes it. Ah, I bet that would be it, yes. And you're right: it's just Safari. Mac/FF is fine. -- Sean A Corfield -- http://corfield.org/

Re: cfparam form variables

2005-11-07 Thread Sean Corfield
I can't repro this based on your code - can you give more details about *exactly* what the error is and where it is occurring? On 11/7/05, Ken Ketsdever [EMAIL PROTECTED] wrote: Minus the funny wrapping is there anything wrong here? Only 30% of our employees have email addresses, yet we ask

Re: cfparam form variables

2005-11-07 Thread Sean Corfield
On 11/7/05, Sean Corfield [EMAIL PROTECTED] wrote: I can't repro this based on your code - can you give more details about *exactly* what the error is and where it is occurring? Ah, I see what you mean now. The error is coming from the cfmail tag because the RegistrantEMail field is an empty

Re: cfparam form variables

2005-11-07 Thread Sean Corfield
On 11/7/05, Bryan Stevenson [EMAIL PROTECTED] wrote: No Sean I think the code is just wrong and most likely never worked on 6.1but hey...I've been wrong before (sh..don't tell) ;-) Yuppers. I just fired up a 6.1 instance and tested it and... RegistrantEMail is passed as an empty string

Re: GetTickCount() and application.cfc

2005-11-06 Thread Sean Corfield
On 11/6/05, Mark Leder [EMAIL PROTECTED] wrote: Trying to make the getTickCount() function work inside an application.cfc onRequestStart and onRequestEnd methods. The onRequestStart method returns the variable, but onRequestEnd does not (var can't be found by CF). onRequestStart() returns a

Re: eclpise and dw playing together

2005-11-06 Thread Sean Corfield
On 11/5/05, dave [EMAIL PROTECTED] wrote: can they both read from the same folders without having to reimport the files in ecplise every time you switch between them? If you're editing the same file in both applications, this shouldn't surprise you. At least these applications let you know the

Re: eclpise and dw playing together

2005-11-06 Thread Sean Corfield
On 11/6/05, dave [EMAIL PROTECTED] wrote: I wasn't saying that if you have dw and eclipse open with the same file in each, I was looking it at like sean uses it, I need dw for cssp layouts or for the presentation tier but would like to have ecplise open with the cfc's and data pier but not

Re: GetTickCount() and application.cfc

2005-11-06 Thread Sean Corfield
On 11/6/05, Mark Leder [EMAIL PROTECTED] wrote: Apparently, the onRequestEnd fires after the footer, so that's why the vars weren't being set. Yes the order of execution is: onApplicationStart() - if the app is not already initialized onSessionStart() - if the session is not already

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Can you not invoke cfcs from inside a onSessionStart function inside the application.cfc? Yes, you can invoke CFCs just fine. What problems are you encountering? -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Won't invoke at all. What error do you get? -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying somebody, you're not really alive. -- Margaret Atwood

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Also, I tried taking out the locks in the two cfcs - still won't work. Restarted CF server, no change. This is really frustrating as this code has worked great (and is working right now) on other sites just using application.cfm with the var

Re: Call for speakers CFUNITED-06 due 11/18/05 and CCS interview with Sandra Clark

2005-11-03 Thread Sean Corfield
On 11/2/05, Michael Smith [EMAIL PROTECTED] wrote: Check out the CFUNITED-06 ColdFusion conference news below. * CFUNITED-06 is announced for 6/28/06 - 7/1/06 in the Washington DC area. * If you want to speak or want to suggest a topic for someone else to speak please complete the

Re: Caching, caching what is doing all this caching?!

2005-11-03 Thread Sean Corfield
On 11/2/05, Ian Skinner [EMAIL PROTECTED] wrote: Now that I got most of my crunch out of the way, I did some experimenting. I noticed that DW8 had not replaced my DW7, even though it did copy all my settings. Rather nice of Eight I think. So, I loaded up Seven and did a handful of

Re: ColdFusion MX7 and Flex Recommendations

2005-11-01 Thread Sean Corfield
On 10/27/05, Ali Awan [EMAIL PROTECTED] wrote: So will the Enterprise Services be similar to what I was thinking of Flex1.5? Enterprise Services will provide a lot of data-related and messaging stuff (e.g., JMS connectivity). From what I read at Macromedia Labs, it seems that with Flex

Re: query.getMetaData() and the isXXX() functions

2005-10-25 Thread Sean Corfield
On 10/20/05, John Paul Ashenfelter [EMAIL PROTECTED] wrote: If you take a query and do a getMetadata() function on it, you get back an object of this type: coldfusion.sql.QueryTableMetaData which, among it's many methods, has some like this The only documented functionality is: name,

Re: ColdFusion MX7 and Flex Recommendations

2005-10-25 Thread Sean Corfield
On 10/25/05, Ali Awan [EMAIL PROTECTED] wrote: I was thinking that to use CF and Flex together there was some sort of Flex server component that could be added to CF server. The Enterprise Data Services component of Flex 2 is/will be a server component but Flex Builder 2 can create standalone

Re: Question: How Much of an Interest is there in AJAX?

2005-10-24 Thread Sean Corfield
On 10/24/05, Tim Blair [EMAIL PROTECTED] wrote: To make sure that all browsers can see Flash you have to use non-standard HTML. But 98% of all computers already have Flash and it behaves the same on every machine. The HTML code needed to embed Flash is simple, well-understood and supported

Re: Question: How Much of an Interest is there in AJAX?

2005-10-24 Thread Sean Corfield
And just to be clear: I think the AJaX-style stuff has a lot of value - I just don't see it as an either Flash or 'AJaX'-style stuff issue, I think we'll increasingly see a blend of both. I'm just tackling some of the anti-Flash sentiments in Tim's email... On 10/24/05, Sean Corfield [EMAIL

Re: CFEclipse and JS...

2005-10-24 Thread Sean Corfield
On 10/24/05, Ken Ferguson [EMAIL PROTECTED] wrote: For all of you using CFE, I have a question. What do you use as a plugin for editing JS? I installed the JSEclipse plugin and it works nicely, but it won't work when I open a JS file from the File Explorer view. Has anyone else noticed and

Re: ColdFusion MX7 and Flex Recommendations

2005-10-24 Thread Sean Corfield
On 10/24/05, Ali Awan [EMAIL PROTECTED] wrote: I am thinking of installing the dev edition of MX 7 and then installing the Flex 2 plugin. The Flex 2 plugin? Not sure what you mean here. There is a Flex Builder 2 Eclipse plugin (that you install on top of Eclipse) or there is a Flex Builder 2

Re: developer edition gateway limitations?

2005-10-23 Thread Sean Corfield
It's limited to a single thread, as far as I know. I don't know if that's explicitly spelled out in the documentation. On 10/22/05, Paul Hastings [EMAIL PROTECTED] wrote: i *know* there's some kind of throttle on the developer trial editions for gateways but i can't find the exact

Re: cfinclude or cfmodule in Application.cfc

2005-10-23 Thread Sean Corfield
On 10/23/05, dave [EMAIL PROTECTED] wrote: k in app.cfc I want to include headers and footers but since app.cfc runs in the template thats requested the path changes so you cant use cfinclude template=includes/header.cfm Why not use a root-relative path? cfinclude

Re: cfinclude or cfmodule in Application.cfc

2005-10-23 Thread Sean Corfield
On 10/23/05, dave [EMAIL PROTECTED] wrote: already tried that and it didnt work What exactly didn't work about it? I just tried it in a variety of directory structures and it works just fine for me... -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying somebody,

Re: cfinclude or cfmodule in Application.cfc

2005-10-23 Thread Sean Corfield
On 10/23/05, dave [EMAIL PROTECTED] wrote: first prob was user error, didnt have closing tag, so now it runs without error but still doesnt pull up header or footer. What does your Application.cfc look like? Which methods are doing the including? Do you have output=true on the methods in which

Re: developer edition gateway limitations?

2005-10-23 Thread Sean Corfield
On 10/23/05, Paul Kenney [EMAIL PROTECTED] wrote: My experience is that the number of queued events allowed at a time is limited. Yes, it is also possible than in addition to the single thread limitation there is a queue limitation. By default on Enterprise Edition the limits are 10 threads and

Re: Sandbox Security, CFC, and cftag Path. Oh My!!

2005-10-22 Thread Sean Corfield
Remove the default CustomTags custom tag location? On 10/21/05, Troy Simpson [EMAIL PROTECTED] wrote: Background: I am developing a ColdFusion Application using CFMX 7 and the Mach-II Framework. There are multiple applications in the JRun/ColdFusion instance and the applications are

Re: anyone using mx7 in production?

2005-10-22 Thread Sean Corfield
On 10/21/05, dan martin [EMAIL PROTECTED] wrote: It seems to be quite unstable compared to 5.0. The performance also seems to be worse, not better. Is anyone using this in a production environment? macromedia.com was running CFMX 7 at launch and CFMX 7.0.1 at launch. It's happily serving up

Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Sean Corfield
On 10/14/05, Jordan Michaels [EMAIL PROTECTED] wrote: For some time now, Vivio Technologies has been debating whether or not to put forth the effort to complete the development of a completely free, (under a modified open-source MIT license) CFML calendar application. cfopen.org has a very

Re: Any Interest in a Completely Free CFML Calendar?

2005-10-22 Thread Sean Corfield
On 10/22/05, Mark Fuqua [EMAIL PROTECTED] wrote: As you say choice is good. However, the two apps are vastly different. In a brief look at Vivio's, it seems more like outlook exchange, very robust and not based on fusebox. I am not sure these two calendars compete/compare at all. I was

Re: Open Source Shopping Cart (was: Shopping Cart)

2005-10-21 Thread Sean Corfield
On 10/21/05, Jim Davis [EMAIL PROTECTED] wrote: I'd help as well and could offer hosting for the project if needed. Out of curiosity, why not use cfopen.org or openxcf @ sourceforge, both of which already exist, are free, and have all the necessary infrastructure? -- Sean A Corfield --

Re: Open Source Shopping Cart (was: Shopping Cart)

2005-10-21 Thread Sean Corfield
On 10/21/05, Jim Davis [EMAIL PROTECTED] wrote: Although for what it's worth I actually already exist, am free and have at least some infrastructure as well. ;^) LOL! No offence intended... One thing that I think really would help the Open Source scene in the ColdFusion community would be to

Re: When will Dave Watts finally blog?

2005-10-20 Thread Sean Corfield
On 10/20/05, Fred Urban [EMAIL PROTECTED] wrote: I don't think Dave can stop drinking long enough to blog. I hear he got extremely drunk at MAX this week. Lots of people got drunk at MAX. Lots of people get drunk at every conference. Ever been to any conferences Fred? -- Sean A Corfield --

Re: CF_Underground interview 2: Paper prototyping, MAX survey

2005-10-20 Thread Sean Corfield
On 10/20/05, Fred Urban [EMAIL PROTECTED] wrote: I hear Simon did a great job of presenting at CF_Underground. However Jared appeared to have prepared about 5 minutes before his portion and let the audience do all the work. Er, you hear about Simon's session - so you weren't there? Yet you

Re: When will Dave Watts finally blog?

2005-10-20 Thread Sean Corfield
On 10/20/05, Fred Urban [EMAIL PROTECTED] wrote: Actually I heard it first hand from the guy who had to drag him up to his room. I was there, you were not. I also don't see how public drunkeness is so great. What a waste of brain cells. So it's still hearsay then? And who cares? Clearly

Re: OT: Unit testing sucks?

2005-10-19 Thread Sean Corfield
On 10/19/05, Munson, Jacob [EMAIL PROTECTED] wrote: This guy thinks unit testing is way overrated and a waste of time: Well, that's not really what he's saying... his real objection is that unit testing *tools* suck and that developers just don't know how to write automated tests. And I agree

Re: PayPal Integration

2005-10-18 Thread Sean Corfield
On 10/17/05, Taco Fleur [EMAIL PROTECTED] wrote: Just wondering has anyone got the PayPal seamless API working with ColdFusion? I am getting a 500 null error, which is not documented in the documentation anywhere. Have you considered using Continuum Media's PayPalMX wrapper?

Re: CF_Underground interview 2: Paper prototyping, MAX survey

2005-10-13 Thread Sean Corfield
On 10/13/05, Michael Smith [EMAIL PROTECTED] wrote: 1. CF_Underground News - MAX and training survey 1. CF_Underground conference News * * Who is going to MAX and what training do you prefer? Take our MAX and training survey at

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Sean Corfield
On 10/11/05, Russ [EMAIL PROTECTED] wrote: Is the CFEClipse project dead? There haven't been any updates or posts to the CFEClipse development list for a few months now... Or is spike just busy with all the CF conferences? The users list on tigris is pretty active right now with folks

Re: CFMX 6.1 download

2005-10-10 Thread Sean Corfield
On 10/9/05, Jeff Houser [EMAIL PROTECTED] wrote: The way I found it: macromedia.com -- Downloads -- Free Trials --- ColdFusion MX 7 -- Try Or... Go to the main ColdFusion page and look in the sidebar on the right - there's a link to all things 6.1. -- Sean A Corfield -- http://corfield.org/

Re: Help - Need Version 6.0

2005-10-10 Thread Sean Corfield
On 10/10/05, Nick Han [EMAIL PROTECTED] wrote: Don't ask me why but does anybody know where I can get a copy of CFMX version 6.0? Is it still on Macromedia website for download? I very much doubt it - ColdFusion MX 6.1 is still available for download and purchase and that was the recommended

Re: Help - Need Version 6.0

2005-10-10 Thread Sean Corfield
On 10/10/05, Sean Corfield [EMAIL PROTECTED] wrote: On 10/10/05, Nick Han [EMAIL PROTECTED] wrote: Don't ask me why but does anybody know where I can get a copy of CFMX version 6.0? Is it still on Macromedia website for download? No, 6.0 is not available. Sorry. And just to confirm

Re: Help - Need Version 6.0

2005-10-10 Thread Sean Corfield
On 10/10/05, Nick Han [EMAIL PROTECTED] wrote: 1) cflogin swaps wrong user id Quite possibly a bug in 6.0 that got fixed in 6.1. 2) (best practices aside, CFCs intermittently cannot see request variables) Hmm, see (4) below. 3) intermittent datasource not found java errors Could be a bug

Re: jrun cluster (one directory 2 nodes)

2005-10-06 Thread Sean Corfield
On 10/6/05, Tony [EMAIL PROTECTED] wrote: i'd like to make it so that i have one directory supplying the codebase for both nodes of my jrun cluster. If you mean multiple instances on one server sharing a web root, go to the JMC (port 8000, JRun admin) and change the document root in both

Re: fusebox security plugin

2005-08-23 Thread Sean Corfield
On 8/23/05, wolf2k5 [EMAIL PROTECTED] wrote: I am looking for a sample security plugin for Fusebox 4.1. Do you know any? Sandy Clark will be releasing one at the frameworks conference. Also, is it possible to use CF security framework (cflogin, IsUserInRole, etc.) with Fusebox? If so, how?

Re: CFEclipse 1.2 - How do you wrap text?

2005-08-21 Thread Sean Corfield
This is correct... we discussed the usefulness of the line-wrapping feature and basically it come down that most coders didnt use it (personally I turn it off in most editors) Being a semi-democratic plugin, it isn't a feature that will appear until the great masses tell us otherwise And

Re: bg myspace

2005-08-16 Thread Sean Corfield
Just asking, but would this not go under cf-community? Because servers running CF5 and BlueDragon are a ColdFusion-related topic? ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

<    2   3   4   5   6   7   8   9   10   11   >