RE: machII(too much)

2003-09-02 Thread Jim Davis
A term I hear pretty often in QA circles is "violation of testing integrity". As in "when Tom ran the second load test replication kicked in and violated testing integrity". I also hear "screwed the pooch", "went south" and "wrenched the monkey". But that may be something only our folks say. ;^

RE: __Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread Matthew Walker
> variables.f() arguments.f - no conflict there... Although this is new to 6.1 isn't it? ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: htt

Re: ___Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread Matt Liotta
Consider the following CFC: a d If you call the test method, you will see that it executes fine, which indicat

Re: ___Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread Sean A Corfield
On Tuesday, Sep 2, 2003, at 20:33 US/Pacific, S. Isaac Dealey wrote: > You can call a function through the variables scope and it > be a private call? ... oh well... I need to work with it > some more... still... if variables scope is a private call, > this scope should also be private... variable

Re:___Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread S . Isaac Dealey
You can call a function through the variables scope and it be a private call? ... oh well... I need to work with it some more... still... if variables scope is a private call, this scope should also be private... > On Tuesday, Sep 2, 2003, at 15:51 US/Pacific, S. Isaac > Dealey wrote: >> It's un

Re: Object Design Mythologies

2003-09-02 Thread Sean A Corfield
On Tuesday, Sep 2, 2003, at 14:40 US/Pacific, Ian Skinner wrote: > How do I design/model/flow chart my CFC's/Objects/Functionality? The best way is really UML - which allows you to visually model your classes and their interactions. > What replaces the old fashioned Flow Chart of a procedurally

Re: __Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread Sean A Corfield
On Tuesday, Sep 2, 2003, at 15:51 US/Pacific, S. Isaac Dealey wrote: > It's unfortunate tho... because it prevents there being any > way to insulate methods against namespace conflicts between > method arguments and function names when private access is > specified... If you have an argument and a

RE: DWMX 2004 - Whats new for us?

2003-09-02 Thread Jim Davis
For me, I wouldn't at the moment just because I'm very happy where I am (CrystalTech). However BlueDragon has the definite potential to bring CF hosting prices down significantly (one of the complaints I here about CF) so I would really like to see it offered by a few hosts. As Vince pointed out

Re: Object Design Mythologies

2003-09-02 Thread Kwang Suh
Beginning Java Objects: http://www.amazon.com/exec/obidos/tg/detail/-/1590591461/qid=1062553862/sr=8-1/ref=sr_8_1/102-5760324-3872924?v=glance&s=books&n=507846 If you're looking for more info on OO design patterns in general, then you can try the classic Design Patterns: Elements of Reusable OO S

RE: Object Design Mythologies

2003-09-02 Thread Jim Davis
I've found one of the best introductions to be "Beginning Java Objects" by Wrox publishing. Although it uses Java for examples no Java knowledge is needed at all. The book follows a single example (a university class management system) throughout so it's easy to suck up the real information witho

RE: SW Costs, BlueDragon, etc. (was:DWMX 2004 - Whats new for us?)

