hiding an image path

2006-07-20 Thread Dave Lyons
I need to hide the actual path to an image so the users cant see what folder 
the images are in. I was talking with Jared about it and he suggested to use 
cfcontent but when I do that the only thing that shows up is the image and not 
the rest of the page. Btw~ it won't just be for 1 image it will be for a loop 
of a hundred or so images.

Im gunna rack my brain but seeing if any of you have any ideas and I don't 
gotta re-invent the wheel.

thanks

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247258
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Low-tech asychronous call to ColdFusion

2006-07-20 Thread Brandon Harper
On 7/20/06, dcooper @ macromedia. com dcooper @ macromedia. com
<[EMAIL PROTECTED]> wrote:
> FYI, just doing some testing on these tags (cfthread and cfjoin) and I hope 
> to have them posted on my blog today or tomorow.  They'l require CF7, but 
> Standard Edition is fine (Enterprise not required).
>

Awesome Damon-- this is something I've needed/wanted for quite some
time.  The applications I work with depend on multiple calls to slow,
3rd party resources.  Being able to thread these calls and have their
results returned (without depending on shared scopes) is going to make
my life a whole lot better as a developer.  Looking forward to it!

- Brandon

-- 
http://devnulled.com

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247257
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Eric Roberts
It depends on you location.  Check the Adobe site for training locations and
contact them.  Most of the companies that do training also do on-site
training.

Eric 

-Original Message-
From: Alan Dunn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 20 July 2006 13:43
To: CF-Talk
Subject: RE: ColdFusion Training Seminars

I think I could have the company swing for an on site training, anyone have
a line on who does that?



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 20, 2006 12:13 PM
To: CF-Talk
Subject: RE: ColdFusion Training Seminars

> Thinking about taking one of the fast track training courses in 
> coldfusion --  the 3 day courses...
> 
> Has anyone taken any of these?  Just wondering if they're worth the 
> time, and what anyones experiences with these sort of classes are.

I would recommend that you take a look at the course outline, and see if
you're familiar with most or all of the stuff on it. If so, you probably
should save your money, and perhaps take the advanced course later.

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

Fig Leaf Software provides the highest caliber vendor-authorized instruction
at our training centers in Washington DC, Atlanta, Chicago, Baltimore,
Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247256
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Eric Roberts
That is what got me started 8 years ago...I think the classes are very
helpful and will get you up to speed with CF.

Eric 

-Original Message-
From: Alan Dunn [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 20 July 2006 10:04
To: CF-Talk
Subject: ColdFusion Training Seminars

Thinking about taking one of the fast track training courses in coldfusion
--  the 3 day courses...

Has anyone taken any of these?  Just wondering if they're worth the time,
and what anyones experiences with these sort of classes are.  
 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247255
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Nested output...three levels

2006-07-20 Thread rhymes with 'loud'
>This seems SOOO easy, and I'm about to kill myself.
>
The answer Kris gave is exactly right. 

Your first cfoutput told cf to output unique values of the first field. The 
second cfoutput told cf to output unique values of the second field. But a 
third cfoutput is required without a group attribute in order to output all of 
the child records of the second group.

I wrote a rather lengthy (but detailed) blog post about this very subject if 
you're interested in chewing on it; it may clear up some of the mud or even 
open some people's eyes to leveraging one of cfoutput's lesser used attributes.

http://www.dougboude.com/blog/1/2006/07/IF-THE-SOLUTION-IS-NOT-BEAUTIFUL-THEN-IT-IS-WRONG--STYLE-ELEGANCE-AND-EFFICIENCY-IN-CODE.cfm

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247254
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFCUnit cons and pros

2006-07-20 Thread Jon Gunnip
One major benefit of unit testing is that you can test your Model
before having a functional GUI in place.  This lets you isolate
problems in the Model to the Model rather than tracing them through
the View and Controller as well.

I really see the benefits of CFCUnit and unit testing in general in
the maintenance phase of an application.  As I am making changes, I
rerun the tests to see what I broke.  It saves a lot of time that
would otherwise be spent stepping through the GUI.  Thus, all other
things being equal, the more maintenance you plan to do on an app
(e.g. significantly adding features or generally making changes), the
more you will see the benefit of tools like CFCUnit.

As a word of caution, I've found it can take a lot of thought to
successfully design unit tests, especially when the relationships
between your CFC's are complex and there are database interactions
involved.  I often hear unit testing brought up as "something you
should do" but no mention that it can be quite challenging to do well.

Jon

On 7/20/06, Aaron Rouse <[EMAIL PROTECTED]> wrote:
> I think it can be really dependent on how your CFCs are coded and used
> as to what the pros and cons are.  I have used CFCUnit on some
> projects that the huge pro was that it saved an enormous amount of
> time then on other projects it would have taken more time to use it
> over just putting the CFCs to some "manual" testing.
>
> On 7/20/06, Asim Manzur <[EMAIL PROTECTED]> wrote:
> > I am actually working to prepare the presentation for my organization and
> > mention what are the cons and pros using CFCUnit vs doing the manual unit
> > testing.
> >
> > google didn't give me any good article/summary result.
> >
> > Can someone help me about this.
> >
> > --
> > Regards,
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247253
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Video

2006-07-20 Thread Jeff Small
Five minutes isn't really that long. What you don't want to do is attempt to
use anything much longer than that as a "Progressive Download". I was asking
about the length just to make sure for instance, you weren't trying to throw
up a 45 minute video or something. I'd hate for you to be disappointed. You
can run into problems with video that's longer than about 5 minutes if
you're not streaming it with things like audio drift, etc.

The original's quality would be "measured" in terms of things like, "how
many frames per second?" (you'd want something close to 29.97 fps) and "what
are the physical size of the frames?" (NTSC video is 720 pixels by 480, and
PAL video is 720 by 576) and what is the audio encoded at? (Sample Rate, Bit
Depth, etc). So a high quality original would be around 29.97 fps, 720x480,
CD quality audio...

It simply helps Flash and any of the other video encoders if you start with
the highest quality source video. If the video's been encoded already in
something like mpeg, or wmv, then you'll run into quality issues there as
well, as the encoder actually has to *decode* something before it can encode
it, and most of those are very lossy encodings, especially things like mpeg.

If you've got a high quality original, and it's at about 5 minutes or under,
you should be fine converting it to flash video and simply serving it as a
progressive download.

My two cents.

-Original Message-
From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 5:11 PM
To: CF-Talk
Subject: RE: Video

Hi Jeff, 

I'm on new ground here, the duration is just over 5 mins.  What stats do you
need to know on quality, or can you give me some guidance, please?


Jenny

-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED]
Sent: 20 July 2006 21:06
To: CF-Talk
Subject: Re: Video


The size doesn't really mean anything to me. What I'd be most interested in
is, "what is the duration and quality of the original?"

Those are going to play a bigger role than the actual size of the original
file. 


--
Jeff Small
LHWH Advertising
Myrtle Beach, SC 29577
843-448-1123 Ext 254
  - Original Message - 
  From: Jenny Gavin-Wear 
  To: CF-Talk 
  Sent: Thursday, July 20, 2006 3:59 PM
  Subject: RE: Video


  Thanks for all the replies, I'm getting the gist of it.

  I have a 192mb .VOB file to convert to flash then.

  Anyone know if this still going to be so large when converted to flash?  

  I'm wary of this thing being a bandwidth hogger.

  Also, if anyone knows of a good .vob to flash converter it would be great.

  Thanks again,

  Jenny



  -- 
  No virus found in this outgoing message.
  Checked by AVG Free Edition.
  Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
   

  





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247252
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


adding to URL variables

2006-07-20 Thread Alan Dunn
I need to add to a URL string which is:

SearchResults.cfm?CategoryName=Agriculture&GrantDesc=home&Submit=Search

The find n' next link on the searchresults.cfm page is 


How would you do that?  




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247251
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Site feedback

2006-07-20 Thread Neil Middleton
Funny you should mention that;-)

On 7/20/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
>
> Hey Neil,
>
> One thing that would be nice for bloggers that you aggregate is a report
> page, similar to mxna.  It doesn't need to be as fancy as their's, but
> it would be nice to see all my blog posts on one page, and the amount of
> clicks for each.
>
> > -Original Message-
> > From: Neil Middleton [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 3:47 PM
> > To: CF-Talk
> > Subject: Site feedback
> >
> > Hi guys,
> >
> > As you probably know I am the one responsible for the mess of
> > CF known as
> > feed-squirrel.com.  At the moment I am looking to do a bit of a revamp
> > (mainly backend, including a move to model-glue:unity).
> > However, I need
> > some help with what you guys think of what is there already
> > (or even what
> > isn't).
> >
> > If you have any opinions or ideas, please let me know.  You
> > never know, you
> > might find it useful one day ;-)
>
> This transmission may contain information that is privileged, confidential
> and/or exempt from disclosure under applicable law. If you are not the
> intended recipient, you are hereby notified that any disclosure, copying,
> distribution, or use of the information contained herein (including any
> reliance thereon) is STRICTLY PROHIBITED. If you received this transmission
> in error, please immediately contact the sender and destroy the material in
> its entirety, whether in electronic or hard copy format. Thank you. A1.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247250
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Site feedback

2006-07-20 Thread Munson, Jacob
Hey Neil,

One thing that would be nice for bloggers that you aggregate is a report
page, similar to mxna.  It doesn't need to be as fancy as their's, but
it would be nice to see all my blog posts on one page, and the amount of
clicks for each.

> -Original Message-
> From: Neil Middleton [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, July 20, 2006 3:47 PM
> To: CF-Talk
> Subject: Site feedback
> 
> Hi guys,
> 
> As you probably know I am the one responsible for the mess of 
> CF known as
> feed-squirrel.com.  At the moment I am looking to do a bit of a revamp
> (mainly backend, including a move to model-glue:unity).  
> However, I need
> some help with what you guys think of what is there already 
> (or even what
> isn't).
> 
> If you have any opinions or ideas, please let me know.  You 
> never know, you
> might find it useful one day ;-)

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247249
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Site feedback

2006-07-20 Thread Neil Middleton
Hi guys,

As you probably know I am the one responsible for the mess of CF known as
feed-squirrel.com.  At the moment I am looking to do a bit of a revamp
(mainly backend, including a move to model-glue:unity).  However, I need
some help with what you guys think of what is there already (or even what
isn't).

If you have any opinions or ideas, please let me know.  You never know, you
might find it useful one day ;-)

-- 
Neil Middleton

Visit feed-squirrel.com


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247248
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Jenny Gavin-Wear
Hi Jeff, 

I'm on new ground here, the duration is just over 5 mins.  What stats do you 
need to know on quality, or can you give me some guidance, please?


Jenny

-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED]
Sent: 20 July 2006 21:06
To: CF-Talk
Subject: Re: Video


The size doesn't really mean anything to me. What I'd be most interested in is, 
"what is the duration and quality of the original?"

Those are going to play a bigger role than the actual size of the original 
file. 


--
Jeff Small
LHWH Advertising
Myrtle Beach, SC 29577
843-448-1123 Ext 254
  - Original Message - 
  From: Jenny Gavin-Wear 
  To: CF-Talk 
  Sent: Thursday, July 20, 2006 3:59 PM
  Subject: RE: Video


  Thanks for all the replies, I'm getting the gist of it.

  I have a 192mb .VOB file to convert to flash then.

  Anyone know if this still going to be so large when converted to flash?  

  I'm wary of this thing being a bandwidth hogger.

  Also, if anyone knows of a good .vob to flash converter it would be great.

  Thanks again,

  Jenny



  -- 
  No virus found in this outgoing message.
  Checked by AVG Free Edition.
  Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
   

  



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247247
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSS Class Registration - New York City!

2006-07-20 Thread Ian Skinner
I could be your eyes and legs for sure.  And I'm sure we could drum up 
interested persons through the local user group.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247246
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS Class Registration - New York City!

2006-07-20 Thread Sandra Clark
If you want to help me get one together for next year Ian, I'll be pleased
to do one.  I basically need a place to hold it and enough people to make it
worth while to come out.  If you want to work with me on this, lets do it! 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility 

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1


-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 4:38 PM
To: CF-Talk
Subject: RE: CSS Class Registration - New York City!

Registration is now open for my 4 day, Hands On CSS Class October 10-13,
2006 in New York, NY (midtown). Currently there are only 11 seats open, so
register soon to be guaranteed a place.


I'm still hoping that someday you will have a class somewhere around
Northern California! San Francisco, Sacramento or Reno to name a few such
locations. :-)


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any attachments is for the
sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender and delete any
copies of this message. 






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247245
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSS Class Registration - New York City!

