Re: CFMX: how to access a servlet?? (again)

2002-11-12 Thread Sean A Corfield
On Tuesday, Nov 12, 2002, at 06:12 US/Pacific, Marcello Frutig wrote: there is no need to create any special mapping on the external web server to have CFMX serving servlets called via a url like http://host/myMapping/MySerlvet. Just install the CFMX JRun Connector and all the servlet

Re: Coldfusion accessing Exchange Server

2002-11-12 Thread Sean A Corfield
Read Ben's fine book on Reality ColdFusion MX : Content Management and Intranets where one of the case studies talks about how hard this is to get working. It makes for very interesting reading! It's the Personal Information Manager case study. On Tuesday, Nov 12, 2002, at 06:54 US/Pacific,

Re: Contribute and Fusebox (WAS RE: OT? Macromedia Contribute, is it Content Management or not?)

2002-11-12 Thread Sean A Corfield
On Tuesday, Nov 12, 2002, at 04:43 US/Pacific, Robertson-Ravo, Neil (REC) wrote: It is also interesting to note that the OSX version is not out till next year :-).. Well, Windows is the more popular platform and Contribute has a fairly tight integration with Windows / MS Office. Again,

RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Adrocknaphobia Jones
Well, I'll agree with you halfway. COM is definitely not dead, although MM acts like it is. However, webservices may be able to replace basic COM functions like using Office to convert a word doc to html. But it's not going to be able to replace the sophistication COM offers developers. Josh:

RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Joshua O'Connor-Rose
I'm using ColdFusion 5 I've heard of these web service things in seminars and meetings discussing net and other development environments. I haven't realy explored using them Can I implement a web service into my application now? (Like that Doc to HTML web service) Where can I learn about that.

RE: Locked Out

2002-11-12 Thread Raymond Camden
Is this 4.5.1 _without_ the duplicate fix? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the Force, and a powerful ally

Re: inserting a record in Linux/MySQL

2002-11-12 Thread Jochem van Dieten
Quoting [EMAIL PROTECTED]: Have you ever tried inserting a '\' character? As in: 'D:\whatever\filename.txt' If you are really keen on testing, try the following: \'; DROP TABLE yourtable; -- If the table structure matches, not even the option to prevent table dropping in the CF MX

Re: RE: CFOBJECT and conversion from ASP

2002-11-12 Thread ksuh
Yes, you can. However, using a web service via something like SOAP is a pain, because you'd have to build the SOAP packets yourself. *shudder* - Original Message - From: Joshua O'Connor-Rose [EMAIL PROTECTED] Date: Tuesday, November 12, 2002 11:27 am Subject: RE: CFOBJECT and

CF Wiki?

2002-11-12 Thread Josh Trefethen
Does anyone know of a CF Based Wiki that I could use? -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. ~| Archives:

RE: Referencing component packages

2002-11-12 Thread Blum, Jason (SAA)
Yeah, that's what I would have thought. And that's precisely that all the books and MX documentation say. But it isn't working for me... Thanks for the response though! -Original Message- From: Marlon Moyer [mailto:marlon;mcmoyer.com] Sent: Tuesday, November 12, 2002 12:19 PM

RE: Referencing component packages

2002-11-12 Thread Brook Davies
Have you tried just /components/Query ? At 01:45 PM 12/11/02 -0500, you wrote: Yeah, that's what I would have thought. And that's precisely that all the books and MX documentation say. But it isn't working for me... Thanks for the response though! -Original Message- From:

RE: Referencing component packages

2002-11-12 Thread Raymond Camden
So what do you get when you use the syntax Marlon suggested? Also, are you on Windows or Unix? If Unix, the case will matter I believe. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW :

RE: CF Wiki?

2002-11-12 Thread Matt Liotta
www.seedwiki.com Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Josh Trefethen [mailto:jtnewsletters;exciteworks.com] Sent: Tuesday, November 12, 2002 1:44 PM To: CF-Talk Subject: CF Wiki? Does anyone

RE: RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Rob Rohan
If you want to try, a soap packet looks like this: ?xml version=1.0? !-- A SOAP message MUST be encoded using XML A SOAP message MUST have a SOAP Envelope A SOAP message CAN have a SOAP header A SOAP message MUST have a SOAP Body A SOAP message MUST use the SOAP Envelope namespace A SOAP message