2003-09-02 Thread Jim Davis
> -Original Message- > From: Vince Bonfanti [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 02, 2003 12:34 PM > To: CF-Talk > Subject: RE: SW Costs, BlueDragon, etc. (was:DWMX 2004 - Whats new for > us?) > > Jim Davis wrote: > > > > True. I'm not arguing against Blue Dragon but rathe

RE: shipping label query

2003-09-02 Thread Andy Ousterhout
I would use SQL to extract the order header and details (as part of an Order cfc/class/object that returns a query) then use a presentation layer .cfm to print the header then loop through the details, printing the individual items. Andy -Original Message- From: Mahmut Basaran [mailto:[EM

RE: Object Design Mythologies

2003-09-02 Thread Andy Ousterhout
I've found "Use Case Driven Object Modeling with UML" by Doug Rosenberg very useful in moving from a procedural approach to OO. Andy -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 4:41 PM To: CF-Talk Subject: Object Design Mythologies O

Cannot Uninstall ClusterCats

2003-09-02 Thread Joe Eugene
I installed ClusterCats a while ago and had to Uninstall it but for some reason, the uninstall didnt work properly and i tried to delete registry key..didnt work. Machine OS - Win2k SP3. ClusterCats Version : ClusterCats for CFMX Keep getting this error on server boot. " The HTTP Filter DLL E:\Pr

Re: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread S . Isaac Dealey
Sounds to me like a standard aggregated query... :-/ ... You can (or should be able to) do this in either the oracle query or a cf qoq query... select parent_answer, answer, count(answer) as people_answered from not_aggregated group by parent_answer, answer order by parent_answer, answ

Re: cfproperty default attribute is buggy

2003-09-02 Thread S . Isaac Dealey
> On Saturday, Aug 30, 2003, at 18:50 US/Pacific, S. Isaac > Dealey wrote: >> Well afaik cfproperty models (to some extent) the way >> properties are declared in other OO languages like Java >> -- > Nope, not really. Unless you are writing a Web Service and > using > cfproperty for additional vali

Re:__Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread S . Isaac Dealey
> On Saturday, Aug 30, 2003, at 22:16 US/Pacific, S. Isaac > Dealey wrote: >> >> >> > Invoking 'f()' via 'this' scope causes it to be treated as > an 'outside' > call (so you can't call private methods). You should use > 'variables.f()' (in CFMX6.1) or just 'f()' (in CFMX6.0). Yea, I noticed

Trying to see-CFCHART with ColdFusionMX

2003-09-02 Thread Julia Green
First of all, I have Windows98 and Flash Player 6, and an ISP that says it supports ColdFusion MX and cfchart. The code below successfully coverts into Flash code...which is below, but just a white page comes up with no bar chart. What am I doing wrong? Julia Green [EMAIL PROTECTED]

Trying to see-CFCHART with ColdFusionMX

2003-09-02 Thread Julia Green
First of all, I have Windows98 and Flash Player 6, and an ISP that says it supports ColdFusion MX and cfchart. The code below successfully coverts into Flash code...which is below, but just a white page comes up with no bar chart. What am I doing wrong? Julia Green [EMAIL PROTECTED]

RE: Object Design Mythologies

2003-09-02 Thread Mike Brunt
Ian, Hal Helms highly recommends an O'Reilley Book "Head First Java". In addition as you are interested froma CF perspective, I highly recommend you take a look at the Mach II framework. http://www.mach-ii.com/. There are sample apps there that will help you with using CFC's. Hth. Kind Regar

Pound signs in urlSessionFormat()

2003-09-02 Thread Nate
*** Your mail has been scanned, and no virus was found. *** I am working on an application where I will need to use the urlSessionFormat() function and have a question on using url variables inside this function. i.e. the follwing bit of code works but lo

Object Design Mythologies

2003-09-02 Thread Ian Skinner
Ok, I have about 20 years of experience in procedural design and programming. I now have my first real world application that looks ripe for using an object orientated CFC approach. But I don't really know where to begin. How do I design/model/flow chart my CFC's/Objects/Functionality? What repl

Re: Pound sign question SOLVED

2003-09-02 Thread E Creese
Thank you every one. - Original Message - From: "E Creese" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, September 02, 2003 3:51 PM Subject: Re: Pound sign question > ok, but I am then spitting out the menu type name dynamically after that. > - Original Messag

RE: shipping label query

2003-09-02 Thread Tyler Clendenin
If you have a one to many relationship between orders and orderdetails you can use the group attributes in cfoutput to group your display. Ex. (may have an error or two but this is the basic idea. your query here firstname lastname Address Etc 1 - prdID quantity options Tyler Clendenin GSL

shipping label query

2003-09-02 Thread Mahmut Basaran
I'm tryin to setup a sheet for printing shipping labels. Orders are stored in two tables as usual. [orders] (firstname, lastname, address etc) [orderdetails] (shopping cart contents - prdID, quantity, options etc) I tried to select the data from orderdetails with a subquery but it didn't work (c

RE: Efficient way to handle undefined variables

2003-09-02 Thread info
Yea, I'd either use cfparam ... or sometimes it can be easier to use structappend(struct,struct2,false) for this... isaac -- Original Message -- From: <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Sep 02, 2003 08:06 PM Subject: RE: Efficient way to handle undefined variab

Re: Pound sign question

2003-09-02 Thread E Creese
ok, but I am then spitting out the menu type name dynamically after that. - Original Message - From: "Mosh Teitelbaum" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, September 02, 2003 3:51 PM Subject: RE: Pound sign question > Eric: > > Use two pound signs as in: >

RE: Pound sign question

2003-09-02 Thread Raymond Camden
Just double the # sign === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL PROTECTED] Blog : www.cam

RE: Pound sign question

2003-09-02 Thread Mosh Teitelbaum
Eric: Use two pound signs as in: top Double pound signs within a CFOUTPUT means "output a single pound sign." -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: E Creese [mailt

Re: Pound sign question

2003-09-02 Thread Clint Tredway
Just use 2 # in the anchor and it will work fine. Clint E Creese wrote: >I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. >How can I do this. What I am trying to do is list a menu category across the top of >the page that will connect to the linked area fur

Re: Pound sign question

2003-09-02 Thread Jerry Johnson
Just include two in a row. ## The first acts to "escape" the second within a Cold Fusion statement. You will only get one out on the htm page. Jerry Johnson >>> [EMAIL PROTECTED] 09/02/03 04:36PM >>> I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. How can

Re: String functions in queryparams>>>

2003-09-02 Thread Jochem van Dieten
Tyler Silcox wrote: > Anyone else notice how string functions still flub up in queryparams when > using 6.1? Wiggity-wack y'all! Yes. Apparently targeting changed: http://www.houseoffusion.com/lists.cfm?link=m:4:24832:125075 I wonder when the next updater is. Something this old should by now be

Re: Pound sign question

2003-09-02 Thread Jim Campbell
You just use a double # sign to explicitly insert a # sign: fnord - Jim E Creese wrote: >I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. >How can I do this. What I am trying to do is list a menu category across the top of >the page that will connect to t

RE: Pound sign question

2003-09-02 Thread Bryan F. Hogan
double up the # dd -Original Message- From: E Creese [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 4:36 PM To: CF-Talk Subject: Pound sign question I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. How can I do this. What I am trying to d

Re: String functions in queryparams>>>

2003-09-02 Thread Jochem van Dieten
Dave Watts wrote: >>Anyone else notice how string functions still flub up in >>queryparams when using 6.1? Wiggity-wack y'all! > > Can you give an example? Run the following template. All the outputs should be the same, but they are not. SELECT '#string#' AS test [#test#] SELECT '#tri

Pound sign question

2003-09-02 Thread E Creese
I need to display a # sign in my anchor tag. The anchor tag is inside a CFOUTPUT tag. How can I do this. What I am trying to do is list a menu category across the top of the page that will connect to the linked area further down in the page. Need to put a back to the top link in as well. Eric

Efficient way to handle undefined variables

2003-09-02 Thread Mauricio Giraldo
>I'm a bit confused about how you're building your variable names, as well. I dunno. I'm just trying to understand Rich Z's issue altogether. : ) ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://w

Re: Another CFCHART problem...

2003-09-02 Thread Andrew Golden
Disregard last post...Noticed that for someodd reason dreamweaver was being a buggy piece of crap and saving the file with the cfchart code at the bottom of the block. Fun. And Weird. Deleting the file and pasting the code into a new page with the same name solved the problem. Andrew Golden

RE: String functions in queryparams>>>

2003-09-02 Thread Dave Watts
> Anyone else notice how string functions still flub up in > queryparams when using 6.1? Wiggity-wack y'all! Can you give an example? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Another CFCHART problem...

2003-09-02 Thread Andrew Golden
I am having problems with the placement of the charts generated by CFCHART. No matter where in my code I call the tag, the chart displays at the bottom of the page. Here is the code I am calling along with the HTML source returned. Is this normal? Do I need to just call it inside of a layer or

RE: String functions in queryparams>>>

2003-09-02 Thread Raymond Camden
Yep, known bug. Best to use two lines... foo = === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [E

String functions in queryparams>>>

2003-09-02 Thread Tyler Silcox
Anyone else notice how string functions still flub up in queryparams when using 6.1? Wiggity-wack y'all! Tyler ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?lin

RE: Efficient way to handle undefined variables

2003-09-02 Thread Dave Watts
> so... for the example in question (xml optional info) you > would go something like this pseudocode? : > > > > > > then you could safely use those variables in ? You could, but why not just test for the existence of each variable in your CFIF? I'm a bit confused about how you're buil

Efficient way to handle undefined variables

2003-09-02 Thread Mauricio Giraldo
>Yes, you can so... for the example in question (xml optional info) you would go something like this pseudocode? : then you could safely use those variables in ? - mga ~| Archives: http://www.houseoffusion.com/lists.cfm?

Zipcode lookup Which query?

2003-09-02 Thread Phillip B
I have a stored procedure that someone wrote for me. This is the core of the sql from it SELECT TOP 10 dbo.dealers_geo.*, SQRT(SQUARE(69.1 * (lat - @lat)) + SQUARE(69.1 * (long - @long) * COS (@lat / 57.3))) AS DistanceMiles FROM dbo.dealers_geo ORDER BY DistanceMiles I found a site that show

RE: MX PATH_INFO ? HELP ?

2003-09-02 Thread Tom Jordahl
I believe there was a bug fixed so path_info does not contain the name of the template being executed, just the "path information" that follows the page being executed, which is what it is for. I believe this is the "correct" value. The correct values for the CGI variables are highly server dep

RE: Efficient way to handle undefined variables

2003-09-02 Thread d.a.collie
Yes, you can -Original Message- From: J E VanOver [mailto:[EMAIL PROTECTED] Sent: 02 September 2003 20:01 To: CF-Talk Subject: RE: Efficient way to handle undefined variables I don't see why not. The variable name passed to "mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 11

RE: MapPoint Web Services

2003-09-02 Thread Tony Weeg
makes sense. tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 2:56 PM To: CF-Talk Subject: RE: MapPoint Web Servic

RE: Efficient way to handle undefined variables

2003-09-02 Thread J E VanOver
I don't see why not. The variable name passed to "mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 11:47 AM To: CF-Talk Subject: Efficient way to handle undefined variables sorry for the double post... clocked post by error >That's what http://www.houseoffusion.com/lists.cfm?link=t:4

RE: MapPoint Web Services

2003-09-02 Thread Dave Watts
> tom, 1 year, 180 days? what kinda time frame? ballpark, I > know, you cant give that to me...at least can you verify > next patch maybe? Instead of waiting, you should be able to create your own local WSDL file for each service, and use that instead. Dave Watts, CTO, Fig Leaf Software http://

RE: MapPoint Web Services

2003-09-02 Thread Tony Weeg
tom, 1 year, 180 days? what kinda time frame? ballpark, I know, you cant give that to me...at least can you verify next patch maybe? tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Tom

RE: MapPoint Web Services

2003-09-02 Thread Tony Weeg
ryan let me know if/when you find out any info on this...it applies to our company, and would be a cool thing to investigate for us... thanks! tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message-

Efficient way to handle undefined variables

2003-09-02 Thread Mauricio Giraldo
sorry for the double post... clocked post by error >That's what http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 This list and all House of Fusion resources

RE: MapPoint Web Services

2003-09-02 Thread Tom Jordahl
You will need to separate the different portTypes out of the WSDL file as there is no current way to specify which of the 4 (I think) services/interfaces that are combined in to the single WSDL file. ColdFusion will just (pseudo-randomly) pick one. We realize this is a problem and it's on our l

Efficient way to handle undefined variables

2003-09-02 Thread Mauricio Giraldo
>That's what >-Original Message- >From: Rich Z [mailto:[EMAIL PROTECTED] >Sent: Friday, August 29, 2003 3:54 PM >To: CF-Talk >Subject: Efficient way to handle undefined variables > > >What is the best/most efficient way to handle a scenario where you're >populating variables from other var

FW: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread d.a.collie
Just for info... went with this testing now and fingers crossed... any effiecency tips would be welcomed.. function udfGetDistinctParentAnswers(qParents) { var returnList = ""; var theAnswer = ""; var theList = ""; var a

RE: HTML to PDF?

2003-09-02 Thread Joshua Miller
HTML2PDF is a good utility, I use it to generate PDF files that I store on the server for later retrieval. It's in the Exchange. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-0801 ext. 254 ***

MapPoint Web Services

2003-09-02 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, Has anyone successfully used Microsoft's MapPoint web services through Cold Fusion? Anyone have any examples of doing this? Ryan Hagan ph: 540-731-3588 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Sub

RE: What's the general approach for using RSS feeds in pages?

2003-09-02 Thread John Wilker
Ditto! I was in the same boat. RSS sounded like a learning project for "another day" but I just grabbed the yahoo one for our site. Like yours mine is pretty rough but cleaning up is easy to do. Thanks everyone who posted their information! Great stuff! -Original Message- From: Mike Kear [

RE: Load Testing Tools

2003-09-02 Thread Philipp Cielen
OpenSTA is dead - or at least their website is, obviously due to patent violations. best, philipp -- cielen.com ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm

RE: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread d.a.collie
Hi Mike cheers, but not sure your method will work for me, comments as below >> I assume you are already looping over the results? So you could build a list of distinct values, within this loop, record >> at a time. >> i.e. treat parent_answer as a list, for each item in this list do a Lis

RE: Load Testing Tools

2003-09-02 Thread Mike Brunt
Ian, this is a reasonable tool that you can evaluate first and it is not that expensive to buy. http://www.paessler.com/index_eng.html Hth. Kind Regards - Mike Brunt Original Message --- Can anybody recommend a relatively simple and hopefully inexpensive load testing tool t

Filter file type upload

2003-09-02 Thread Mauricio Giraldo
>Hmmm. Good question. No clue as to the answer (althought I suspect >it's the len of all submitted form fields), but you should be able to >test the theory rather easily. Verified. CGI.CONTENT_LENGTH = the sum of all info submitted including text fields, hidden fields and file fields. >You can

cfcontent problems

2003-09-02 Thread Watson, Nicholas
I have a library of files on my web site. All files are stored in a Microsoft SQL Server 2000 database. We are using the cfx_getimage custom tag to retrieve files from the database and then cfcontent to display the files. My problem is that we are getting a ton of socket write errors when the get

RE: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread Michael Traher
I assume you are already looping over the results? So you could build a list of distinct values, within this loop, record at a time. i.e. treat parent_answer as a list, for each item in this list do a ListFind comparing to your distinct value list. (will be empty to start with) If you find the va

Re: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread d.a.collie
Version 2 of the UDF... this is actually doing what I want to do... scratch the last one :-) QueryName is 'answerWithParents' >RESPONSE_IDANSWER PARENT_ANSWER >1 HateBluetit, Sparrow >2 Love

Re: HTML to PDF?

2003-09-02 Thread Pablo Varando
Tutorial: http://tutorial135.easycfm.com/ Pablo - Original Message - From: "Chris Alvarado" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, September 02, 2003 10:39 AM Subject: HTML to PDF? > Hello all, > > I have a project that requires the conversion of HTML files

Multipage forms. WAS: Mutiple SQL Inserts

2003-09-02 Thread Matt Robertson
Isaac said, >The problem with multiple form pages is that they tend to >piss users off... they want everything on one page This is *so* very true I just had to jump in. I had a client with large forms and lots of traffic (insurance quotes and applications). All but a very few of the competition

Re: What's the general approach for using RSS feeds in pages?

2003-09-02 Thread info
In case you hadn't already seen it, I've aggregated some of the information I found about rss on my blog at http://www.turnkey.to/ontap/docs/blog.cfm ... check the archive of last month and search the page for rss I think there were 3 separate entries about it... I'm no expert, but I tried to in

RE: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread d.a.collie
Hi Isaac, Thanks for getting back to me It's the distinct values in the PARENT_ANSWER that I need to return. I am then looking to loop over these distinct PARENT_ANSWER's and see how many people had said, HATE for Sparrow's, LOVE for Sparrow's, DON'T CARE for Sparrow's and so on Using

RE: Efficient way to handle undefined variables

2003-09-02 Thread Tech Info
That's what mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 3:54 PM To: CF-Talk Subject: Efficient way to handle undefined variables What is the best/most efficient way to handle a scenario where you're populating variables from other variables that may or may not exist. If they don't exis

RE: BlueDragon - RedHat 9

2003-09-02 Thread Vince Bonfanti
Yes, BlueDragon 3.0.2 is supported on Red Hat 9 (though I'm not sure if the web site has been updated to reflect this). Of course, when it's released BlueDragon 3.1 will also run on Red Hat 9. BlueDragon 3.1 will support Apache 2.0, as well as the older Apache 1.3.x releases. Vince Bonfanti New A

RE: What's the general approach for using RSS feeds in pages?

2003-09-02 Thread Mike Kear
This CFDJ article is a good'un. I read it, and it took me 10 minutes to get my first RSS feed on a site. Looking rough, but the only work left to do is CSS and making the feed look pretty. Nice one. I've avoided RSS up to now, thinking it's going ot take more time to learn than I have available

Re: SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread info
outside of using distinct in the oracle query just this: select distinct answer from myotherquery where parent_answer = '#myparentanswer#' hth isaac -- Original Message -- From: <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Sep 02, 2003 05:35 PM Subject: Re: SQL or CF C

Re: BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Matt Liotta
In one of Forta's blog entries (http://www.forta.com/blog/index.cfm?mode=e&entry=855) he mentions that shared hosting companies could provide an instance of CFMX for each customer avoiding many of the problems associated with shared hosting. He goes on to state in a comment that each instance o

Re: cfproperty default attribute is buggy

2003-09-02 Thread Sean A Corfield
On Saturday, Aug 30, 2003, at 18:50 US/Pacific, S. Isaac Dealey wrote: > Well afaik cfproperty models (to some extent) the way > properties are declared in other OO languages like Java -- Nope, not really. Unless you are writing a Web Service and using cfproperty for additional validation of retu

Re: _Re:_cfcomponent_cffunction_access="private"_--_what_the_!!??

2003-09-02 Thread Sean A Corfield
On Saturday, Aug 30, 2003, at 22:16 US/Pacific, S. Isaac Dealey wrote: > > > Invoking 'f()' via 'this' scope causes it to be treated as an 'outside' call (so you can't call private methods). You should use 'variables.f()' (in CFMX6.1) or just 'f()' (in CFMX6.0). Sean A Corfield -- http://w

Re: machII(too much)

2003-09-02 Thread Sean A Corfield
On Tuesday, Sep 2, 2003, at 06:44 US/Pacific, Adrian Lynch wrote: > "But then it dawned on me that maybe the debug output was causing the > higher > times." > > Does anyone know the name of this effect. Where you change the > environment > you are measuring? I'm sure is has a name. Lee Pritchard

RE: BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Vince Bonfanti
Yes, we've chosen to delay those announcements, and the releases of BlueDragon 3.1 and BlueDragon.NET (both of which were originally planned for this summer) for reasons that will become clear very soon (it's a good thing). Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com

RE: BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Yves Arsenault
I knew I hadn't dreamed up the whole thing... :-) - Yves - -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED] Sent: September 2, 2003 1:38 PM To: CF-Talk Subject: RE: BD hosting (was Re: DWMX 2004 - Whats new for us?) Yes, we're working with several hosting companies to

RE: BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Yves Arsenault
I thought that earlier this summer hosting partners were to be announced, but I do not remember seeing anything about them I believe I heard that on the BD list some time ago. Yves Arsenault Carrefour Infotech 5, Acadian Dr. Charlottetown, PEI C1C 1M2 [EMAIL PROTECTED] (902)368-1895 ext.242 I

RE: BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Vince Bonfanti
Yes, we're working with several hosting companies to offer BlueDragon support. Yes, they'll be able to use the free version of BlueDragon to offer dramatically lower costs to their customers. Stay tuned... Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com > -Original Me

RE: SW Costs, BlueDragon, etc. (was:DWMX 2004 - Whats new for us?)

2003-09-02 Thread Vince Bonfanti
Jim Davis wrote: > > True. I'm not arguing against Blue Dragon but rather the > concept that software costs (at this level) are major > considerations. Too many times I've heard "we can't afford > CF" only to watch a company spends thousands more pursuing an > untried "free" solution. > Ji

SQL or CF Code help with extracting distinct values from a list

2003-09-02 Thread d.a.collie
Hi there, Trying to think of the best way to do this and I know the only way I can think of it will cause the web server to fall over due to the amount of data. Problem. Got a query returning something like this RESPONSE_ID ANSWER PARENT_ANSWER 1

RE: SUBMIT button

2003-09-02 Thread Robert Orlini
Thanks all! This has been helpful. Robert O. -Original Message- From: Michael Wilson [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 11:31 AM To: CF-Talk Subject: RE: SUBMIT button Hi, You need to refer to the button as "form.delete.x" rather than just "form.delete". For ex

Load Testing Tools

2003-09-02 Thread Brandon Purcell
Here are a few that may be helpful http://www.bpurcell.org/macromedia/loadtesting.cfm If you want something simple and inexpensive. Try Microsoft Web Application Stress tool. OpenSTA is a little more robust but a little more difficult to work with. - Brandon Purcell http://www.bpurce

BD hosting (was Re: DWMX 2004 - Whats new for us?)

2003-09-02 Thread Matt Liotta
I am not aware of anyone who is offering shared BlueDragon hosting at this point. You may want to contact New Atlanta directly in that regard. However, I am sure that many hosting companies would step up to the plate if the need exists. I wonder if the free version of BlueDragon could be used b

RE: Load Testing Tools

2003-09-02 Thread Benoit Hediard
Paessler has some nice tools : pretty cheap, great functionalities and very easy to use. Webserver Stress Tool : http://www.paessler.com/webstress You can download a trial version. Benoit Hediard www.benorama.com PS : IP Check Server monitor is also great (http://www.paessler.com/ipcheck) --

RE: SUBMIT button

2003-09-02 Thread Mosh Teitelbaum
No problem 8^). -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: Critz [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 02, 2003 11:53 AM > To: CF-Talk > Subject: Re: SUBMIT button >

Re: HTML to PDF?

2003-09-02 Thread Randell B Adkins
Use the CF_HTML2PDF3 will do just that. You can set it to convert any dynamic/static HTML file or even a CFM file to PDF. You specify where you want the file stored. Store it on the server to be used at anytime you want. I keep the files active for 24 hours then deletes them. This way it does not

Re: SUBMIT button

2003-09-02 Thread Critz
oi Mosh!! ah missed the dead center bit. my bad -- Tuesday, September 2, 2003, 11:42:16 AM, you wrote: MT> Isn't that what I said? MT> -- MT> Mosh Teitelbaum MT> evoch, LLC MT> Tel: (301) 942-5378 MT> Fax: (301) 933-3651 MT> Email: [EMAIL PROTECTED]

Re: What's the general approach for using RSS feeds in pages?

2003-09-02 Thread Critz
oi Jeff!! i sent you email with a link off list. might assist you. Crit -- Tuesday, September 2, 2003, 11:33:53 AM, you wrote: J> on 9/2/03 11:19 AM, Jochem van Dieten at [EMAIL PROTECTED] wrote: >> Jeff wrote: >>> I'm new to the whole thing, but isn't

Load Testing Tools

2003-09-02 Thread Ian Skinner
Can anybody recommend a relatively simple and hopefully inexpensive load testing tool that could be used to check a new CF built site. Preferably something that we can try before buying. Thanks. -- Ian Skinner Web Programmer BloodSource Sacramento, CA ~~~

RE: Flash Professional vs. Royale

2003-09-02 Thread Samuel Neff
You may lose some components if you just upgrade to Flash MX 2004 (not pro) that you had with Flash MX (or Flash MX + DRK). TreeView, DataGrid, Calendar, and Accordian are Pro only (as well as some brand new components like Menu). That's the only thing I can think of, everything else is new.. (sc

Re: HTML to PDF?

2003-09-02 Thread Critz
oi Chris!! you can use activePDF, i know it creates the files on the server ctz -- Tuesday, September 2, 2003, 11:39:39 AM, you wrote: CA> Hello all, CA> I have a project that requires the conversion of HTML files to PDF. I CA> see a couple on the

Re: Flash Professional vs. Royale

2003-09-02 Thread Kevin Graeme
Sean, Do you know if anything that is currently in Flash MX is not in the basic Flash MX 2004 and only in Pro, or is Pro all new features? -Kevin - Original Message - From: "Sean A Corfield" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, August 30, 2003 11:50 AM

Re: What's the general approach for using RSS feeds in pages?

2003-09-02 Thread Jeff
on 9/2/03 11:19 AM, Jillian Carroll at [EMAIL PROTECTED] wrote: > Jeff, > > This article should help you, it was recently featured in the ColdFusion > Developers Journal: http://www.sys-con.com/coldfusion/article.cfm?id=635 > > It deals with Parsing RSS Feeds Using ColdFusion, and it's very well

Re: CF usage growing or shrinking? (was DWMX 2004 - Whats new for us? )

2003-09-02 Thread Thomas Chiverton
On Tuesday 02 Sep 2003 16:28 pm, John Wilker wrote: > I'm sure PHP > is growing in the enterprise but I think it still has a while before it > overtakes CF in mid/large company's and especially intranets, where I also Not if they keep breaking random bits of the code with their point releases it

RE: SUBMIT button

2003-09-02 Thread Mosh Teitelbaum
Isn't that what I said? -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: Critz [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 02, 2003 11:20 AM > To: CF-Talk > Subject: Re: SUBMIT

RE: HTML to PDF?

2003-09-02 Thread Matthew Fusfield
Give cf_html2pdf3 a shot (do a quick Google search for it) Works very well at converting both dynamic and static HTML to PDF files. Matt -Original Message- From: Chris Alvarado [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 02, 2003 11:40 AM To: CF-Talk Subject: HTML to PDF? Hello

  1   2   >