2006-07-20 Thread Ian Skinner
Registration is now open for my 4 day, Hands On CSS Class October 10-13, 2006 
in New York, NY (midtown). Currently there are only 11 seats open, so register 
soon to be guaranteed a place.


I'm still hoping that someday you will have a class somewhere around Northern 
California! San Francisco, Sacramento or Reno to name a few such locations. :-)


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247244
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CSS Class Registration - New York City!

2006-07-20 Thread Sandra Clark
Registration is now open for my 4 day, Hands On CSS Class October 10-13,
2006 in New York, NY (midtown). Currently there are only 11 seats open, so
register soon to be guaranteed a place.

The Hands on Cascading Style Sheets class is an intensive 4 day workshop
that is aimed at both the beginner and advanced CSS user. For beginners, the
class starts with the basics such as HTML and CSS values and works up to
positioning and table less layouts. Advanced CSS users, will find plenty to
interest them in the first few days as I take them through the proper use of
CSS selectors, quirks vs. standards mode and a through grounding in web
typography. From there, they learn about the box model, which leads them
into positioning and layouts.

Check out the syllabus at http://tinyurl.com/fsv3v

I plan to run a DC class in February of next year. But thought I would post
this here in case anyone is interested in traveling up to New York for the
class, or if you know of someone in the New York area that you think would
be interested, please feel free to forward.

I also run on-site classes in Accessibility and Cascading Style Sheets.  If
you are interested in having a class at your company, please contact me.

Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility 

CSS HANDS ON
New York City, October 10-13, 2006.
http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&id=1



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247243
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument + iText

2006-07-20 Thread Bryan Stevenson
> By form, I mean some way to take a template image / document and overlay
> structured text on top of it at specific locations (ie mass produced
> invoices, statements, etc).

I think that would be simple  with CFDOCUMENTwrite a template CFM page with 
variable place holders for the "structured text"tehn output and procude the 
PDFs.  or have I completely missed your point?

  I ended up writing my own using iText
> directly to output to Tiff's.  Maybe someone can correct me if I'm
> missing a current feature that could do it, but I didn't see one =)

Yes...the TIFF stuff is beyond CFDOCUMENT (but VERY easy with iText..as I guess 
you found)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247242
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Video

2006-07-20 Thread Jeff Small
The size doesn't really mean anything to me. What I'd be most interested in is, 
"what is the duration and quality of the original?"

Those are going to play a bigger role than the actual size of the original 
file. 


--
Jeff Small
LHWH Advertising
Myrtle Beach, SC 29577
843-448-1123 Ext 254
  - Original Message - 
  From: Jenny Gavin-Wear 
  To: CF-Talk 
  Sent: Thursday, July 20, 2006 3:59 PM
  Subject: RE: Video


  Thanks for all the replies, I'm getting the gist of it.

  I have a 192mb .VOB file to convert to flash then.

  Anyone know if this still going to be so large when converted to flash?  

  I'm wary of this thing being a bandwidth hogger.

  Also, if anyone knows of a good .vob to flash converter it would be great.

  Thanks again,

  Jenny



  -- 
  No virus found in this outgoing message.
  Checked by AVG Free Edition.
  Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
   

  

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247241
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Jenny Gavin-Wear
Thanks for all the replies, I'm getting the gist of it.

I have a 192mb .VOB file to convert to flash then.

Anyone know if this still going to be so large when converted to flash?  

I'm wary of this thing being a bandwidth hogger.

Also, if anyone knows of a good .vob to flash converter it would be great.

Thanks again,

Jenny



-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247240
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfdocument + iText

2006-07-20 Thread Peterson, Chris
I would like to see some type of form implementation, as well as the
possibility of different output types (ie png, Tiff, etc)

By form, I mean some way to take a template image / document and overlay
structured text on top of it at specific locations (ie mass produced
invoices, statements, etc).  I ended up writing my own using iText
directly to output to Tiff's.  Maybe someone can correct me if I'm
missing a current feature that could do it, but I didn't see one =)

Chris Peterson

-Original Message-
From: Jerry Johnson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 2:52 PM
To: CF-Talk
Subject: Re: cfdocument + iText

multi-columns!!! Multi-Columns MULTI COLUMNS!!

(Sorry, but I am having to write an iText implementation now just for
the ability to flow text from col 1 to col 2 to col 3 to col 1 on page
2.)

Everything else I need to do I can do easily from CFDOCUMENT.

Jerry Johnson


On 7/20/06, Rupesh Kumar <[EMAIL PROTECTED]> wrote:
> Hi Jose,
> Though the watermark capability is not there in cfdocument, it should
be doable using background images of the html. I understand it is easily
said than done as you will have to size your images carefully so that
they come properly and only once on all the pages. We will try to have
it in the scorpio release.
>
> Any other itext feature that you think are missing and should be there
in cfdocument?



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247239
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Video

2006-07-20 Thread Kevin Aebig
Macrdobemedia decided that the existing codec, even though comparable to
Quicktime, was still not as optimized as they would like, thus the new codec
On2. 

Flash 7's Codec isn't forward compatible obviously, so it can't render new
Flash 8 video because the compression is different.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 12:50 PM
To: CF-Talk
Subject: RE: Video

Russ,

I appreciate that advice, but it is a bit lost on me. I have been using the
Flash 8 Video Encoder. When I add a movie and show the advanced settings, it
uses the On2 VP6 codec. The other one is Sorenson Spark... And when I select
it, the quality jumps to Flash 7... That's what you are referring to,
correct? What is Riva? Is that a third party software?

Thanks.

Ben Nadel 
Web Developer
Nylon Technology
350 7th Avenue
Floor 10
New York, NY 10001
212.691.1134 x 14
212.691.3477 fax
www.nylontechnology.com
 
"Some people call me the space cowboy. Some people call me the gangster of
love."

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 2:06 PM
To: CF-Talk
Subject: RE: Video

If the video is not showing up it's most likely because you're using the On2
codec, which is flash 8 only.  If you encode it using the flash 7 codec, it
should play in most browsers, but the quality/filesize would suck.  I
suggest using Riva which uses the flash 7 codec, but does good compression
so that the quality doesn't' look crappy. 

Russ

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:55 PM
> To: CF-Talk
> Subject: RE: Video
> 
> I just wanted to say that we have had some odd performance with FLV 
> files using Flash Pro... Some browsers seem  to show the skin but not 
> play the embedded video... Always works great on my computer though. 
> Moral of the story, even though its flash and system-independent, be 
> sure to test it on several different computers.
> 
> ...
> Ben Nadel
> Web Developer
> Nylon Technology
> 350 7th Avenue
> Floor 10
> New York, NY 10001
> 212.691.1134 x 14
> 212.691.3477 fax
> www.nylontechnology.com
> 
> "Some people call me the space cowboy. Some people call me the 
> gangster of love."
> 
> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:44 PM
> To: CF-Talk
> Subject: RE: Video
> 
> Convert it to FLV (flash video) and play it inside a flash player.  
> Either use the flv encoder that comes with flash or use riva.
> 
> Russ
> 
> > -Original Message-
> > From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 1:39 PM
> > To: CF-Talk
> > Subject: OT: Video
> >
> > Totally OT, would appreciate some pointers.
> >
> > I need to run a video clip from a site, what's the best way of going 
> > about it please?
> >
> > Thanks,
> >
> > Jenny
> >
> > --
> > No virus found in this outgoing message.
> > Checked by AVG Free Edition.
> > Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date:
> > 19/07/2006
> >
> >
> >
> 
> 
> 
> 





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247238
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Russ
Riva is a third party software that uses the Sorenson codec I believe, but
gives better quality then the flash encoder.  Another benefit is that it's
free. 