RE: Locked Out

2002-11-12 Thread Sandy Clark
I never found a duplicate fix for 4.5.1. Of course after CF5 came out, I have to admit, I never went looking for it. The bug in the duplicate for CF4.5.1 threw a C error and did on many occassions crash my server. I found that it only happened when duplicating recordsets. -Original

RE: Referencing component packages

2002-11-12 Thread Raymond Camden
Do not use / format. This is the second time I've seen this used - any reason why? It's not in the docs. You should use foo.goo format where every item till the end is a folder name and the last item is the CFC itself. ===

RE: CF Wiki?

2002-11-12 Thread Josh Trefethen
That looks good...I guess I wanted code so I could modify it and host it myself...any of those that you know of? -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Matt

RE: Locked Out

2002-11-12 Thread Raymond Camden
I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1, please grab the fix. :) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW :

Re: cfscript book

2002-11-12 Thread Michael Dinowitz
http://www.houseoffusion.com/docs/cfscript.htm does anyone have a good cfscript book to recommend? thanks! ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

Re: cfscript book

2002-11-12 Thread Michael Dinowitz
http://www.houseoffusion.com/docs/cfscript.htm does anyone have a good cfscript book to recommend? thanks! ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Mark A. Kruger - CFG
Rob, In addition, a soap message is passed as a part of the content-body, not in the header - an often as a POST type request. Since CFHTTP cannot accomplish this - you have to find a TCP/IP COM capable of configuring raw http requests to make this happen. -mk -Original Message- From:

Contribute Pricing Question.

2002-11-12 Thread Ciliotta, Mario
Hi All, Does anyone know what the expected price is of Contribute? This is exactly what I have been looking for to allow my end-users to change the static text on the page while not touching my CFM and Javascript code. Mario This message is for the named person's use only. It may contain

RE: cfscript book

2002-11-12 Thread Chris Kief
I believe Tony was referring to part of the ColdFusion language (cfscript). As far as a good book goes, about the only thing I've read lately with decent cfscript coverage is Ben Forta's advanced CFMX app. dev. book. The book touches on the use of variables, functions, if-else, switch-case,

Re: inserting a record in Linux/MySQL

2002-11-12 Thread Rick Root
Jochem van Dieten wrote: If you are really keen on testing, try the following: \'; DROP TABLE yourtable; -- If the table structure matches, not even the option to prevent table dropping in the CF MX Administrator will stop this. I can't actually figure out how to test this in my

RE: CF Wiki?

2002-11-12 Thread Matt Liotta
http://www.seedwiki.com/page.cfm?doc=downloadthecodewikiid=1wpid=114 Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Josh Trefethen [mailto:jtnewsletters;exciteworks.com] Sent: Tuesday, November 12, 2002 2:02

RE: CF Wiki?

2002-11-12 Thread Michael Wolfe
Josh, I'm sending you a file off-list that might be what you are looking for. Mike Wolfe [EMAIL PROTECTED] -Original Message- From: Josh Trefethen [mailto:jtnewsletters;exciteworks.com] Sent: Tuesday, November 12, 2002 11:02 AM To: CF-Talk Subject: RE: CF Wiki? That looks good...I

RE: Locked Out

2002-11-12 Thread Matt Robertson
Ray wrote: I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1, please grab the fix. :) That hotfix was only released for Enterprise. If you were running 4.5.1sp2 Pro (like me) you were SOL. There was quite a bit of squalling about that on

Re: Referencing component packages

2002-11-12 Thread Marlon Moyer
Make sure that you're referencing from CF's root directory. Another option if you have DWMX is to drag the component into your code from the Application--Components toolbar Raymond Camden wrote: Do not use / format. This is the second time I've seen this used - any reason why? It's not in the

RE: CF Wiki?

2002-11-12 Thread Josh Trefethen
Cool...didn't see that I could download it...thanks! -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Matt Liotta [mailto:mliotta;r337.com] Sent: Tuesday, November 12,

RE: cfscript book

