Re: Coldfusion + Flex

2009-08-21 Thread Gerald Guido

I would take a look at Flash Catalyst

http://labs.adobe.com/technologies/flashcatalyst/

I took a 20% day to play with Flash Catalyst, Flash builder beta etc.. and
ran into Ryan Stewart's screen cast.

http://blog.digitalbackcountry.com/2009/05/flash-builder-and-flash-catalyst-betas-now-available/

Catalyst + Flash Builder + CF Builder + ORM + Code Generation + Abstract
Service layer = Paradigm shift

This is a total game changer for me. The world looks 100% different right
now.

My head is still spinning.

G!

On Fri, Aug 21, 2009 at 2:48 PM, Agha Mehdi  wrote:

>
> Thank you all for great feedback. I went ahead and installed Flash Builder
> Beta and CF Builder Plugin for it. Things look good. I used Flex Builder 3
> years ago so, wasn't sure what smart people were using in the new world. I
> prefer single IDE for all different platforms. Seems like this will do it.
> Now I need to figure out how to load Cairngorm Framework onto it. I am sure
> a lot has changed in that framework too. Im gonna have to go back to
> school.
> :)
> Thanks again
>
> On Fri, Aug 21, 2009 at 11:12 AM, Mike Chabot  wrote:
>
> >
> > I have used both Flex Builder standalone and the Flex Builder Eclipse
> > plug-in for substantial periods of time. The stand-alone Flex Builder
> > is easier to use, unless you are already an experienced user of
> > Eclipse. The reason it is easier to use is that a typical Eclipse
> > install has all this extra stuff unrelated to Flex, and the menu
> > choices aren't as specific to Flex work. If you are learning the
> > technology, the books and videos are going to show you how to do
> > things in Flex Builder. Also, unless you clean up your Eclipse install
> > to remove all the unnecessary plug-ins, it is going to be slower.
> >
> > The best combination is personal preference. I prefer HomeSite over
> > Eclipse when editing CF code (not considering ColdFusion Builder).
> > HomeSite is light-weight, simple to use, quick to load, doesn't use a
> > lot of computer resources, and does one thing very well. Once
> > ColdFusion Builder is released, the question of the best IDE will
> > hopefully be answered definitively.
> >
> > There are IDEs for Flex other than what Adobe provides. One person I
> > know who does full-time Flex and Flash work insists that FDT is a much
> > better IDE. http://fdt.powerflasher.de/
> > There are other IDEs as well, some of which interface with the free
> > Flex SDK, allowing you to program in Flex for free.
> >
> > I heard (possibly from Terrence Ryan) that if you install both
> > Flash/Flex Builder and ColdFusion Builder, that you should install
> > Flash/Flex Builder first. Whatever issues led to this recommendation
> > might be fixed by the time CF Builder is released for sale.
> >
> > If you are installing these programs for the first time, I recommend
> > using Flex Builder stand-alone and the ColdFusion Builder beta
> > version.
> >
> > -Mike Chabot
> >
> > On Fri, Aug 21, 2009 at 12:47 PM, Tom McNeer wrote:
> > >
> > > As Andy says, no matter how you install it, if you run FlexBuilder,
> it's
> > > running as a plugin for Eclipse.
> > >
> > > The same is true for CFBuilder. It's just another Eclipse plug-in, no
> > matter
> > > how you install it.
> > >
> > > So to handle both CF and Flex, you need some combination of Eclipse
> > > plug-ins, either FB and CFB, or FB and CFEclipse. No way around it.
> > >
> > > If you have FlexBuilder, even installed as a "standalone," you can just
> > add
> > > CFEclipse as a plugin. That's simple enough, and that's how I have
> things
> > > running on one of my machines.
> > >
> > > Although there's obviously been no official word, I have received
> strong
> > > suggestions that there will be some sort of Flex Builder 4/CF Builder
> > combo
> > > pricing.
> > >
> > > --
> > > Thanks,
> > >
> > > Tom
> > >
> > > Tom McNeer
> > > MediumCool
> > > http://www.mediumcool.com
> > > 1735 Johnson Road NE
> > > Atlanta, GA 30306
> > > 404.589.0560
> > >
> > >
> > >
> >
> >
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325602
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: simple SQL Question

2009-08-21 Thread Discover Antartica

*= is actually used at my work place.  Thanks for the answer.