Russ

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 2:50 PM
> To: CF-Talk
> Subject: RE: Video
> 
> Russ,
> 
> I appreciate that advice, but it is a bit lost on me. I have been using
> the
> Flash 8 Video Encoder. When I add a movie and show the advanced settings,
> it
> uses the On2 VP6 codec. The other one is Sorenson Spark... And when I
> select
> it, the quality jumps to Flash 7... That's what you are referring to,
> correct? What is Riva? Is that a third party software?
> 
> Thanks.
> ...
> Ben Nadel
> Web Developer
> Nylon Technology
> 350 7th Avenue
> Floor 10
> New York, NY 10001
> 212.691.1134 x 14
> 212.691.3477 fax
> www.nylontechnology.com
> 
> "Some people call me the space cowboy. Some people call me the gangster of
> love."
> 
> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 2:06 PM
> To: CF-Talk
> Subject: RE: Video
> 
> If the video is not showing up it's most likely because you're using the
> On2
> codec, which is flash 8 only.  If you encode it using the flash 7 codec,
> it
> should play in most browsers, but the quality/filesize would suck.  I
> suggest using Riva which uses the flash 7 codec, but does good compression
> so that the quality doesn't' look crappy.
> 
> Russ
> 
> > -Original Message-
> > From: Ben Nadel [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 1:55 PM
> > To: CF-Talk
> > Subject: RE: Video
> >
> > I just wanted to say that we have had some odd performance with FLV
> > files using Flash Pro... Some browsers seem  to show the skin but not
> > play the embedded video... Always works great on my computer though.
> > Moral of the story, even though its flash and system-independent, be
> > sure to test it on several different computers.
> >
> > ...
> > Ben Nadel
> > Web Developer
> > Nylon Technology
> > 350 7th Avenue
> > Floor 10
> > New York, NY 10001
> > 212.691.1134 x 14
> > 212.691.3477 fax
> > www.nylontechnology.com
> >
> > "Some people call me the space cowboy. Some people call me the
> > gangster of love."
> >
> > -Original Message-
> > From: Russ [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 1:44 PM
> > To: CF-Talk
> > Subject: RE: Video
> >
> > Convert it to FLV (flash video) and play it inside a flash player.
> > Either use the flv encoder that comes with flash or use riva.
> >
> > Russ
> >
> > > -Original Message-
> > > From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> > > Sent: Thursday, July 20, 2006 1:39 PM
> > > To: CF-Talk
> > > Subject: OT: Video
> > >
> > > Totally OT, would appreciate some pointers.
> > >
> > > I need to run a video clip from a site, what's the best way of going
> > > about it please?
> > >
> > > Thanks,
> > >
> > > Jenny
> > >
> > > --
> > > No virus found in this outgoing message.
> > > Checked by AVG Free Edition.
> > > Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date:
> > > 19/07/2006
> > >
> > >
> > >
> >
> >
> >
> >
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247237
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Video

2006-07-20 Thread Casey Dougall
Anyone know how google and youtube are adding "any type" of video to their
players on the fly? Would there be a way to compress the video once it's
uploaded with a codec using java or something?

-- 
Casey


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247236
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Low-tech asychronous call to ColdFusion

2006-07-20 Thread Dan G. Switzer, II
Andy,

>The NewAtlanta folks are adding CFTHREAD/CFJOIN to BD7. It allows you
>to fire off an asynch request and then "get it back".
>
>Looks like Damon and the CF folks are going to give us this as an
>unsupported(?) addon.

Thanks for the response, that clears it up!

_Dan


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247235
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


nested loop question

2006-07-20 Thread Paul Ihrig
ok i looked at this example here:
http://www.dwfaq.com/Snippets/snippet_details.asp?CatID=13&SnipID=276
its been a while and i need some refreshers...
thanks

it order a list in a table like so:
01 02 03 04 05
06 07 08 09 10
11 12 13 14 15

i would like to do this instead:
01 04 07 10 13
02 05 08 11 14
03 06 09 12 15

i can do it if i use 5 seperate output queries
but not in a nested loop like:

















 #getAz.AssetCategoryDesc#






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247234
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Low-tech asychronous call to ColdFusion

2006-07-20 Thread Andy Allan
The NewAtlanta folks are adding CFTHREAD/CFJOIN to BD7. It allows you
to fire off an asynch request and then "get it back".

Looks like Damon and the CF folks are going to give us this as an
unsupported(?) addon.

Andy

On 20/07/06, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
> >FYI, just doing some testing on these tags (cfthread and cfjoin) and I hope
> >to have them posted on my blog today or tomorow.  They'l require CF7, but
> >Standard Edition is fine (Enterprise not required).
>
> Just out of curiosity, what is cfjoin?
>
> -Dan
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247233
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Nested output...three levels

2006-07-20 Thread Kris Jones
It looks like you're missing your last cfoutput? Your final detail
piece wouldn't use a group attribute on the cfoutput. I'm just
guessing at the column name here, but something like this should work:

#qGetProcedures.Procedure1Title#
-#qGetProcedures.Procedure2Title#
--#qGetProcedures.Procedure3Title#



Cheers,
Kris

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247232
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument + iText

2006-07-20 Thread Jerry Johnson
multi-columns!!! Multi-Columns MULTI COLUMNS!!

(Sorry, but I am having to write an iText implementation now just for
the ability to flow text from col 1 to col 2 to col 3 to col 1 on page
2.)

Everything else I need to do I can do easily from CFDOCUMENT.

Jerry Johnson


On 7/20/06, Rupesh Kumar <[EMAIL PROTECTED]> wrote:
> Hi Jose,
> Though the watermark capability is not there in cfdocument, it should be 
> doable using background images of the html. I understand it is easily said 
> than done as you will have to size your images carefully so that they come 
> properly and only once on all the pages. We will try to have it in the 
> scorpio release.
>
> Any other itext feature that you think are missing and should be there in 
> cfdocument?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247231
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Dave Watts
> I think I could have the company swing for an on site 
> training, anyone have a line on who does that?

Most Adobe/Macromedia training partners offer onsite training, but you'd
need to have enough people for the training to make it worth your while.
There may be an Adobe training partner in your area - I'm not sure offhand. 

http://spectra15.macromedia.com/findaclass.cfm

Fig Leaf Software offers onsite training; if you're interested, let me know
offlist and I'll get you in touch with our training management folks.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247230
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Ben Nadel
Russ,

I appreciate that advice, but it is a bit lost on me. I have been using the
Flash 8 Video Encoder. When I add a movie and show the advanced settings, it
uses the On2 VP6 codec. The other one is Sorenson Spark... And when I select
it, the quality jumps to Flash 7... That's what you are referring to,
correct? What is Riva? Is that a third party software?

Thanks.
...
Ben Nadel 
Web Developer
Nylon Technology
350 7th Avenue
Floor 10
New York, NY 10001
212.691.1134 x 14
212.691.3477 fax
www.nylontechnology.com
 
"Some people call me the space cowboy. Some people call me the gangster of
love."

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 2:06 PM
To: CF-Talk
Subject: RE: Video

If the video is not showing up it's most likely because you're using the On2
codec, which is flash 8 only.  If you encode it using the flash 7 codec, it
should play in most browsers, but the quality/filesize would suck.  I
suggest using Riva which uses the flash 7 codec, but does good compression
so that the quality doesn't' look crappy. 

Russ

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:55 PM
> To: CF-Talk
> Subject: RE: Video
> 
> I just wanted to say that we have had some odd performance with FLV 
> files using Flash Pro... Some browsers seem  to show the skin but not 
> play the embedded video... Always works great on my computer though. 
> Moral of the story, even though its flash and system-independent, be 
> sure to test it on several different computers.
> 
> ...
> Ben Nadel
> Web Developer
> Nylon Technology
> 350 7th Avenue
> Floor 10
> New York, NY 10001
> 212.691.1134 x 14
> 212.691.3477 fax
> www.nylontechnology.com
> 
> "Some people call me the space cowboy. Some people call me the 
> gangster of love."
> 
> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:44 PM
> To: CF-Talk
> Subject: RE: Video
> 
> Convert it to FLV (flash video) and play it inside a flash player.  
> Either use the flv encoder that comes with flash or use riva.
> 
> Russ
> 
> > -Original Message-
> > From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 1:39 PM
> > To: CF-Talk
> > Subject: OT: Video
> >
> > Totally OT, would appreciate some pointers.
> >
> > I need to run a video clip from a site, what's the best way of going 
> > about it please?
> >
> > Thanks,
> >
> > Jenny
> >
> > --
> > No virus found in this outgoing message.
> > Checked by AVG Free Edition.
> > Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date:
> > 19/07/2006
> >
> >
> >
> 
> 
> 
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247229
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread loathe
Hal Helms

> -Original Message-
> From: Alan Dunn [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 2:43 PM
> To: CF-Talk
> Subject: RE: ColdFusion Training Seminars
> 
> I think I could have the company swing for an on site training, anyone
> have
> a line on who does that?
> 
> 
> 
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 12:13 PM
> To: CF-Talk
> Subject: RE: ColdFusion Training Seminars
> 
> > Thinking about taking one of the fast track training courses
> > in coldfusion --  the 3 day courses...
> >
> > Has anyone taken any of these?  Just wondering if they're
> > worth the time, and what anyones experiences with these sort
> > of classes are.
> 
> I would recommend that you take a look at the course outline, and see if
> you're familiar with most or all of the stuff on it. If so, you probably
> should save your money, and perhaps take the advanced course later.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247228
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfdocument + iText

2006-07-20 Thread Rupesh Kumar
Hi Jose,
Though the watermark capability is not there in cfdocument, it should be doable 
using background images of the html. I understand it is easily said than done 
as you will have to size your images carefully so that they come properly and 
only once on all the pages. We will try to have it in the scorpio release.

Any other itext feature that you think are missing and should be there in 
cfdocument?

Thanks,
Rupesh

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247227
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Alan Dunn
I think I could have the company swing for an on site training, anyone have
a line on who does that?



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 12:13 PM
To: CF-Talk
Subject: RE: ColdFusion Training Seminars

> Thinking about taking one of the fast track training courses 
> in coldfusion --  the 3 day courses...
> 
> Has anyone taken any of these?  Just wondering if they're 
> worth the time, and what anyones experiences with these sort 
> of classes are.

I would recommend that you take a look at the course outline, and see if
you're familiar with most or all of the stuff on it. If so, you probably
should save your money, and perhaps take the advanced course later.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247226
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Verity Examples Fail - http 500 ?

2006-07-20 Thread Dave Watts
> All,  I created a collection, populated it with a query and 
> then created a simple form to search against the collection 
> and I get http 500? ... (see cf code below)
> 
> This is all on my localhost 127.0.0.1. CF Search Server 
> service is running.
> 
> The page cannot be displayed
> There is a problem with the page you are trying to reach and 
> it cannot be displayed.

I don't know what's causing your problem, but you should enable debugging
and robust error messages in CF Administrator, and disable "friendly HTTP
errors" in IE, so that you can read the error message.

Also, and you might well already know this, you won't want to execute the
code that allows you to search within the same request that indexes content,
since that largely defeats the purpose of indexing your content.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247225
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Dave Watts
> Thinking about taking one of the fast track training courses 
> in coldfusion --  the 3 day courses...
> 
> Has anyone taken any of these?  Just wondering if they're 
> worth the time, and what anyones experiences with these sort 
> of classes are.

I would recommend that you take a look at the course outline, and see if
you're familiar with most or all of the stuff on it. If so, you probably
should save your money, and perhaps take the advanced course later.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247224
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Russ
If the video is not showing up it's most likely because you're using the On2
codec, which is flash 8 only.  If you encode it using the flash 7 codec, it
should play in most browsers, but the quality/filesize would suck.  I
suggest using Riva which uses the flash 7 codec, but does good compression
so that the quality doesn't' look crappy. 

Russ

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:55 PM
> To: CF-Talk
> Subject: RE: Video
> 
> I just wanted to say that we have had some odd performance with FLV files
> using Flash Pro... Some browsers seem  to show the skin but not play the
> embedded video... Always works great on my computer though. Moral of the
> story, even though its flash and system-independent, be sure to test it on
> several different computers.
> 
> ...
> Ben Nadel
> Web Developer
> Nylon Technology
> 350 7th Avenue
> Floor 10
> New York, NY 10001
> 212.691.1134 x 14
> 212.691.3477 fax
> www.nylontechnology.com
> 
> "Some people call me the space cowboy. Some people call me the gangster of
> love."
> 
> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:44 PM
> To: CF-Talk
> Subject: RE: Video
> 
> Convert it to FLV (flash video) and play it inside a flash player.  Either
> use the flv encoder that comes with flash or use riva.
> 
> Russ
> 
> > -Original Message-
> > From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 20, 2006 1:39 PM
> > To: CF-Talk
> > Subject: OT: Video
> >
> > Totally OT, would appreciate some pointers.
> >
> > I need to run a video clip from a site, what's the best way of going
> > about it please?
> >
> > Thanks,
> >
> > Jenny
> >
> > --
> > No virus found in this outgoing message.
> > Checked by AVG Free Edition.
> > Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date:
> > 19/07/2006
> >
> >
> >
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247223
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Low-tech asychronous call to ColdFusion

2006-07-20 Thread Dan G. Switzer, II
>FYI, just doing some testing on these tags (cfthread and cfjoin) and I hope
>to have them posted on my blog today or tomorow.  They'l require CF7, but
>Standard Edition is fine (Enterprise not required).

Just out of curiosity, what is cfjoin?

-Dan


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247222
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Video

2006-07-20 Thread Ben Nadel
I just wanted to say that we have had some odd performance with FLV files
using Flash Pro... Some browsers seem  to show the skin but not play the
embedded video... Always works great on my computer though. Moral of the
story, even though its flash and system-independent, be sure to test it on
several different computers.

...
Ben Nadel 
Web Developer
Nylon Technology
350 7th Avenue
Floor 10
New York, NY 10001
212.691.1134 x 14
212.691.3477 fax
www.nylontechnology.com
 
"Some people call me the space cowboy. Some people call me the gangster of
love."

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 1:44 PM
To: CF-Talk
Subject: RE: Video

Convert it to FLV (flash video) and play it inside a flash player.  Either
use the flv encoder that comes with flash or use riva.  

Russ

> -Original Message-
> From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:39 PM
> To: CF-Talk
> Subject: OT: Video
> 
> Totally OT, would appreciate some pointers.
> 
> I need to run a video clip from a site, what's the best way of going 
> about it please?
> 
> Thanks,
> 
> Jenny
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 
> 19/07/2006
> 
> 
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247221
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Video

2006-07-20 Thread Snake
Or u can simply embed it in the page using a standard player (DWMX has
wizards), but it will not be streaming, the user will need to download the
whole video.
If you want streaming media, your host has to support this.

Snake

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED] 
Sent: 20 July 2006 18:44
To: CF-Talk
Subject: RE: Video

Convert it to FLV (flash video) and play it inside a flash player.  Either
use the flv encoder that comes with flash or use riva.  

Russ

> -Original Message-
> From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:39 PM
> To: CF-Talk
> Subject: OT: Video
> 
> Totally OT, would appreciate some pointers.
> 
> I need to run a video clip from a site, what's the best way of going 
> about it please?
> 
> Thanks,
> 
> Jenny
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 
> 19/07/2006
> 
> 
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247220
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Video

2006-07-20 Thread Jeff Small
> Convert it to FLV (flash video) and play it inside a flash player.  Either
> use the flv encoder that comes with flash or use riva.

And if you're using Dreamweaver, it's frickin' easy once you convert it to 
Flash, especially if you're using 8.02 because it drops in all the IE 
friendly scripts. Just go to your "Insert" menu and insert Media > Flash 
Video. It's supersweet.




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247219
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Low-tech asychronous call to ColdFusion

2006-07-20 Thread Dante Orlando
On 7/18/06, dcooper @ macromedia. com dcooper @ macromedia. com <
[EMAIL PROTECTED]> wrote:
>
> Yeah, we did cfthread tag in about a day...we're debating whether to toss
> it out there as an open source project...


So out of curiosity, why didn't MACR implement cfthread/cfjoin instead of
the async gateway in the first place?

-dante


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247218
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Video

2006-07-20 Thread Russ
Convert it to FLV (flash video) and play it inside a flash player.  Either
use the flv encoder that comes with flash or use riva.  

Russ

> -Original Message-
> From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 1:39 PM
> To: CF-Talk
> Subject: OT: Video
> 
> Totally OT, would appreciate some pointers.
> 
> I need to run a video clip from a site, what's the best way of going about
> it please?
> 
> Thanks,
> 
> Jenny
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247217
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Video

2006-07-20 Thread Jenny Gavin-Wear
Totally OT, would appreciate some pointers.

I need to run a video clip from a site, what's the best way of going about it 
please?

Thanks,

Jenny

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247216
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Nested output...three levels

2006-07-20 Thread Andy Matthews
I've never heard of a limit to nesting of CFOUTPUT. As long as all of the
outer ones have the group attribute you can nest as long as you like (I'm
sure there ARE limits, I just don't know them).



-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 20, 2006 12:08 PM
To: CF-Talk
Subject: RE: Nested output...three levels


Okay, why does this work?
#qGetProcedures.Procedure1Title#- #qGetProcedures.Procedure2Title#---
#qGetProcedures.Procedure3Title#

I never knew you could nest three levels of cfoutput. Why on earth was I
thinking you could only set ONE cfoutput inside another one?



-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 20, 2006 12:57 PM
To: CF-Talk
Subject: Nested output...three levels

This seems SOOO easy, and I'm about to kill myself.

Here's what I want (this is just sample data from my tables to give you an
idea):

Candy
 - Gums
- Bubble Gum
- Spearmint Gum
 - Hard Candies
- Jolly Rancher

Snacks
 - Chips
- Doritos
- Potato Chips

I have three tables. I have the Query working perfectly joining all three.

But it's my output that's KILLING me. I can get two levels out using the
group clause on each level's ID:

#qGetProcedures.Procedure1Title#-
#qGetProcedures.Procedure2Title#

But at that third level ("Bubble Gum, Spearmint Gum") I can't get any
output. I can only nest two cfoutputs like that.

What am I overlooking? How do I get the output for my query? I just KNOW
this is easy, but believe it or not, I've actually never done it. It's
deceptively recursive, and I'm just stumped!







~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247214
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Return CFReport from CFC?

2006-07-20 Thread K Jones
Is it possible to return a report generated via CFReport from a CFC? I've tried 
a couple of different things, and only end-up with a blank HTML page.

-Name the cfreport, and returning using the name.
-Setting output=true on the method, and not returning anything.

I can save the report to a file, return the filename and call it that way, but 
how does that work when the format=flashpaper? 

In debugging, I can see my cfc.init(), the getReportXML() call, the 
getChartData_0() call, my reportmethod call. But no report? 

This worked fine outside of a CFC. Any thoughts? 

Cheers,
Kris

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247215
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Nested output...three levels

2006-07-20 Thread Ian Skinner
I never knew you could nest three levels of cfoutput. Why on earth was I 
thinking you could only set ONE cfoutput inside another one? 

I don't know, One can nest as many s as one has fields in a query. 
 More then a few gets very cumbersome, but it is not illegal.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247213
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread Bryan Stevenson
> a) That's not SWF.

Yep...my bad...it is in fact an animated GIF (assumed Flash as the rest of the 
site is).  That does not change the fact that when it moves it spikes my (and 
others) CPUs (in my cased up to 51%...stops moving...drops to 3%).

>
> b) Folks on web team don't read CF-Talk.