2002-11-12 Thread Tony Weeg
chris nail.right on the head! that's what I was looking for, a book that really goes in depth with syntax, real world examples, etc... that I could take and expound uponim not really that good with writing ecma-type scripts, however I can read/interpret them well, and now I want to

Re: Locked Out

2002-11-12 Thread Marlon Moyer
I've always been able to do without *but* its a *hole* I'd like to *plug* nonetheless. What Kind of coded messages are you sending to the list :) Matt Robertson wrote: Ray wrote: I'd be willing to bet it was addressed in the hotfix. Either way - if anyone out there IS using 4.5.1,

RE: CF Wiki?

2002-11-12 Thread Josh Trefethen
Got it thanks! -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Michael Wolfe [mailto:vws;visionary-art.com] Sent: Tuesday, November 12, 2002 11:17 AM To: CF-Talk

Apache 2.0.40 - CFMX and Virtual Hosts

2002-11-12 Thread Wallick, Mike
Hi all. Just wondering: I've been fighting with using virtual hosts and CFMX for a week or so now and I simply cannot get it to work. No matter what I do, my Apache/CF combo will only serve CF templates from the first document root (C:\CFusionMX\wwwroot). I have modified jrun.xml to set the

Re: RE: Locked Out

2002-11-12 Thread ksuh
Ahh, so the problem did affect pro? Well, that sucks, as we're running pro right now. - Original Message - From: Matt Robertson [EMAIL PROTECTED] Date: Tuesday, November 12, 2002 12:17 pm Subject: RE: Locked Out Ray wrote: I'd be willing to bet it was addressed in the hotfix.

Re: Contribute Pricing Question.

2002-11-12 Thread samcfug
$99.00 per seat = Douglas White group Manager mailto:doug;samcfug.org http://www.samcfug.org = - Original Message - From: Ciliotta, Mario [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 12,

RE: Referencing component packages

2002-11-12 Thread Raymond Camden
Not CF's root dir, but one of these: Current folder Web root (I assume you meant web root, not really the cfusionmx root) A defined mapping === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW

Locked Out

2002-11-12 Thread Matt Robertson
Dude... You are one sick puppy. Now I wish I had kept for myself that bottle of Cabo Wabo I just gave to a coworker for his birthday :D I could use a shot of tequila right about now. --M-- ~| Archives:

CFMX Web Services

2002-11-12 Thread Jim Campbell
Hi all - I just subscribed to the list and have only slogged through a few days of archives, so I thought I'd just throw out a quickie here so as not to waste too much time: Has the issue of application/data security and CFMX-created Web Services been discussed on-list as of yet? If so, can

RE: RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Rob Rohan
Good point. Pretty easy to do in Java, perhaps it would be easy to do with java+mx - never tried. -Original Message- From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] Sent: Tuesday, November 12, 2002 11:08 AM To: CF-Talk Subject: RE: RE: CFOBJECT and conversion from ASP Rob,

Single quotes trouble...

2002-11-12 Thread Wurst, Keith D.
Hey everyone. I wanted to include some single quotes into a cfset so that I can use the variable in a sql query. Any suggestions on how to do this? For example... cfset cip_numb = cip = #get_cip_num.cip_number# I would like to put the single quotes around the #get_cip_num.cip_number#. Thanks

Re: cfscript book

2002-11-12 Thread Jeffry Houser
What does Fusionscript have to do with cfscript? As near as I can tell there are no relation. I doubt you'll find a book dedicated to cfscript. I'd recommend my CF5 Beginner's book. The chapter on CFScript covers all you need to know, and you won't be able to beat the price with some of

RE: Single quotes trouble...

2002-11-12 Thread Raymond Camden
What is wrong with cfset cip_numb = cip = '##' === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the Force, and a

Re: Single quotes trouble...

2002-11-12 Thread Scott Brady
cfset cip_numb = cip = #get_cip_num.cip_number# I would like to put the single quotes around the #get_cip_num.cip_number#. If I understand the question, have you tried: cfset cip_numb = cip = '#get_cip_num.cip_number#' ? Scott Scott Brady

CFMX HELP NEEDED IMMEDIATELY