From: Adrian Lynch 
To: cf-talk 
Sent: Friday, August 21, 2009 5:59:17 PM
Subject: RE: simple SQL Question


That is a left outer join. It's mixing new and old styles of joining tables.
Not sure if there's a benefit to the mix, but I reckon this is clearer:

SELECT a.id, b.name
FROM a
INNER JOIN b ON a.id = b.id
LEFT OUTER JOIN b ON a.id = b.id

Is this code actually used or an example for the question?

Adrian

> -Original Message-
> From: Discover Antartica [mailto:discoverantart...@yahoo.com]
> Sent: 22 August 2009 00:50
> To: cf-talk
> Subject: simple SQL Question
> 
> 
> what does the *= mean in a query. For example:
> 
> select a.id, b.name
>  from a
> inner join b
>    on a.id = b.id
> where a.id *= b.id
> 
> Thank



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325601
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: simple SQL Question

2009-08-21 Thread Adrian Lynch

That is a left outer join. It's mixing new and old styles of joining tables.
Not sure if there's a benefit to the mix, but I reckon this is clearer:

SELECT a.id, b.name
FROM a
INNER JOIN b ON a.id = b.id
LEFT OUTER JOIN b ON a.id = b.id

Is this code actually used or an example for the question?

Adrian

> -Original Message-
> From: Discover Antartica [mailto:discoverantart...@yahoo.com]
> Sent: 22 August 2009 00:50
> To: cf-talk
> Subject: simple SQL Question
> 
> 
> what does the *= mean in a query. For example:
> 
> select a.id, b.name
>  from a
> inner join b
>    on a.id = b.id
> where a.id *= b.id
> 
> Thank

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325600
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: How to Make Layers Visible with OnMouseOver

2009-08-21 Thread Adrian Lynch

Way too much code to look at!

But using jQuery:


.hidden {
display: none;
}




$(function() {
$("#show").mouseover(function() {
$("#hiddenDiv").show();
}).mouseout(function() {
$("#hiddenDiv").hide();
});
});


Show that div

A hidden div

Rolling off will hide it again. Not sure if you want that or not.

Adrian

> -Original Message-
> From: Scott Williams [mailto:myscottwilli...@yahoo.com]
> Sent: 21 August 2009 19:36
> To: cf-talk
> Subject: How to Make Layers Visible with OnMouseOver
> 
> 
> Hi all --
> 
> I can't figure out how to make Layer2 in this document visible when I
> mouseover the  tag around the newbridgecollege.edu link. Can anyone
> help me with this?
> 
> Scott
> 
> *
> 
> 
> 
> 
*snip*
> 
> ***
> 
> Thanks in advance!
> 
> Scott


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325599
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


simple SQL Question

2009-08-21 Thread Discover Antartica

what does the *= mean in a query. For example:
 
select a.id, b.name
 from a
inner join b
   on a.id = b.id
where a.id *= b.id
 
Thanks


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325598
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion + Flex

2009-08-21 Thread Agha Mehdi

Thank you all for great feedback. I went ahead and installed Flash Builder
Beta and CF Builder Plugin for it. Things look good. I used Flex Builder 3
years ago so, wasn't sure what smart people were using in the new world. I
prefer single IDE for all different platforms. Seems like this will do it.
Now I need to figure out how to load Cairngorm Framework onto it. I am sure
a lot has changed in that framework too. Im gonna have to go back to school.
:)
Thanks again

On Fri, Aug 21, 2009 at 11:12 AM, Mike Chabot  wrote:

>
> I have used both Flex Builder standalone and the Flex Builder Eclipse
> plug-in for substantial periods of time. The stand-alone Flex Builder
> is easier to use, unless you are already an experienced user of
> Eclipse. The reason it is easier to use is that a typical Eclipse
> install has all this extra stuff unrelated to Flex, and the menu
> choices aren't as specific to Flex work. If you are learning the
> technology, the books and videos are going to show you how to do
> things in Flex Builder. Also, unless you clean up your Eclipse install
> to remove all the unnecessary plug-ins, it is going to be slower.
>
> The best combination is personal preference. I prefer HomeSite over
> Eclipse when editing CF code (not considering ColdFusion Builder).
> HomeSite is light-weight, simple to use, quick to load, doesn't use a
> lot of computer resources, and does one thing very well. Once
> ColdFusion Builder is released, the question of the best IDE will
> hopefully be answered definitively.
>
> There are IDEs for Flex other than what Adobe provides. One person I
> know who does full-time Flex and Flash work insists that FDT is a much
> better IDE. http://fdt.powerflasher.de/
> There are other IDEs as well, some of which interface with the free
> Flex SDK, allowing you to program in Flex for free.
>
> I heard (possibly from Terrence Ryan) that if you install both
> Flash/Flex Builder and ColdFusion Builder, that you should install
> Flash/Flex Builder first. Whatever issues led to this recommendation
> might be fixed by the time CF Builder is released for sale.
>
> If you are installing these programs for the first time, I recommend
> using Flex Builder stand-alone and the ColdFusion Builder beta
> version.
>
> -Mike Chabot
>
> On Fri, Aug 21, 2009 at 12:47 PM, Tom McNeer wrote:
> >
> > As Andy says, no matter how you install it, if you run FlexBuilder, it's
> > running as a plugin for Eclipse.
> >
> > The same is true for CFBuilder. It's just another Eclipse plug-in, no
> matter
> > how you install it.
> >
> > So to handle both CF and Flex, you need some combination of Eclipse
> > plug-ins, either FB and CFB, or FB and CFEclipse. No way around it.
> >
> > If you have FlexBuilder, even installed as a "standalone," you can just
> add
> > CFEclipse as a plugin. That's simple enough, and that's how I have things
> > running on one of my machines.
> >
> > Although there's obviously been no official word, I have received strong
> > suggestions that there will be some sort of Flex Builder 4/CF Builder
> combo
> > pricing.
> >
> > --
> > Thanks,
> >
> > Tom
> >
> > Tom McNeer
> > MediumCool
> > http://www.mediumcool.com
> > 1735 Johnson Road NE
> > Atlanta, GA 30306
> > 404.589.0560
> >
> >
> >
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325597
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to Make Layers Visible with OnMouseOver

2009-08-21 Thread Scott Williams

Hi all --

I can't figure out how to make Layer2 in this document visible when I mouseover 
the  tag around the newbridgecollege.edu link. Can anyone help me with this?

Scott

*







Valley Career College















 
 

http://www.newbridgecollege.edu";>





 
http://www.newbridgecollege.edu/newbridge.css"; rel="stylesheet" 
type="text/css">

  
   

 Santa Ana
 714-550-8000
 1840 E 17th St
 Santa Ana, CA 92705

   
   

 Long Beach
 562-498-4500
 3799 E Burnett St
 Long Beach, CA 90815

   
  
  
   
 Programs:
 
Surgical Technology
Medical Laboratory Technician Associate 
Medical Assistant
Ultrasound (Diagnostic Medical Sonography)
Medical Biller / Office Management
Certified Phlebotomy Technician (“CPT-1”)
  
 
 








YOUR NEW
CAREER IN 8 MONTHS





Valley
Career College offers
short term, hands-on training for
careers in high demand
occupations. Our training
programs teach you the skills
that employers are looking for;
skills that you’ll need to
get the job and skills that
you’ll need to advance
within your new career.




If you're currently
unemployed, just starting out
or if you’re ready to make a career
change, then
Valley Career
College
might be right for you.
Valley Career
College offers
the following programs:

Medical Assistant
Dental Assistant
Pharmacy
Technician
Medical
Administration/Insurance
Computerized
Office/Accounting

.
.Valley
Career College Benefits:

Financial
Aid to those who qualify
Day and
Evening Classes
Job
Placement Assistance
Small
Classes







THE FIRST STEP
TOWARDS
YOUR NEW CAREER
(Complete and Submit the Form Below)



An Admissions
Representative will contact you to
explore how Valley
Career College
can help you
achieve your career goals.
.



Please
Complete All Fields
   

Re: Coldfusion + Flex

2009-08-21 Thread Mike Chabot

I have used both Flex Builder standalone and the Flex Builder Eclipse
plug-in for substantial periods of time. The stand-alone Flex Builder
is easier to use, unless you are already an experienced user of
Eclipse. The reason it is easier to use is that a typical Eclipse
install has all this extra stuff unrelated to Flex, and the menu
choices aren't as specific to Flex work. If you are learning the
technology, the books and videos are going to show you how to do
things in Flex Builder. Also, unless you clean up your Eclipse install
to remove all the unnecessary plug-ins, it is going to be slower.