I could care lessI didn't post the issue...just what I saw.  It is quite 
obvious that the glorious web team should be doing some QA testing before 
launching things ;-)

>
> jd



Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247211
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread dcooper
I did note it IS PHP :)  

(thought I'd throw that in there, regardless of it's irrelavence, give the 
nature of this list!)

:) 

Seriously, I'll send a note to the web team to see if something's up.

Damon


>I think the LB is hosed.
>
>
>
>
>
>
>"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
>Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
>Registered in England, Number 678540.  It contains information which is
>confidential and may also be privileged.  It is for the exclusive use of the
>intended recipient(s).  If you are not the intended recipient(s) please note
>that any form of distribution, copying or use of this communication or the
>information in it is strictly prohibited and may be unlawful.  If you have
>received this communication in error please return it to the sender or call
>our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
>communication are not necessarily those expressed by Reed Exhibitions." 
>Visit our website at http://www.reedexpo.com
>
>-Original Message-
>From: j s <[EMAIL PROTECTED]>
>To: CF-Talk 
>Sent: Thu Jul 20 04:49:44 2006
>Subject: OT: Adobe labs slow to load?
>
>Why is Adobe's (labs) site so slow to load; is it the leased T1 at work or
>the cable modem at home? Is it me or do other people experience the same?
>If so, shouldn't a company with such technology deliver a site that's more
>responsive?

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247212
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Nested output...three levels

2006-07-20 Thread Charlie Griefer
what's the query look like?  are you using ORDER BY Procedure1ID,
Procedure2ID?  if you're going to group your output in CF you need to
remember to order by the columns on which you're grouping

(sorry if you've got this...but i've been bitten in the butt by it a
couple of times before forgetting to ORDER BY appropriately) :)


On 7/20/06, Jeff Small <[EMAIL PROTECTED]> wrote:
> This seems SOOO easy, and I'm about to kill myself.
>
> Here's what I want (this is just sample data from my tables to give you an
> idea):
>
> Candy
>  - Gums
> - Bubble Gum
> - Spearmint Gum
>  - Hard Candies
> - Jolly Rancher
>
> Snacks
>  - Chips
> - Doritos
> - Potato Chips
>
> I have three tables. I have the Query working perfectly joining all three.
>
> But it's my output that's KILLING me. I can get two levels out using the
> group clause on each level's ID:
>
>  group="Procedure1ID">#qGetProcedures.Procedure1Title# group="Procedure2ID">-
> #qGetProcedures.Procedure2Title#
>
> But at that third level ("Bubble Gum, Spearmint Gum") I can't get any
> output. I can only nest two cfoutputs like that.
>
> What am I overlooking? How do I get the output for my query? I just KNOW
> this is easy, but believe it or not, I've actually never done it. It's
> deceptively recursive, and I'm just stumped!
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247209
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Nested output...three levels

2006-07-20 Thread Jeff Small
Okay, why does this work?
#qGetProcedures.Procedure1Title#- #qGetProcedures.Procedure2Title#---
#qGetProcedures.Procedure3Title#

I never knew you could nest three levels of cfoutput. Why on earth was I
thinking you could only set ONE cfoutput inside another one? 



-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 12:57 PM
To: CF-Talk
Subject: Nested output...three levels

This seems SOOO easy, and I'm about to kill myself.

Here's what I want (this is just sample data from my tables to give you an
idea):

Candy
 - Gums
- Bubble Gum
- Spearmint Gum
 - Hard Candies
- Jolly Rancher

Snacks
 - Chips
- Doritos
- Potato Chips

I have three tables. I have the Query working perfectly joining all three. 

But it's my output that's KILLING me. I can get two levels out using the
group clause on each level's ID:

#qGetProcedures.Procedure1Title#-
#qGetProcedures.Procedure2Title#

But at that third level ("Bubble Gum, Spearmint Gum") I can't get any
output. I can only nest two cfoutputs like that.