2002-11-12 Thread ecreese
I just installed CFMX on our production server. Got everything going and can bring up the adminstrator on the server's browser with no issues. But when I attempted to start the CF Administrator from a browser not on the server I get the following error: You have attempted to dereference a

Re: Single quotes trouble...

2002-11-12 Thread Rick Root
Wurst, Keith D. wrote: Hey everyone. I wanted to include some single quotes into a cfset so that I can use the variable in a sql query. Any suggestions on how to do this? For example... cfset cip_numb = cip = #get_cip_num.cip_number# I would like to put the single quotes around the

RE: Single quotes trouble...

2002-11-12 Thread Wurst, Keith D.
I've tried that and it's showing up as double quotes - causing the sql query to fail. -Original Message- From: Scott Brady [mailto:cf_talk;scottbrady.net] Sent: Tuesday, November 12, 2002 2:50 PM To: CF-Talk Subject: Re: Single quotes trouble... cfset cip_numb = cip =

OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Judith Dinowitz
And how many have you seen succeed? ColdFusion started as a 1.0. So did Flash. This product may succeed as well. What I'm trying to say is: It's fine to be cautious but why be so negative about it? Let's give Contribute a chance, test it out on non-production servers, see how it works. Maybe

RE: Single quotes trouble...

2002-11-12 Thread Raymond Camden
Ah- you are passing it to SQL? Can you show us all of your code? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the

cfdump - server variables

2002-11-12 Thread Stephen Hait
I have seen references to being able to use cfdump to see the contents of the server variables structure but when I try using it (CF5) I get an error. Is there an easy way to get a listing of all the server scope variables and their values? TIA, Stephen

RE: Single quotes trouble...

2002-11-12 Thread Wurst, Keith D.
Here is the code. This is all in a cfloop cfset county = 0 cfset cip_numb = cfloop query=get_cip_num cfif county eq 0 cfset cip_numb = cip = #get_cip_num.cip_number# cfelse cfset cip_numb = #cip_numb# or cip = #get_cip_num.cip_number# /cfif cfset

Re: cfscript book