The best combination is personal preference. I prefer HomeSite over
Eclipse when editing CF code (not considering ColdFusion Builder).
HomeSite is light-weight, simple to use, quick to load, doesn't use a
lot of computer resources, and does one thing very well. Once
ColdFusion Builder is released, the question of the best IDE will
hopefully be answered definitively.

There are IDEs for Flex other than what Adobe provides. One person I
know who does full-time Flex and Flash work insists that FDT is a much
better IDE. http://fdt.powerflasher.de/
There are other IDEs as well, some of which interface with the free
Flex SDK, allowing you to program in Flex for free.

I heard (possibly from Terrence Ryan) that if you install both
Flash/Flex Builder and ColdFusion Builder, that you should install
Flash/Flex Builder first. Whatever issues led to this recommendation
might be fixed by the time CF Builder is released for sale.

If you are installing these programs for the first time, I recommend
using Flex Builder stand-alone and the ColdFusion Builder beta
version.

-Mike Chabot

On Fri, Aug 21, 2009 at 12:47 PM, Tom McNeer wrote:
>
> As Andy says, no matter how you install it, if you run FlexBuilder, it's
> running as a plugin for Eclipse.
>
> The same is true for CFBuilder. It's just another Eclipse plug-in, no matter
> how you install it.
>
> So to handle both CF and Flex, you need some combination of Eclipse
> plug-ins, either FB and CFB, or FB and CFEclipse. No way around it.
>
> If you have FlexBuilder, even installed as a "standalone," you can just add
> CFEclipse as a plugin. That's simple enough, and that's how I have things
> running on one of my machines.
>
> Although there's obviously been no official word, I have received strong
> suggestions that there will be some sort of Flex Builder 4/CF Builder combo
> pricing.
>
> --
> Thanks,
>
> Tom
>
> Tom McNeer
> MediumCool
> http://www.mediumcool.com
> 1735 Johnson Road NE
> Atlanta, GA 30306
> 404.589.0560
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325595
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion + Flex

2009-08-21 Thread Tom McNeer

As Andy says, no matter how you install it, if you run FlexBuilder, it's
running as a plugin for Eclipse.

The same is true for CFBuilder. It's just another Eclipse plug-in, no matter
how you install it.

So to handle both CF and Flex, you need some combination of Eclipse
plug-ins, either FB and CFB, or FB and CFEclipse. No way around it.

If you have FlexBuilder, even installed as a "standalone," you can just add
CFEclipse as a plugin. That's simple enough, and that's how I have things
running on one of my machines.

Although there's obviously been no official word, I have received strong
suggestions that there will be some sort of Flex Builder 4/CF Builder combo
pricing.

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325594
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion + Flex

2009-08-21 Thread Andy Matthews

FlexBuilder is the same as running Flex within CFEclipse. They're both built
on Eclipse.

CFBuilder won't let you build Flex apps as it's not Flex Builder.


andy 

-Original Message-
From: Agha Mehdi [mailto:aghaime...@gmail.com] 
Sent: Friday, August 21, 2009 11:35 AM
To: cf-talk
Subject: Re: Coldfusion + Flex


I have to pay for FB and than run it as a plugin for Eclipse. I don't like
that approach. I'd rather use FB if I pay for it. Especially when CFBuilder
is coming out and though, I haven't looked at the Beta but I'm hoping that
it would be good enough for Flex.

On Fri, Aug 21, 2009 at 9:29 AM, Jake Churchill  wrote:

>
> You can use Eclipse with a CFEclipse and FlexBuilder plugins.  
> Personally I use Flexbuilder standalone for Flex and CFEclipse separately.
>
> Jake Churchill
> CF Webtools
> 11204 Davenport, Ste. 100
> Omaha, NE  68154
> http://www.cfwebtools.com
> 402-408-3733 x103
>
> -Original Message-
> From: Agha Mehdi [mailto:aghaime...@gmail.com]
> Sent: Friday, August 21, 2009 11:22 AM
> To: cf-talk
> Subject: Coldfusion + Flex
>
>
> What is the most common and best IDE people are using for Coldfusion 
> and Flex combined?
>
>
>
>
> 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325593
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion + Flex

2009-08-21 Thread Agha Mehdi

I have to pay for FB and than run it as a plugin for Eclipse. I don't like
that approach. I'd rather use FB if I pay for it. Especially when CFBuilder
is coming out and though, I haven't looked at the Beta but I'm hoping that
it would be good enough for Flex.

On Fri, Aug 21, 2009 at 9:29 AM, Jake Churchill  wrote:

>
> You can use Eclipse with a CFEclipse and FlexBuilder plugins.  Personally I
> use Flexbuilder standalone for Flex and CFEclipse separately.
>
> Jake Churchill
> CF Webtools
> 11204 Davenport, Ste. 100
> Omaha, NE  68154
> http://www.cfwebtools.com
> 402-408-3733 x103
>
> -Original Message-
> From: Agha Mehdi [mailto:aghaime...@gmail.com]
> Sent: Friday, August 21, 2009 11:22 AM
> To: cf-talk
> Subject: Coldfusion + Flex
>
>
> What is the most common and best IDE people are using for Coldfusion and
> Flex combined?
>
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325592
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Coldfusion + Flex

2009-08-21 Thread Jake Churchill

You can use Eclipse with a CFEclipse and FlexBuilder plugins.  Personally I
use Flexbuilder standalone for Flex and CFEclipse separately.

Jake Churchill
CF Webtools
11204 Davenport, Ste. 100
Omaha, NE  68154
http://www.cfwebtools.com
402-408-3733 x103

-Original Message-
From: Agha Mehdi [mailto:aghaime...@gmail.com] 
Sent: Friday, August 21, 2009 11:22 AM
To: cf-talk
Subject: Coldfusion + Flex


What is the most common and best IDE people are using for Coldfusion and
Flex combined?




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325591
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion + Flex

2009-08-21 Thread Barney Boisvert

For the officially released products, FlexBuilder and CFEclipse (on
Eclipse) or IntelliJ's counterparts.  If you don't mind beta,
FlashBuilder and CFBuilder (on Eclipse).  I use the first pair
personally.

cheers,
barneyb

On Fri, Aug 21, 2009 at 9:22 AM, Agha Mehdi wrote:
>
> What is the most common and best IDE people are using for Coldfusion and
> Flex combined?
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325590
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion + Flex

2009-08-21 Thread Will Swain

Combined - eclipse with cfeclipse plugin and flex builder plugin, at a
guess.



-Original Message-
From: Agha Mehdi [mailto:aghaime...@gmail.com] 
Sent: 21 August 2009 17:22
To: cf-talk
Subject: Coldfusion + Flex


What is the most common and best IDE people are using for Coldfusion and
Flex combined?




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325589
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion + Flex

2009-08-21 Thread Agha Mehdi

What is the most common and best IDE people are using for Coldfusion and
Flex combined?


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325588
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simultaneous Web Service Requests From Same Template

2009-08-21 Thread Agha Mehdi

I'd first try to call a WS method that returns all the rooms inventory (if
one exists). Also, it might be better to schedule the inventory check. that
will depend on how frequently the inventory changes and how important it is
to show real time inventory. I'd even run the schedule task every 2-3
minutes and grab all the inventory and store it in my db. that way, your
site visitors won't have to wait 15+ sec (which is a lot in web world)

On Fri, Aug 21, 2009 at 7:34 AM, Rick Root wrote:

>
> On Fri, Aug 21, 2009 at 10:13 AM, Jason Neidert
> wrote:
> >
> > Total execution time can be around 15+ seconds for the page to retrieve
> > inventory for all rooms before displaying available ones.
> >
> > Thoughts??
>
> Sounds like it might be a job for CFTHREAD  Then the request can
> run all web services requests simultaneously then join back together
> after all 7 have completed.
>
> --
> Rick Root
> CFFM - Open Source Coldfusion File Manager
> http://www.opensourcecf.com/cffm
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325587
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simultaneous Web Service Requests From Same Template

2009-08-21 Thread Rick Root

On Fri, Aug 21, 2009 at 10:13 AM, Jason Neidert wrote:
>
> Total execution time can be around 15+ seconds for the page to retrieve
> inventory for all rooms before displaying available ones.
>
> Thoughts??

Sounds like it might be a job for CFTHREAD  Then the request can
run all web services requests simultaneously then join back together
after all 7 have completed.

-- 
Rick Root
CFFM - Open Source Coldfusion File Manager
http://www.opensourcecf.com/cffm

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325586
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


re: Simultaneous Web Service Requests From Same Template

2009-08-21 Thread Jason Fisher

Depends on the web service, I would guess.  Does its API allow you to do a 
search that pulls back all inventory, across the various room types?  Then 
you could iterate over a single collection within the room type loop on 
your server, instead of having to make the round-trip to their server each 
time ...
 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325585
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Simultaneous Web Service Requests From Same Template

2009-08-21 Thread Jason Neidert

I have an app I am building that hits a web service and returns lodging
inventory.

 

Sometimes there can be as many as 7 room types in a search result.

 

That means it calls the web service 7 times and returns the inventory data
each time.

 

I loop through the 7 room types on the server side and send the room type
and arrival/departure dates to the web service.

 

Is there a way to hit that web service concurrently and store the results in
array or something as they come in?

 

Visual example:

 

Room #1 --- hits web service - returns dataset - 1-3 seconds response

 

Next-Room #2 --- hits web service - returns dataset- 1-3 seconds response

 

Next-Room #3 --- hits web service - returns dataset- 1-3 seconds response

 

And so on...

 

Total execution time can be around 15+ seconds for the page to retrieve
inventory for all rooms before displaying available ones.

 

Thoughts??

 

Jason Neidert
_

  steelFusion_emailFooter

jason.neid...@steelfusion.com

p: 715.302.4495

f: 715.842.4907

 

 




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325584
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion 8 Installation Problems

2009-08-21 Thread Al Musella, DPM

Look in the services applet and make sure all of the cold fusion 
services are there and running..  Check windows event log



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325583
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion 8 Installation Problems

2009-08-21 Thread Dan Baughman

First thing to try:
Use a browser that will actually show you the error message so we can
actually help you figure out what the problem is.  Nothing against IE here,
but when the server returns an error code IE just throws up it's garbage
error page instead of showing you the message the server returned.

Next you may consider changing coldfusion to stand alone mode, where it
listens on port 8500 without having to interface with IIS.

Let me know what the error is and I'll let you know what I think is up.

Dan
On Fri, Aug 21, 2009 at 6:02 AM, Kevin Roche wrote:

>
> Try a reboot after the fail, then go back to the page that failed. Worked
> for me on Monday.
>
> Kevin
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325582
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion 8 Installation Problems

2009-08-21 Thread Kevin Roche

Try a reboot after the fail, then go back to the page that failed. Worked for 
me on Monday.

Kevin 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325581
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ColdFusion 8 Installation Problems

2009-08-21 Thread Mark Kolaric

Hi,

I've been trying to set up a web server using ColdFusion 8.0.1 and IIS.
The machine it's installed on is Windows Server 2003 R2 Standard x86, set up as 
an application server only. It's a fresh install, nothing else done to it, IIS 
is as "out of the box" as it comes. Only changes are full Windows updates.

ColdFusion runs through it's install and the install log reports all files as 
successful with no warnings, non fatal errors or fatal errors. I am installing 
CF with all options except for LiveCycle Data Serives ES.

HOWEVER - Once the install finishes and IE fires up to run the configuration 
wizard (http://127.0.0.1/CFIDE/administrator/index.cfm), I get a 'Internet 
Explorer cannot display this webpage' error. This happens no matter wether I 
use 127.0.0.1, localhost or the machine IP, or add port 8500 to the address.

I do note the following is wrong - 
- Both ODBC services were not installed even though it was specified during the 
installation.
- There is no cfdocs folder, again specified to be installed during the 
installation.
- If I install CF by entering the serial numbers (it is an upgrade licence from 
MX 7 to 8), I am not prompted during the install to specify what kind of server 
configuration I would like. Id does propmpt me to choose if I select 30-day 
trial or Developer edition. This might be normal, I'm not sure.

I have uninstalled and reinstalled ColdFusion more times than I'd like to 
remember, as well as removing & reconfiguring the server as an application 
server.
I have run through the "Configuring the Web Server" troubleshooting guide in 
Adobe Online Help and verified all the items in there are installed correctly. 
All the extension mappings and IIS configs are correct from what I can see.

There are no error messages in the system event logs.
This occurs wether I install Coldfusion on the same drive as the inetpub folder 
or if the ColdFusion and inetpub are on different drive, etc.
The other ColdFusion services are running normally, as is the Default Website 
and Default AppPool in IIS. I am able to browse the Default Website otherwise.

Sorry about the lengthy 1st post, I'm just trying to be detailed :)

Can someone help pls?
Mark. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325580
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4