What am I overlooking? How do I get the output for my query? I just KNOW
this is easy, but believe it or not, I've actually never done it. It's
deceptively recursive, and I'm just stumped!





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247210
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Nested output...three levels

2006-07-20 Thread Ian Skinner
You did not show your code for the inner most cfoutput or how the output was 
failing.

So the only question I can ask is are you putting a group parameter on the 
innermost cfoutput?  One usually does not do this.  One usually just puts a 
plain #variousVariables# for the inner most 


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247208
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread John Dowdell
Bryan Stevenson wrote:
> FYI I am pretty sure it's the stupid feedback widget that is causing the slow 
> downwhen it moves my CPU spikes...I've seen it before.  They should just 
> have a static image and ditch the Flash on that one

a) That's not SWF.

b) Folks on web team don't read CF-Talk.

jd





-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247207
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread Bryan Stevenson
> That is because you didn't use the little "feedback" widget!  HA!

touche!

Nah...I'm not providing feedback on that one...they should...oh I dunno..TEST 
THEIR SITE BEFORE GOING LIVE ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247206
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Nested output...three levels

2006-07-20 Thread Jeff Small
This seems SOOO easy, and I'm about to kill myself.

Here's what I want (this is just sample data from my tables to give you an
idea):

Candy
 - Gums
- Bubble Gum
- Spearmint Gum
 - Hard Candies
- Jolly Rancher

Snacks
 - Chips
- Doritos
- Potato Chips

I have three tables. I have the Query working perfectly joining all three. 

But it's my output that's KILLING me. I can get two levels out using the
group clause on each level's ID:

#qGetProcedures.Procedure1Title#-
#qGetProcedures.Procedure2Title#

But at that third level ("Bubble Gum, Spearmint Gum") I can't get any
output. I can only nest two cfoutputs like that.

What am I overlooking? How do I get the output for my query? I just KNOW
this is easy, but believe it or not, I've actually never done it. It's
deceptively recursive, and I'm just stumped!



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247205
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: OT: Adobe labs slow to load?

2006-07-20 Thread Robert Redpath
That is because you didn't use the little "feedback" widget!  HA!



From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
Sent: Thu 7/20/2006 12:42 PM
To: CF-Talk
Subject: Re: OT: Adobe labs slow to load?



> +1. Same exact repro here. Using Firefox on Windows XP SP2 with the FP
> 9 Debug player installed, if that helps.
>
> Regards,
> Dave.

Now if only someone had listened to me last week when the same issue was posted
by someone else and I said the same thing *sigh*

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247204
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread Bryan Stevenson
> +1. Same exact repro here. Using Firefox on Windows XP SP2 with the FP
> 9 Debug player installed, if that helps.
>
> Regards,
> Dave.

Now if only someone had listened to me last week when the same issue was posted 
by someone else and I said the same thing *sigh*

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247203
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread Dave Carabetta
On 7/20/06, Bryan Stevenson <[EMAIL PROTECTED]> wrote:
> > If you're seeing problems on the site, please report them directly to
> > the team on the little "feedback" widget which is still on each page.
>
>
> FYI I am pretty sure it's the stupid feedback widget that is causing the slow
> downwhen it moves my CPU spikes...I've seen it before.  They should just
> have a static image and ditch the Flash on that one
>

+1. Same exact repro here. Using Firefox on Windows XP SP2 with the FP
9 Debug player installed, if that helps.

Regards,
Dave.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247202
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread Bryan Stevenson
> If you're seeing problems on the site, please report them directly to
> the team on the little "feedback" widget which is still on each page.


FYI I am pretty sure it's the stupid feedback widget that is causing the slow 
downwhen it moves my CPU spikes...I've seen it before.  They should just 
have a static image and ditch the Flash on that one

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247201
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Adobe labs slow to load?

2006-07-20 Thread John Dowdell
j s wrote:
> Why is Adobe's (labs) site so slow to load; is it the leased T1 at work or 
> the cable modem at home? Is it me or do other people experience the same?
> If so, shouldn't a company with such technology deliver a site that's more 
> responsive?

If you're seeing problems on the site, please report them directly to 
the team on the little "feedback" widget which is still on each page.

For "site slow" posts, useful basic info includes
a)  which pages
b)  how long each
c)  browser brand/version/OS; OS info & configuration
d)  traceroute, IP info
e)  some-or-all session info

That would give folks a chance to discover how your experience differs 
from the norm.

(I've seen enough "site slow" posts to suspect there's something there, 
but almost all such posts have lacked enough data for me to generate 
hypotheses, which is why using the feedback widget on the site is a 
surer route.)

jd







-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247200
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Aaron Rouse
Guess I should add I took these classes for myself(and paid out of
pocket) back around 2000.  I had been working with CF for a few years,
since version 1 but decided I could benifit from the classes.  I
learned a few things that helped me greatly in those classes.  It is
amazing when you code in something for so long how you sometimes miss
things like certain built in functionality.

On 7/20/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
>  I agree with Alan... If you have the money and its not an issue, take the
> class. I am a STRONG believer that if you take anything away that you didn't
> know before than it was well worth it.
>
> ...
> Ben Nadel
> www.bennadel.com
>
> -Original Message-
> From: Aaron Rouse [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 11:38 AM
> To: CF-Talk
> Subject: Re: ColdFusion Training Seminars
>
> If I was in your shoes and could afford it, I'd take the class.  Talk to a
> few places that offer it and tell them what your level is and what you are
> looking to get out of it.
>

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247199
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Ben Nadel
 I agree with Alan... If you have the money and its not an issue, take the
class. I am a STRONG believer that if you take anything away that you didn't
know before than it was well worth it.

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 11:38 AM
To: CF-Talk
Subject: Re: ColdFusion Training Seminars

If I was in your shoes and could afford it, I'd take the class.  Talk to a
few places that offer it and tell them what your level is and what you are
looking to get out of it.

On 7/20/06, Alan Dunn <[EMAIL PROTECTED]> wrote:
> I've had coldfusion servers since 2.0, but just now starting to write 
> code as of the last 2 months and hungry to get as much exposure as I 
> possibly can.  Got the CFWACK book, and have read most of that, and 
> applied it to a few non critical projects we have.  Its great. Problem 
> is, there's a lot to learn here, and having a bit of a struggle to 
> keep it all straight in my head and apply it, without writing 
> spaghetti code.  I really want to do this right.
>
> I don't have anyone to bounce questions off of (I have a ton), so was 
> hoping the seminars might help it reinforce it.  I'm trying to speed 
> up my learning curve, and maybe most importantly lessen mistakes and 
> dev time by knowing what's available.  I've already found a few tags 
> that I somehow missed in the book that would have saved me a few days of
work.
>
> Thanks for the responses! I'm eating this up.  Any advice I'll take :)
>


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247198
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Ray Champagne
> I don't have anyone to bounce questions off of (I have a ton),

Yes, you do.  You're talking to them right now!  :)

Seriously, ask any question on this list you might have, there are TONS 
of helpful people here (and more coming in every day, from what I hear), 
and no question is too "dumb" to ask.  I've asked plenty of them.  :)
-- 
~~~ Ray Champagne :: [EMAIL PROTECTED] ~~~

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247197
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Aaron Rouse
If I was in your shoes and could afford it, I'd take the class.  Talk
to a few places that offer it and tell them what your level is and
what you are looking to get out of it.

On 7/20/06, Alan Dunn <[EMAIL PROTECTED]> wrote:
> I've had coldfusion servers since 2.0, but just now starting to write code
> as of the last 2 months and hungry to get as much exposure as I possibly
> can.  Got the CFWACK book, and have read most of that, and applied it to a
> few non critical projects we have.  Its great. Problem is, there's a lot to
> learn here, and having a bit of a struggle to keep it all straight in my
> head and apply it, without writing spaghetti code.  I really want to do this
> right.
>
> I don't have anyone to bounce questions off of (I have a ton), so was hoping
> the seminars might help it reinforce it.  I'm trying to speed up my learning
> curve, and maybe most importantly lessen mistakes and dev time by knowing
> what's available.  I've already found a few tags that I somehow missed in
> the book that would have saved me a few days of work.
>
> Thanks for the responses! I'm eating this up.  Any advice I'll take :)
>
> -Original Message-
> From: Aaron Rouse [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 20, 2006 9:10 AM
> To: CF-Talk
> Subject: Re: ColdFusion Training Seminars
>
> It all depends on your level.  I sat through the two CFM training
> courses a year or so ago.  It seemed like he was teaching helpful
> information for the rest of the group in the class although I do not
> see them to this day actually using any of that knowledge.  Not sure
> if it is because they did not really understand the things they were
> taught or for some other reason.  Everyone in the group had at least 2
> years experience developing CFM apps using a old framework built
> during the 4.0 days of CF.
>
> At the same time they took that class I read through the Flash course
> books and taught myself Flash.  Those books I found helpful at the
> time since I had no real prior experience with Flash.
>
> On 7/20/06, Alan Dunn <[EMAIL PROTECTED]> wrote:
> > Thinking about taking one of the fast track training courses in coldfusion
> --  the 3 day courses...
> >
> > Has anyone taken any of these?  Just wondering if they're worth the time,
> and what anyones experiences with these sort of classes are.
> >
> >
> >
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247196
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Ben Nadel
On the topic of books, I thought I would just mention that I really liked
the "ColdFusion MX Bible". It's MX 6, not 7 but there may be an updated
book. I just liked its style and its thuroughness. But as he said below, you
need the dedication to read it. Its like 900 pages.

...
Ben Nadel 
www.bennadel.com


-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 11:28 AM
To: CF-Talk
Subject: Re: ColdFusion Training Seminars

We had programmers in our group who have been doing programming for decades
and specifically CF for at least a couple of years.  They found the classes
helpful when taking but as I pointed out in another email they just do not
seem to really use any of what they learned in the class.  The WACK probably
is the way to go if someone is dedicated enough to sit down and work through
some of the examples.

On 7/20/06, Neil Middleton <[EMAIL PROTECTED]> wrote:
> I did the fast-track course in 2000 (so it's probably changed), but I 
> would say if you have less than around 1 years development under your 
> belt then it's probably a good exposure to most bits of CF.
>
> Neil
>
> On 7/20/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
> >
> > How much programming experience do you have?  If you're a beginner, 
> > I'd say it would be worth it, but otherwise, pick up a WACK book 
> > from Ben Forta, work through a couple of the examples, use it for 
> > research in your first project, and you'll have about the same 
> > amount of knowledge you would have gotten from that FastTrack class, 
> > but a lot more money in your pocket.
> >
> > Ray
> >
> > Alan Dunn wrote:
> > > Thinking about taking one of the fast track training courses in
> > coldfusion --  the 3 day courses...
> > >
> > > Has anyone taken any of these?  Just wondering if they're worth 
> > > the
> > time, and what anyones experiences with these sort of classes are.
> > >
> > >
> > >
> >
> >
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247195
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Training Seminars

2006-07-20 Thread Alan Dunn
I've had coldfusion servers since 2.0, but just now starting to write code
as of the last 2 months and hungry to get as much exposure as I possibly
can.  Got the CFWACK book, and have read most of that, and applied it to a
few non critical projects we have.  Its great. Problem is, there's a lot to
learn here, and having a bit of a struggle to keep it all straight in my
head and apply it, without writing spaghetti code.  I really want to do this
right.   

I don't have anyone to bounce questions off of (I have a ton), so was hoping
the seminars might help it reinforce it.  I'm trying to speed up my learning
curve, and maybe most importantly lessen mistakes and dev time by knowing
what's available.  I've already found a few tags that I somehow missed in
the book that would have saved me a few days of work.

Thanks for the responses! I'm eating this up.  Any advice I'll take :)

-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 9:10 AM
To: CF-Talk
Subject: Re: ColdFusion Training Seminars

It all depends on your level.  I sat through the two CFM training
courses a year or so ago.  It seemed like he was teaching helpful
information for the rest of the group in the class although I do not
see them to this day actually using any of that knowledge.  Not sure
if it is because they did not really understand the things they were
taught or for some other reason.  Everyone in the group had at least 2
years experience developing CFM apps using a old framework built
during the 4.0 days of CF.

At the same time they took that class I read through the Flash course
books and taught myself Flash.  Those books I found helpful at the
time since I had no real prior experience with Flash.

On 7/20/06, Alan Dunn <[EMAIL PROTECTED]> wrote:
> Thinking about taking one of the fast track training courses in coldfusion
--  the 3 day courses...
>
> Has anyone taken any of these?  Just wondering if they're worth the time,
and what anyones experiences with these sort of classes are.
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247194
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Yet another AJAX framework

2006-07-20 Thread James Holmes
I have some help from Mingo with ideas and reviewing the content. The
site design was partially courtesy of DW8's pure CSS layouts (let all
ye who heap rubbish on DW partake in the knowledge that the layout
took 30 seconds and there isn't a single table in it; yes, observe the
creamy goodness of DW).