2002-11-12 Thread Massimo, Tiziana e Federica
Tony Weeg [EMAIL PROTECTED] wrote in message news:002e01c28a80$f2816b10$ba0b0a0a;navtrak267... so, the question remains, is there one that really goes in depth with cfscript? Nothing that goes up to the level I would love to see :-( A few advanced books on CF MX still have to hit the shelves,

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Matt Liotta
People just hate to see any resources moved away from ColdFusion. Spectra might have made it past 1.0, but it never helped ColdFusion. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Judith Dinowitz

Re: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Pete Ruckelshaus
Heck, I think Contribute is a cool idea, my sister wants a site and I think I'm going to tell her to use it, that way all I have to do is create a single template and she can do the rest of the work :-) It would be nice if it was $50 rather than $100, but what can you do. Pete - Original

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Jesse Noller
How is the creation of a new product moving resources away from ColdFusion? -jesse -Original Message- From: Matt Liotta [mailto:mliotta;r337.com] Sent: Tuesday, November 12, 2002 3:05 PM To: CF-Talk Subject: RE: OT? Macromedia Contribute, is it Content Management or not? People

RE: cfscript book

2002-11-12 Thread Ben Forta
I hate to put it this bluntly, but there really is not that much to say about CFSCRIPT. And aside from UDFs (added in CF5 and surpassed by the tag interface in CFMX) and basic try/catch (added in CFMX but less powerful than the equivalent tags) CFSCRIPT has really not changed much since it was

Re: Single quotes trouble...

2002-11-12 Thread Rick Root
Your problem is that CFQUERY automatically takes any variable in a CFQUERY and escapes the single quotes, replacing them with two single quotes (not double quotes, btw). You might be able to get away with replacing this line in your query: (#cip_numb#) with this line:

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Matt Liotta
The logic goes something like... Macromedia has a fixed amount of resources to work on its products. If the number of products increases then naturally the amount of resources applied to a single product must go down. Of course Macromedia doesn't actually have a fixed amount of resources; they

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Dave Watts
How is the creation of a new product moving resources away from ColdFusion? If it's not, I'm glad to see that MM now has infinite resources. Woohoo! Seriously, anything that MM does comes out of the same bucket o'resources, so if you have a new product, that takes effort that you could spend

RE: Single quotes trouble...

2002-11-12 Thread Everett, Al
Er...that's the purpose of the PreserveSingleQuotes() function. The trouble with that is that if there is a single quote within the original variable, it too will not be escaped and will cause errors to be thrown. -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent:

RE: SOT: Sad Day

2002-11-12 Thread Andrew Tyrone
I don't understand why everyone jumps to the conclusion that MM is cutting back. Maybe Vernon left because he wanted to, who knows. As with the Contribute thread (I'm glad I made an OT sub-folder for cf-talk), people start assuming and making stuff up before they know the whole story! On that

RE: cfscript book

2002-11-12 Thread Tony Weeg
that makes sensethank you. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Ben Forta [mailto:ben;forta.com] Sent: Tuesday, November 12, 2002 3:11 PM To: CF-Talk Subject:

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Jesse Noller
/sigh I know Dave. I'm not claiming infinite resources. However, I don't think that becomes a valid critique-able point when examining and evaluating a product. I guess I took offense to the idea that we are any less dedicated, or are plying any fewer resources to ColdFusion because we came

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Mark Leder
I sure wish they'd fix some of the problems with existing products before going in another direction. Thanks, Mark -Original Message- From: Dave Watts [mailto:dwatts;figleaf.com] Sent: Tuesday, November 12, 2002 3:23 PM To: CF-Talk Subject: RE: OT? Macromedia Contribute, is it Content

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Matthew Fusfield
I think it would be great if MM came up with a way to use Contribute as a front-end to a ColdFusion application. Might sound like an odd idea, but it would be great if a CF app could somehow fire up Contribute on the client, let them do some HTML and image uploading, which then gets passed back

RE: webConference software

2002-11-12 Thread Lincoln Milner
Netopia has (or had) Timbuktu Pro which I was told was the Win/Mac cross-platform solution to NetMeeting. -Original Message- From: Terry [mailto:terry;epubmgmt.com] Sent: Monday, November 11, 2002 11:48 AM To: CF-Talk Subject: Re: webConference software Is there a macintosh version of

RE: SOT: Sad Day

2002-11-12 Thread Matt Liotta
No one needs to jump to conclusions; MM announces its cut backs. You might also have noticed that Raymond is for hire these days (see sig). Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Andrew Tyrone

RE: cfdump - server variables

2002-11-12 Thread Raymond Camden
You can only cfdump the Server scope in CFMX. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the Force, and a powerful

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Lee Fuller
I want to run Macromedia. That being said. I don't want to run Macromedia. ;) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: cfscript book

2002-11-12 Thread S . Isaac Dealey
What does Fusionscript have to do with cfscript? As near as I can tell there are no relation. I doubt you'll find a book dedicated to cfscript. I'd recommend my CF5 Beginner's book. The chapter on CFScript covers all you need to know, and you won't be able to beat the price with

RE: Single quotes trouble...

2002-11-12 Thread S . Isaac Dealey
No, it's not converting them to double quotes, it's escaping each single quote in the string -- the default for cfquery -- you have to use #PreserveSingleQuotes()# around your variable if you want to use a variable which contains a block of sql code containing quoted variables. I've tried that

RE: OT: Sad Day

2002-11-12 Thread Everett, Al
The only exercise some people get is jumping to conclusions and running off at the mouth. I don't understand why everyone jumps to the conclusion that MM is cutting back. Maybe Vernon left because he wanted to, who knows. As with the Contribute thread (I'm glad I made an OT sub-folder for

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread Matt Liotta
Yes, but Microsoft is the 800lb guerrilla with 50 billion in cash. Working on a video game is a drop in the bucket for them. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Jesse Noller

RE: SOT: Sad Day

2002-11-12 Thread Mike Chambers
that is correct. we are not cutting back. in fact, we will be dedicating more resources to the coldfusion community. mike chambers [EMAIL PROTECTED] -Original Message- From: Andrew Tyrone [mailto:atyrone;optonline.net] Sent: Tuesday, November 12, 2002 3:19 PM To: CF-Talk Subject:

Re: cfscript book

2002-11-12 Thread charlie griefer
Ben Forta writes: I hate to put it this bluntly, but there really is not that much to say about CFSCRIPT. And aside from UDFs (added in CF5 and surpassed by the tag interface in CFMX) and basic try/catch (added in CFMX but less powerful than the equivalent tags) CFSCRIPT has really not

RE: OT? Macromedia Contribute, is it Content Management or not?

2002-11-12 Thread cameronc
How is the creation of a new product moving resources away from ColdFusion? The creation of a new product alone doesn't indicate moving away. But when combined with other recent events: + 1 WYSIWYG centric editor (Contribute) - 1 Code Centric Editor (Studio) = Perceived shift away from CF

RE: cfdump - server variables

2002-11-12 Thread Stephen Hait
You can only cfdump the Server scope in CFMX. Thanks ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

Re: Single quotes trouble...

2002-11-12 Thread Rick Root
Everett, Al wrote: Er...that's the purpose of the PreserveSingleQuotes() function. Things I've never really had to use I always seem to forget about, but you're absolutely right. I ought to just shut the heck up! - Rick

Re: cfscript book

2002-11-12 Thread Michael Dinowitz
Email me off list with what you want added to this doc and you'll have your 10 minute reference. http://www.houseoffusion.com/docs/cfscript.htm I know I need to put in the UDF portion (separate file now) and update it to CFMX. What else would you like? Email me at [EMAIL PROTECTED] with the answer

OT: The Link is up on the NYCFUG Site for Tonight's Flashcom!

2002-11-12 Thread Judith Dinowitz
Hi. Just wanted to let you guys know that the link is now up on NYCFUG (the New York ColdFusion User Group) website (http://www.nycfug.org), and we are all set for our broadcast tonight with the Flash Communications Server. We welcome all who can attend -- either physically or virtually. The

Re: cfscript book

2002-11-12 Thread Marlon Moyer
Print out the link Michael D. gave you in a very very small font :) Make that $9.95 check out to Marlon Moyer charlie griefer wrote: *i'd* shell out $9.95 for the cfscript pocket reference :) charlie --- Ben -Original Message- From: Massimo, Tiziana e Federica

RE: cfscript book

2002-11-12 Thread Rob Rohan
Speaking of the cfdocs lacking, the next time cf has a quick reference - how about showing return values from a function? For example my CFML quick ref says: ArraySort(array, sort_type, [,sort_order]) helpful, but does it return a new sorted array or a yes/no? String ArraySort(array,

RE: cfdump - server variables

2002-11-12 Thread Raymond Camden
Just as an FYI, if you use a sub struct of Server, like Server.MyCoolApp, you _can_ dump that of course. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus

RE: SOT: Sad Day

2002-11-12 Thread Jeffry Houser
The fact that I have seen the same ( or similar ) words said a bunch of times on this list makes me suspicious of them. At 03:32 PM 11/12/2002 -0500, you wrote: that is correct. we are not cutting back. in fact, we will be dedicating more resources to the coldfusion community. mike chambers

RE: cfscript book

2002-11-12 Thread Tony Weeg
now I am asking all of these questions, is cfscript really that good to use? or could I go all day long using cftags and never see much performance difference ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: CFOBJECT and conversion from ASP

2002-11-12 Thread Adrocknaphobia Jones
Josh, Although SOAP and web services are great, it's not going to help you now. Nor would it be the best solution for your project. A basic run down of webservices vs. COM: CFMX has Java under the hood instead of C. This causes a lot of headaches when working with COM. COM is C based. C hates

RE: cfscript book

2002-11-12 Thread Larry Juncker
Very Nice Michael, I also have been looking for something like this. Larry Juncker Senior Cold fusion Developer Heartland Communications Group, Inc. [EMAIL PROTECTED] (515) 574-2122 CONFIDENTIALITY NOTICE The information contained in this e-mail is intended only for the use of the individual or

RE: SOT: Sad Day

2002-11-12 Thread Vernon Viehe
I'm not going to comment on the situation, other than to clarify that it wasn't my decision to leave the CFCM position. What I can tell you is that I really enjoyed working with the CF Community, and the comments I've seen on and off the lists have been very uplifting to me right now. You guys

Re: cfscript book

2002-11-12 Thread todd
LOL... :) On Tue, 12 Nov 2002, Marlon Moyer wrote: Print out the link Michael D. gave you in a very very small font :) Make that $9.95 check out to Marlon Moyer charlie griefer wrote: *i'd* shell out $9.95 for the cfscript pocket reference :) charlie --- Ben

RE: cfscript book

2002-11-12 Thread Raymond Camden
This isn't a bad idea. I added an enhancement request for it. (Which doesn't mean it will actually get done - but the doc peeps will consider it.) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED]

Re: RE: RE: CFOBJECT and conversion from ASP

2002-11-12 Thread ksuh
Creating and consuming web services using CFMX is quite easy - it's built in! You could actually use Axis in previous version of CF, which is actually what CFMX uses, IIRC. - Original Message - From: Rob Rohan [EMAIL PROTECTED] Date: Tuesday, November 12, 2002 12:36 pm Subject: RE: RE:

RE: SOT: Sad Day

2002-11-12 Thread Mike Chambers
yep. i completely understand that. As I indicated in my initial email we will be sending out some more info shortly on a new enhanced community manager position, at which time we will also be discussing (and soliciting input) some other steps we will be taking. mike chambers [EMAIL PROTECTED]

Re: cfscript book

2002-11-12 Thread charlie griefer
There is also this that I found: http://www.rapidcf.com/tools/reference.cfm disclaimer: i make no guarantees as to the quality and/or accuracy of the content above. i'm not associated with 'em...just a link that i thought might be handy for some. gonna go check out Michael's stuff more

RE: cfscript book

2002-11-12 Thread Rick Faircloth
Haven't heard of FusionScript before today, but it looks impressive. Please show me where the differences are, but it sure looks like FusionScript is a viable replacement in many ways for Flash Remoting without the need to purchase an expensive app, climb that extensive learning curve (espeically

Re: SOT: Sad Day

2002-11-12 Thread William Wheatley
Well when we ask what happened and nobody is gonna tell then you start to assume ;) - Original Message - From: Mike Chambers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 12, 2002 3:32 PM Subject: RE: SOT: Sad Day that is correct. we are not cutting back. in

Re: SOT: Sad Day

2002-11-12 Thread William Wheatley
:) LOL yea now what were you saying Andrew?? :) - Original Message - From: Vernon Viehe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 12, 2002 4:00 PM Subject: RE: SOT: Sad Day I'm not going to comment on the situation, other than to clarify that it wasn't my

RE: SOT: Sad Day

2002-11-12 Thread Tony Carcieri
No matter what the situation is Verne, one thing is for sure: its MM's loss. You (and Ray) are a TREMENDOUS asset to the community and I for one, think they made a huge mistake. I have been laid off twice and it truly sucks. Yea, it's nice to lounge around naked with beer and pretzels for

Re: cfscript book

2002-11-12 Thread Jeffry Houser
As a general note, this is the 'hand-out' from a presentation that Chris Graves ( of RapidCF ) gave at a Connecticut CFUG meeting. back when Connecticut still had CFUGs. The presentation was on, of course, CFScript. Chris knows his stuff, but last I heard he was off doing Java-oriented

cfscript performance (was cfscript book)

2002-11-12 Thread Fitch, Tyler
Tony, Pre CFMX using a block of cfscript to set some variables or perform most tasks would give you an increase in performance. Now with MX if you have a block of cfscript and set 10 variables compared to 10 cfset tags the only difference would be the white space between the cfset tags. HTH, t

RE: SOT: Sad Day

2002-11-12 Thread Adrocknaphobia Jones
Jeff, I'll back you up. MM has a long history of abandoning products. Everyone seems to act like CF is invincible, yet it was sold by Allaire a little over a year ago. The sad fact of the matter is that MS is more trustworthy than MM, when it comes to secure futures for its developers. I mean,

RE: SOT: Sad Day

2002-11-12 Thread Mike Chambers
i understand. as a general rule, we do not discuss the specifics of personnel changes. as i indicated in my previous email, we will be announcing a new community manager position very soon. mike chambers [EMAIL PROTECTED] -Original Message- From: William Wheatley

<    1   2   3   4   >