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

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

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

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

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

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

Re: Simultaneous Web Service Requests From Same Template

2009-08-21 Thread Rick Root
On Fri, Aug 21, 2009 at 10:13 AM, Jason Neidertja...@steelfusion.com 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

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

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:

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

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 Mehdiaghaime...@gmail.com wrote:

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

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,

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

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

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

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 a tag around the newbridgecollege.edu link. Can anyone help me with this? Scott * !DOCTYPE HTML PUBLIC -//IETF//DTD HTML//EN html head meta

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

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

RE: How to Make Layers Visible with OnMouseOver

2009-08-21 Thread Adrian Lynch
Way too much code to look at! But using jQuery: style type=text/css .hidden { display: none; } /style script type=text/javascript src=/path/to/jquery-1.3.2.min.js/script script type=text/javascript $(function() {

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?

Re: simple SQL Question

2009-08-21 Thread Discover Antartica
*= is actually used at my work place.  Thanks for the answer. From: Adrian Lynch cont...@adrianlynch.co.uk To: cf-talk cf-talk@houseoffusion.com Sent: Friday, August 21, 2009 5:59:17 PM Subject: RE: simple SQL Question That is a left outer join. It's mixing

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.