Anyone who wants to comment can visit the forum
http://www.bifrost.com.au/forums/threads.cfm?forumid=67D7CB0E-F900-0235-18BAD35904E56A06
or comment on the next blog post about the layout (which will be out
when I do the comparison page).

On 7/20/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
> Wow, you're farther that I thought.  Is this a solo effort, or did you
> manage to wrangle up some help?

-- 
CFAJAX docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247193
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Charlie Hanlon
I took the FastTrack class in Toronto in 1999 or 2000 and it was a perfect 
fit for my experience level and acted as a springboard for my current 
career.  I found it to be a terrific value.


Charles Hanlon
Senior Web Applications Developer
Food Service Enablers, Inc.
www.fsenablers.com

The People. The Platform. The Products.
Make the Difference


- Original Message - 
From: "Ray Champagne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, July 20, 2006 11:25 AM
Subject: Re: ColdFusion Training Seminars


>I should have probably prefaced my email with the fact that I took it in
> 2000 alsonot sure how much could have changed, curriculum-wise, but
> YMMV...
>
> Neil Middleton wrote:
>> I did the fast-track course in 2000 (so it's probably changed), but I 
>> would
>> say if you have less than around 1 years development under your belt then
>> it's probably a good exposure to most bits of CF.
>>
>> Neil
>>
>> On 7/20/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>>> How much programming experience do you have?  If you're a beginner, I'd
>>> say it would be worth it, but otherwise, pick up a WACK book from Ben
>>> Forta, work through a couple of the examples, use it for research in
>>> your first project, and you'll have about the same amount of knowledge
>>> you would have gotten from that FastTrack class, but a lot more money in
>>> your pocket.
>>>
>>> Ray
>>>
>>> Alan Dunn wrote:
 Thinking about taking one of the fast track training courses in
>>> coldfusion --  the 3 day courses...
 Has anyone taken any of these?  Just wondering if they're worth the
>>> time, and what anyones experiences with these sort of classes are.


>>>
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247192
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Aaron Rouse
We had programmers in our group who have been doing programming for
decades and specifically CF for at least a couple of years.  They
found the classes helpful when taking but as I pointed out in another
email they just do not seem to really use any of what they learned in
the class.  The WACK probably is the way to go if someone is dedicated
enough to sit down and work through some of the examples.

On 7/20/06, Neil Middleton <[EMAIL PROTECTED]> wrote:
> I did the fast-track course in 2000 (so it's probably changed), but I would
> say if you have less than around 1 years development under your belt then
> it's probably a good exposure to most bits of CF.
>
> Neil
>
> On 7/20/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
> >
> > How much programming experience do you have?  If you're a beginner, I'd
> > say it would be worth it, but otherwise, pick up a WACK book from Ben
> > Forta, work through a couple of the examples, use it for research in
> > your first project, and you'll have about the same amount of knowledge
> > you would have gotten from that FastTrack class, but a lot more money in
> > your pocket.
> >
> > Ray
> >
> > Alan Dunn wrote:
> > > Thinking about taking one of the fast track training courses in
> > coldfusion --  the 3 day courses...
> > >
> > > Has anyone taken any of these?  Just wondering if they're worth the
> > time, and what anyones experiences with these sort of classes are.
> > >
> > >
> > >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247191
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Ray Champagne
I should have probably prefaced my email with the fact that I took it in 
2000 alsonot sure how much could have changed, curriculum-wise, but 
YMMV...

Neil Middleton wrote:
> I did the fast-track course in 2000 (so it's probably changed), but I would
> say if you have less than around 1 years development under your belt then
> it's probably a good exposure to most bits of CF.
> 
> Neil
> 
> On 7/20/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>> How much programming experience do you have?  If you're a beginner, I'd
>> say it would be worth it, but otherwise, pick up a WACK book from Ben
>> Forta, work through a couple of the examples, use it for research in
>> your first project, and you'll have about the same amount of knowledge
>> you would have gotten from that FastTrack class, but a lot more money in
>> your pocket.
>>
>> Ray
>>
>> Alan Dunn wrote:
>>> Thinking about taking one of the fast track training courses in
>> coldfusion --  the 3 day courses...
>>> Has anyone taken any of these?  Just wondering if they're worth the
>> time, and what anyones experiences with these sort of classes are.
>>>
>>>
>>
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247190
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Neil Middleton
I did the fast-track course in 2000 (so it's probably changed), but I would
say if you have less than around 1 years development under your belt then
it's probably a good exposure to most bits of CF.

Neil

On 7/20/06, Ray Champagne <[EMAIL PROTECTED]> wrote:
>
> How much programming experience do you have?  If you're a beginner, I'd
> say it would be worth it, but otherwise, pick up a WACK book from Ben
> Forta, work through a couple of the examples, use it for research in
> your first project, and you'll have about the same amount of knowledge
> you would have gotten from that FastTrack class, but a lot more money in
> your pocket.
>
> Ray
>
> Alan Dunn wrote:
> > Thinking about taking one of the fast track training courses in
> coldfusion --  the 3 day courses...
> >
> > Has anyone taken any of these?  Just wondering if they're worth the
> time, and what anyones experiences with these sort of classes are.
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247189
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Yet another AJAX framework

2006-07-20 Thread Munson, Jacob
Wow, you're farther that I thought.  Is this a solo effort, or did you
manage to wrangle up some help? 

> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, July 20, 2006 9:04 AM
> 
> Hehe, C3 is coming along as an idea. I whipped together a sample
> layout and some text, to get discussion going on what needs to be
> there.
> 
> http://www.bifrost.com.au/c3/
> 
> This is only the front page - more important is the comparison page
> for a given topic. I'm going to do that next.
> 
> On 7/20/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
> > Looks like it could be nice, if it truly does do better 
> error reporting
> > than the others.  I know that I like ajaxCFC's error reporting a lot
> > better than cfajax, but it still throws the occasional 
> 'invalid result'
> > or 'object error', which are difficult to debug.
> >
> > By the way, speaking of 1000 tools, how's that C3 thing going
> > (ColdFusion Community Conclusion)?

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247188
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Aaron Rouse
It all depends on your level.  I sat through the two CFM training
courses a year or so ago.  It seemed like he was teaching helpful
information for the rest of the group in the class although I do not
see them to this day actually using any of that knowledge.  Not sure
if it is because they did not really understand the things they were
taught or for some other reason.  Everyone in the group had at least 2
years experience developing CFM apps using a old framework built
during the 4.0 days of CF.

At the same time they took that class I read through the Flash course
books and taught myself Flash.  Those books I found helpful at the
time since I had no real prior experience with Flash.

On 7/20/06, Alan Dunn <[EMAIL PROTECTED]> wrote:
> Thinking about taking one of the fast track training courses in coldfusion -- 
>  the 3 day courses...
>
> Has anyone taken any of these?  Just wondering if they're worth the time, and 
> what anyones experiences with these sort of classes are.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247187
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Training Seminars

2006-07-20 Thread Ray Champagne
How much programming experience do you have?  If you're a beginner, I'd 
say it would be worth it, but otherwise, pick up a WACK book from Ben 
Forta, work through a couple of the examples, use it for research in 
your first project, and you'll have about the same amount of knowledge 
you would have gotten from that FastTrack class, but a lot more money in 
your pocket.

Ray

Alan Dunn wrote:
> Thinking about taking one of the fast track training courses in coldfusion -- 
>  the 3 day courses...
> 
> Has anyone taken any of these?  Just wondering if they're worth the time, and 
> what anyones experiences with these sort of classes are.  
>  
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247186
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: The visible attribute with Flash forms

2006-07-20 Thread Kelly Keith
When visible is set to false set the height to a negative number.

-Original Message-
From: Andy Jarrett [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 20, 2006 6:37 AM
To: CF-Talk
Subject: The visible attribute with Flash forms

Does anyone know how to remove the white gap created when you set
visible="false" in .

The idea is that based on a selected the form will show 2 different
radio buttons. With HTML and CSS this would be easy, but I can't see how
to do this with the Flash Forms.



I have the following bit of code as an example of what I am trying to do




Yes
No









Cheers

Andy J
www.andyjarrett.co.uk



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247185
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Yet another AJAX framework

2006-07-20 Thread James Holmes
Hehe, C3 is coming along as an idea. I whipped together a sample
layout and some text, to get discussion going on what needs to be
there.

http://www.bifrost.com.au/c3/

This is only the front page - more important is the comparison page
for a given topic. I'm going to do that next.

On 7/20/06, Munson, Jacob <[EMAIL PROTECTED]> wrote:
> Looks like it could be nice, if it truly does do better error reporting
> than the others.  I know that I like ajaxCFC's error reporting a lot
> better than cfajax, but it still throws the occasional 'invalid result'
> or 'object error', which are difficult to debug.
>
> By the way, speaking of 1000 tools, how's that C3 thing going
> (ColdFusion Community Conclusion)?
>
> > -Original Message-
> > From: James Holmes [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, July 19, 2006 6:12 PM
> >
> > For those who love having to choose between 1000 tools for the same
> > job, I came across this today:
> >
> > http://coldfusion.sys-con.com/read/247702.htm
>
> This transmission may contain information that is privileged, confidential 
> and/or exempt from disclosure under applicable law. If you are not the 
> intended recipient, you are hereby notified that any disclosure, copying, 
> distribution, or use of the information contained herein (including any 
> reliance thereon) is STRICTLY PROHIBITED. If you received this transmission 
> in error, please immediately contact the sender and destroy the material in 
> its entirety, whether in electronic or hard copy format. Thank you. A1.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247184
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ColdFusion Training Seminars

2006-07-20 Thread Alan Dunn
Thinking about taking one of the fast track training courses in coldfusion --  
the 3 day courses...

Has anyone taken any of these?  Just wondering if they're worth the time, and 
what anyones experiences with these sort of classes are.  
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247183
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF, XML Default namespace, and XPath bug

2006-07-20 Thread Rob Wilkerson
Use local-name().  That ignores the namespace declaration:


 ...


On 7/20/06, Kervin L. Pierre <[EMAIL PROTECTED]> wrote:
> Hello,
>
> We have been dealing with this issue off-and-on for a
> few months now so I really hope someone has some
> insight to this issue for us.
>
> We've noticed that if an XML document has a default
> namespace defined using the 'xmlns' attribute, eg...
>
> 
>  xmlns="http://ns.hr-xml.org/2006-02-28";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xsi:schemaLocation="http://ns.hr-xml.org/2006-02-28
> file:///C:/BackgroundReports.xsd" version="2006-02-28"
> xml:lang="en">
> [...]
>
> Then XPath requires a colon prefix to work.  So the
> regular '/BackgroundReports/@version' does not work
> but  '/:BackgroundReports/@version' does.
>
> This causes us problems because what if the user did
> not specify a default namespace in the document and
> rather the schema file was noted to the parser
> separately?  Now we have to have two versions of XPath
> for each action.
>
> If I remove the default namespace, then the path
> without the colon works, but now the document can not
> be validated whilst being parsed.
>
> Does anyone have any tips/tricks to get ColdFusion to
> work well with a XML default namespaces?
>
> Best regards,
> Kervin
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247182
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Yet another AJAX framework

2006-07-20 Thread Munson, Jacob
Looks like it could be nice, if it truly does do better error reporting
than the others.  I know that I like ajaxCFC's error reporting a lot
better than cfajax, but it still throws the occasional 'invalid result'
or 'object error', which are difficult to debug.

By the way, speaking of 1000 tools, how's that C3 thing going
(ColdFusion Community Conclusion)?

> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, July 19, 2006 6:12 PM
> 
> For those who love having to choose between 1000 tools for the same
> job, I came across this today:
> 
> http://coldfusion.sys-con.com/read/247702.htm

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247181
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: One-to-many application on one screen

2006-07-20 Thread loathe
It's more than just the "popular way.  It's also quickly becoming the
industry standard.  CSS for presentation, markup for identification, JS for
data connectivity and validation as well as to add the dynamic client side
to things.

> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 19, 2006 7:57 PM
> To: CF-Talk
> Subject: Re: One-to-many application on one screen
> 
> The popular way to do this is with AJAX tools such as CFAJAX, ajaxCFC,
> JSMX etc.
> 
> On 7/19/06, Andy McDuff <[EMAIL PROTECTED]> wrote:
> > Hi there,
> >
> > I'm relatively new to CF (although Ben's WACK book is being throughly
> > digested) but fine with SQL, DB design and no problems on general
> coding.
> > I'm working on a small test app to display courses being attended by
> > students. The idea is to put everything on one single HTML page. At the
> top
> > of the page would appear a drop-down list of students (retrieved via
> > cfselect tag & SQL from a CFC), and on the bottom-half of the screen
> would
> > appear the courses being or have been attended. There are 3 tables:
> student,
> > course and student-course (many-to-many relationship broken out to two
> sets
> > of 1-to-many), student-course being the link table. Nothing fancy for
> the
> > moment...
> >
> > What's the best way to do this? Use IFRAME's? If so, what's the general
> > approach? How do I pass the selected student (from the top frame) in
> order
> > to query the courses and display them in the bottom-half of the screen
> > (without having to use a button)? Is this done via Javascript or can
> this be
> > done via CF?
> >
> > Any help / guidance / pseudo-code would be gratefully appreciated.
> 
> --
> CFAJAX docs and other useful articles:
> http://www.bifrost.com.au/blog/
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247180
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF, XML Default namespace, and XPath bug

2006-07-20 Thread Kervin L. Pierre
Hello,

We have been dealing with this issue off-and-on for a
few months now so I really hope someone has some
insight to this issue for us.

We've noticed that if an XML document has a default
namespace defined using the 'xmlns' attribute, eg...


http://ns.hr-xml.org/2006-02-28";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://ns.hr-xml.org/2006-02-28
file:///C:/BackgroundReports.xsd" version="2006-02-28"
xml:lang="en"> 
[...]

Then XPath requires a colon prefix to work.  So the
regular '/BackgroundReports/@version' does not work
but  '/:BackgroundReports/@version' does.

This causes us problems because what if the user did
not specify a default namespace in the document and
rather the schema file was noted to the parser
separately?  Now we have to have two versions of XPath
for each action.

If I remove the default namespace, then the path
without the colon works, but now the document can not
be validated whilst being parsed.

Does anyone have any tips/tricks to get ColdFusion to
work well with a XML default namespaces?

Best regards,
Kervin


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247179
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Query a flat file

2006-07-20 Thread Munson, Jacob
> I'll agree with Robert that CF is slow at file/text manipulation

Oops, I just noticed I called you Robert...Sorry, Neil.


--

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247178
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Query a flat file

2006-07-20 Thread Munson, Jacob
Yeah, it's true.  He could even create a script in an OS task that will
load the file to a DB every time it's changed...or do it with a
scheduled CF page, if that is preferred (I'd chose the former if it were
me, I've never really trusted CF's scheduler).

> -Original Message-
> From: Robertson-Ravo, Neil (RX) 
> [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, July 19, 2006 4:44 PM
> 
> Indeed, but for sure a DB process will be a hell of a lot 
> faster and more
> importantly not tie up a thread :-)
> 
> -Original Message-
> From: Munson, Jacob <[EMAIL PROTECTED]>
> Sent: Thu Jul 20 00:01:13 2006
> 
> I'll agree with Robert that CF is slow at file/text manipulation (I
> really hope they improve this in the next version, and yes I've bugged
> sent in a feature request).  That said, you can loop over the file var
> with cr/lf as your delimiters, and then each loop item, or in 
> this case
> each row, will be a list.  CF has a lot of builtin functions for
> manipulating lists.
> 
> > -Original Message-
> > From: Mike Klostermeyer [mailto:[EMAIL PROTECTED] 
> > Sent: Wednesday, July 19, 2006 4:00 PM
> > 
> > Has anyone ever queried a comma delimited flat file in CF7? 
>  I have 2
> > frequently updated files of around 15MB and 3MB, and don't 
> > want to import it
> > into a database every time it changes.  How efficiently can 
> > CF7 query a
> > large file like that?  Can I do calculations, filtering, etc. 
> > similar to a
> > database query?  Any other suggestions on how I might 
> accomplish this?
> > Thanks.
> 
> This transmission may contain information that is privileged, 
> confidential
> and/or exempt from disclosure under applicable law. If you are not the
> intended recipient, you are hereby notified that any 
> disclosure, copying,
> distribution, or use of the information contained herein 
> (including any
> reliance thereon) is STRICTLY PROHIBITED. If you received 
> this transmission
> in error, please immediately contact the sender and destroy 
> the material in
> its entirety, whether in electronic or hard copy format. 
> Thank you. A1.
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247177
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: One-to-many application on one screen

2006-07-20 Thread Ken Ferguson
and does it come with fire that can be fitted nasally???

*
Ken Ferguson
214.636.6126
*






James Holmes wrote:
> Yeah, but what colour is it?
>
> (points for those who get the HHGTTG reference)
>
> On 7/20/06, Robertson-Ravo, Neil (RX)
> <[EMAIL PROTECTED]> wrote:
>   
>> May as well call it "Wheel 2.0" (now even rounder)
>> 
>
>   


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247176
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFCUnit cons and pros

2006-07-20 Thread Aaron Rouse
I think it can be really dependent on how your CFCs are coded and used
as to what the pros and cons are.  I have used CFCUnit on some
projects that the huge pro was that it saved an enormous amount of
time then on other projects it would have taken more time to use it
over just putting the CFCs to some "manual" testing.

On 7/20/06, Asim Manzur <[EMAIL PROTECTED]> wrote:
> I am actually working to prepare the presentation for my organization and
> mention what are the cons and pros using CFCUnit vs doing the manual unit
> testing.
>
> google didn't give me any good article/summary result.
>
> Can someone help me about this.
>
> --
> Regards,
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247175
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFCUnit cons and pros

2006-07-20 Thread Asim Manzur
I am actually working to prepare the presentation for my organization and
mention what are the cons and pros using CFCUnit vs doing the manual unit
testing.

google didn't give me any good article/summary result.

Can someone help me about this.

-- 
Regards,


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247174
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: One-to-many application on one screen

2006-07-20 Thread Dawson, Michael
I'm releasing "Sliced Bread 2.0" next week.  It's the best thing since
"Sliced Bread 1.0", you know.  ;-)

M!ke

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247173
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SQL Server Emergency

2006-07-20 Thread Shuo-Fu Wang
last step

ALTER DATABASE DB_name SET MULTI_USER
GO



-Original Message-
From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 19, 2006 6:07 PM
To: CF-Talk
Subject: OT: SQL Server Emergency


Sorry for the priority off-topic, but I have a SQL server down and I am
running out of ideas.

The log file for one of my databases was corrupted.  I thought I rememberd
in the past that by removing the log file SQL server would rebuild a new one
and you would only loose whatever transactions were in the log file.
Apparently not.  I stopped SQL server, deleted the log file and restarted
it.  Now the database is marked as suspect.  I have tried detaching the
database, but the database is/was used in a replication and SQL server won't
allow me to detach it.

How can I disable the replication in order to detach the database and then
reattach it so that it will rebuild a new log file?

Thanks.







~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247172
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SQL Server Emergency

2006-07-20 Thread Shuo-Fu Wang
try this

DBCC Command REBUILD_LOG

EXEC sp_configure 'allow updates', 1
RECONFIGURE WITH OVERRIDE
GO

BEGIN TRAN

UPDATE master..sysdatabases
SET status = status | 32768
WHERE name = 'DB name'

IF @@ROWCOUNT = 1
BEGIN
   COMMIT TRAN
   RAISERROR('emergency mode set', 0, 1)
END
ELSE
BEGIN
   ROLLBACK
   RAISERROR('unable to set emergency mode', 16, 1)
END

GO

EXEC sp_configure 'allow updates', 0
RECONFIGURE WITH OVERRIDE
GO

-- Restart SQL Server at this point.

DBCC REBUILD_LOG('DB Name', 'D:\DB location\DB_name_Log.ldf')


HTH


-Original Message-
From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 19, 2006 6:07 PM
To: CF-Talk
Subject: OT: SQL Server Emergency


Sorry for the priority off-topic, but I have a SQL server down and I am
running out of ideas.

The log file for one of my databases was corrupted.  I thought I rememberd
in the past that by removing the log file SQL server would rebuild a new one
and you would only loose whatever transactions were in the log file.
Apparently not.  I stopped SQL server, deleted the log file and restarted
it.  Now the database is marked as suspect.  I have tried detaching the
database, but the database is/was used in a replication and SQL server won't
allow me to detach it.

How can I disable the replication in order to detach the database and then
reattach it so that it will rebuild a new log file?

Thanks.







~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247171
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scheduling .car creation (in other words: scheduling settings backups)

2006-07-20 Thread Beru
OK, thanks all for your support and useful suggestions.

This is the crappy code I wrote to enhance the crappy CF UI (and I mean it,
this UI and admin API does not deserve an *enterprise* label. Although I
love CF and support it since v. 4, it really lags behind in terms of
functionality for server admins, specially when
you deal with multiple sites and instances)



Build Archive




http://your_instance_IP:your_port
/CFIDE/administrator/archives/wizards/buildwizard_page_archive_frame.cfm?archivename=
Archive_Name_Here&archiveFileName=C%3A%5CPath_Name%5CArchive_Name%2Ecar"
method="post"
>




#cfhttp.fileContent#

#cfhttp.header#





You have to define the .car first in the CF Administrator, and remember to
refresh this definition as your settings change, because of course there's
no way to tell CF "I want you to save all my DSNs and please add any new
DSNs to the .car definition as they are created". I'll have to spend one
more day or so to code some sort of "solution" for this too.

Oh, and you'd better have a network monitor tool or else something like
http://www.fusion-reactor.com to get the "CFAUTHORIZATION_cfadmin" cookie
value.

But once you have all that, you can schedule this page.

As usual, this code is open source, so don't hesitate to enhance/correct it
(although it's a masterpiece already, I wonder what you would find to
add/correct)

Hasta la vista, I'm off on vacation!



On 7/18/06, Dave Watts <[EMAIL PROTECTED]> wrote:
>
> > ok ok, I did not mean to offend anyone out there, so forgive
> > me if I did.
>
> Speaking for myself, I'm not offended.
>
> > - There seems to be no obvious way to schedule .car creation
> > from within CF, at least from what I got as reactions up to
> > now. Or is there?
>
> Not exactly obvious, but nothing you couldn't whip up with CFHTTP in a few
> minutes, I think. You'd have to use CFHTTP to login, read the login cookie
> information from the request, then send a second request to the URL that
> would create the CAR for you. You would, however, have to define the CAR
> attributes first from within the CF Administrator - presumably, you could
> automate that, but that would probably take more than a few minutes, to
> say
> the least.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247170
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Yet another AJAX framework

2006-07-20 Thread Andy Matthews
I'll recommend jQuery as well (www.jquery.com). Not only does it include
AJAX interaction but it's also got lots of built in effects as well as great
DOM interaction/manipulation. It's also got a very active user community
developing additional plugins for it.

Oh...and it's 15k.



-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 19, 2006 7:12 PM
To: CF-Talk
Subject: Yet another AJAX framework


For those who love having to choose between 1000 tools for the same
job, I came across this today:

http://coldfusion.sys-con.com/read/247702.htm

--
CFAJAX docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247169
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Low-tech asychronous call to ColdFusion

2006-07-20 Thread dcooper
FYI, just doing some testing on these tags (cfthread and cfjoin) and I hope to 
have them posted on my blog today or tomorow.  They'l require CF7, but Standard 
Edition is fine (Enterprise not required).  

Using the these tags with CF7 won't give you the thread pooling and other 
fine-grained control, such as the number of dedicated threads for processing, 
etc that you get with the Async Gateway and Event Gateway architecture, but 
hopefully they'll still be useful.

Glad to see our developers used their plane ride back from CFUNITED 
constructively :)

Damon

> Not sure, "TBD" :)  (don't need to stinkin hell raining down on me! :) 
> 
> 
> Let me just say that there's nothing (*technically*) that ties it to 
> the gateway infrastructure...
> 
> Damon 
> 
> >So, would this still be an Enterprise only feature then? Or would 
> the
> >tag be usable in Standard? (You do realise that if you say Ent only
> >then all hell will reign down upon you from others currently 
> watching
> >this thread :)
> >
> >Andy
> >
> >On 18/07/06, dcooper @ macromedia. com dcooper @ macromedia. com
> ><[EMAIL PROTECTED]> wrote:
>>

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247168
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Form.fieldnames doesn't contains all form field names?

2006-07-20 Thread Andy Matthews
A

I didn't even THINK of that Ben! Thanks a lot! I'll change that straight
away!



-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 19, 2006 4:56 PM
To: CF-Talk
Subject: RE: Form.fieldnames doesn't contains all form field names?


It's the "_time" fields... ColdFusion is evaluating them on the server (for
valid TIME)... Then removes them from the FORM scope. Does this also with
fields ending in "_date".


Ben Nadel
www.bennadel.com

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 19, 2006 5:51 PM
To: CF-Talk
Subject: RE: Form.fieldnames doesn't contains all form field names?

Here's the list of what's showing up where. Am I missing something?

FORM|fieldnames
---
amount_purchased|amount_purchased
assetform_savings   |assetform_savings
average_evaluate_time   |average_monthly_bill
average_hookup_time |caform_savings
average_inspection_time |current_loading
average_monthly_bill|docs_time_spent_after
caform_savings  |docs_time_spent_now
current_loading |downtime_cost
docs_time_spent_after   |downtime_hours_saved
docs_time_spent_now
|downtimeform_downtime_hours_saved
downtimeform_downtime_hours_saved   |downtimeform_savings
downtimeform_savings|engineering_hours_per_read
downtime_cost   |engineering_rate
downtime_hours_saved|estimated_inspections
engineering_hours_per_read  |fix_major_outages
engineering_rate
|fix_repetitive_outages
estimated_inspections   |fk_proj_id
fix_major_outages   |hours_per_read
fix_repetitive_outages  |hours_saved
fk_proj_id  |id
hours_per_read  |labor_rate
hours_saved
|maintenanceform_savings
id  |not_need_purchase
labor_rate  |number_inspections
maintenanceform_savings |number_major_outages
not_need_purchase
|number_repetitive_outages
number_inspections  |percent_saved
number_major_outages|plan_time_spent_after
number_repetitive_outages   |plan_time_spent_now
percent_saved   |planningform_hours_saved
planningform_hours_saved|planningform_savings
planningform_savings|portableform_savings_labor
plan_time_spent_after   |projected_loading
plan_time_spent_now |reads_per_year
portableform_savings_labor  |saved_inspections
projected_loading   |savings_assets
reads_per_year  |savings_ca
saved_inspections   |savings_downtime
savings_assets  |savings_labor
savings_ca  |savings_maint
savings_downtime|savings_meter
savings_labor   |savings_planning
savings_maint   |summaryform_savings
savings_meter   |total_savings
savings_planning|uses_per_year
summaryform_savings
total_savings
uses_per_year





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247167
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


The visible attribute with Flash forms

2006-07-20 Thread Andy Jarrett
Does anyone know how to remove the white gap created when you set
visible="false" in .

The idea is that based on a selected the form will show 2 different
radio buttons. With HTML and CSS this would be easy, but I can't see
how to do this with the Flash Forms.



I have the following bit of code as an example of what I am trying to do




Yes
No









Cheers

Andy J
www.andyjarrett.co.uk

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247166
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


VAT Webservice

2006-07-20 Thread Jim
Hi All,

I am trying to use this webservice:

http://ec.europa.eu/taxation_customs/vies/api/checkVatPort?wsdl

After a quick glance at the wsdl, I thought this would do it:

http://ec.europa.eu/taxation_customs/vies/api/checkVatPort?wsdl"; 

  method="checkVat"
  returnvariable="wsresult"
  timeout="20">
   


   


No joy, the parameters arent right, so I tried passing a struct of the 
values, still no joy.

Can anyone help with reading the webservice and determining what 
parameters it wants?

BTW, I can only get this far using my CF 7 install, my CF 6.1 install 
doesnt even want to generate a stub object for the wsdl.

Thanks,
Jim


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247165
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Adobe labs slow to load?

2006-07-20 Thread James Smith
> Why is Adobe's (labs) site so slow to load; is it the leased 
> T1 at work or the cable modem at home? Is it me or do other 
> people experience the same?
> If so, shouldn't a company with such technology deliver a 
> site that's more responsive?

Adobe Lightroom Beta for the PC came out yesterday so I guess the millions
of PC users downloading that are probably slowwing the site down. 

--
Jay

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.2/393 - Release Date: 19/07/2006
 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247164
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: One-to-many application on one screen

2006-07-20 Thread Robertson-Ravo, Neil (RX)
Lol.





"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: James Holmes <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Thu Jul 20 09:15:35 2006
Subject: Re: One-to-many application on one screen

Yeah, but what colour is it?

(points for those who get the HHGTTG reference)

On 7/20/06, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> May as well call it "Wheel 2.0" (now even rounder)

-- 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247163
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: SQL Server Emergency

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 23:07, Jeff D. Chastain wrote:
> in the past that by removing the log file SQL server would rebuild a new
> one and you would only loose whatever transactions were in the log file. 

Well, unless it was half way through doing something, I suppose it might.
Doesn't strike me as a very good plan except if-all-else-fails.
I don't suppose undeleting the log works ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247162
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Verity Examples Fail - http 500 ?

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 19:24, [EMAIL PROTECTED] wrote:
> All,  I created a collection, populated it with a query and then created a
> simple form to search against the collection and I get http 500? ... (see
> cf code below)

And what's in the log files ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247161
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scheduling .car creation (in other words: scheduling settings backups)

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 15:12, Larry Lyons wrote:
> Times like this I just want to find a brick wall and beat it to death with
> my head.

Sounds like you just removed the sticky plaster someone put in in the dim and 
distant past...

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247160
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How long have my CF services been running?

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 19:32, Brad Wood wrote:
> Can I tell how long my CFMX7 service has been running on Linux?  All I
> have access to is BASH.

# ps -e -o lstart -o cmd|grep cold
Wed Jul 19 16:14:28 2006 /opt/coldfusionmx7/bin/cfmx7 -jar 
cfusion.jar -autorestart -start coldfusion
Wed Jul 19 16:14:28 2006 /opt/coldfusionmx7/bin/cfmx7 -jar cfusion.jar -start 
coldfusion

You may need to adjust the last item (use 'ps -efw') depending on how your 
server is set up.
-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:247159
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >