Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Thanks, Rey.   I wish I'd gotten myself turned on to jQuery before  
I'd written about half the app using JSMX and custom Javascript.   :-(

I'm gradually shifting all of the javascript over to use jQuery as I  
continue to touch the files and scripts.

Regards,

Jon

On Apr 9, 2007, at 10:14 PM, Rey Bango wrote:

> Hey Jon,
>
> Glad to see another CF site using jQuery! Very cool. I'm going to add
> your site to the jQuery site list.
>
> Rey...
>
> Jon Clausen wrote:
>> Sorry about being a bit off topic, but early this morning (or late
>> last night if you will)  I "turned on the lights" and opened up the
>> public Beta of a new CF (MG:U) App I've been working on in my spare
>> time called Spotstor  ( http://spotstor.com ) .
>>
>> If there's any CF'ers who use  GPS  or geographic  coordinates
>> occasionally, you are welcome to beta test and I would certainly
>> value your feedback - especially as it relates to bugs or security
>> holes.   The first phase of the test will cut off at 100 users and
>> then I will incrementally open it to more as any gremlins get chased
>> away.
>>
>> The basic features of the application are, and always will be, free
>> to the general public.  They include:
>>
>> 1) The ability to upload, convert, and export from a variety of GPS
>> data formats(currently 43 supported) from GPS manufacturer formats to
>> varying formats like CSV, Google Earth's KML or even VCard .
>> 2) The ability to tag, organize, document, search, comment and create
>> export groups for waypoints.
>> 3) The ability to create buddy lists and share individual waypoints
>> with designated members or, better yet, make waypoints public for all
>> users.
>> 4) Auto-tagging capabilities during upload which cross reference the
>> coordinates of each-waypoint being uploaded against a master table of
>> (currently over 21,000) areas to allow for greater commonality in tag
>> names.
>>
>> A full API with documentation for use in external applications is
>> forthcoming and is already in use  by some parts of the application.
>>
>> Now back to your regularly scheduled programming. :-)
>>
>>
>>
>>
>>
>>
>>
>>
>>
>
> 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274923
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Paul,
Thanks again for the feedback.
See my replies inline.

Jon

On Apr 9, 2007, at 11:36 PM, Paul Hastings wrote:
>
> ok, but maybe you could add this as a note somewhere--it's the  
> first thing i
> wondered about. also i forgot to ask what the default units are?  
> lat/long?

Good point.  I'll make sure that's defined somewhere for the user.   
Yes, default units are lat/lon.

>>   Dealing with projection, as an option, is
>> beyond the scope of the average user.
>
> well i'm an "average" user & i have lots of GPS data in several  
> different coord
> systems ;-)

Good point. I guess I'm projecting my own world-view a bit there.   
I'll have to noodle on that.

>> That being said, I'm certainly open to looking at it again if it
>> becomes a feature that users want to see.
>
> if you do, esri's public webservice (free) has functions to do  
> coord transforms.
> they work well.

I actually looked at using ESRI's public services (and Yahoo as well)  
as an option for the maps and some data services, but decided to go  
with GPSBabel & Google Maps on the basis of raw speed.  I'll  
definitely think about that as an option for dealing with  
projections.  Thanks!

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274922
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Poprety listing application

2007-04-09 Thread Mike Little
that should be 'property' by the way !! doh!

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274921
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Poprety listing application

2007-04-09 Thread Mike | NZSolutions Ltd
Hi guys,

I have an application where a member may list a property for a set period of
time.

The pricing options for a listing are set in...

CREATE TABLE [dbo].[listing_rates] (
  [listing_rate_id]int IDENTITY(1, 1) NOT NULL,
  [listing_category_id]int NOT NULL,
  [listing_price]decimal(9, 2) NOT NULL,
  [listing_period]int NOT NULL,
  [order_key]int NULL,
  [caption]varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
)

Listing_period is in days.

For each listing, I wish to have a relating record in a listing_receipt
table...

CREATE TABLE [dbo].[listing_receipt] (
[listing_receipt_id]int IDENTITY(1, 1) NOT NULL,
[listing_id]int NOT NULL,
[dCreated]datetime NOT NULL,
[dExpiry]datetime NOT NULL,
[listing_rate_id]int NOT NULL,
[listing_price]decimal(9, 2) NOT NULL,
)

The idea being, that a member may renew/extend a listing - and a new record
would be inserted in the listing_receipt table with an appropriate dExpiry
date?

Does this make sense? Can anyone see any potential problems with this
design?

Regards
Mike



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274920
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Paul Hastings
Jon Clausen wrote:
> Currently it's only single points ( walk before you fly kind of  
> thing ) at the moment.WGS84 is the only projection supported at  
> the moment, for the sake of consistency. That's what Google is  

ok, but maybe you could add this as a note somewhere--it's the first thing i 
wondered about. also i forgot to ask what the default units are? lat/long?

> serving by default for the maps and it's the out-of-the-box default   
> for most GPS units.   Dealing with projection, as an option, is  
> beyond the scope of the average user.

well i'm an "average" user & i have lots of GPS data in several different coord 
systems ;-)

> That being said, I'm certainly open to looking at it again if it  
> becomes a feature that users want to see.

if you do, esri's public webservice (free) has functions to do coord 
transforms. 
they work well.

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274919
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Paul,

Currently it's only single points ( walk before you fly kind of  
thing ) at the moment.WGS84 is the only projection supported at  
the moment, for the sake of consistency. That's what Google is  
serving by default for the maps and it's the out-of-the-box default   
for most GPS units.   Dealing with projection, as an option, is  
beyond the scope of the average user.

That being said, I'm certainly open to looking at it again if it  
becomes a feature that users want to see.

GPX ( http://www.topografix.com/gpx.asp ) is the native type because  
it's XML schema is fairly rich and well adopted.  It's also the XML  
that is served by default in the API, though my plan is to add  
several format options - NMEA sentences and KML at the very least.

I see route (line)  information being added in the near future and  
possibly GPS track data, though that is trickier between the  
different GPS mfr's.

Jon

On Apr 9, 2007, at 9:49 PM, Paul Hastings wrote:

> Jon Clausen wrote:
>> 1) The ability to upload, convert, and export from a variety of GPS
>> data formats(currently 43 supported) from GPS manufacturer formats to
>> varying formats like CSV, Google Earth's KML or even VCard .
>
> what about coordinate systems & datums? what's your standard,  
> WGS84? can you do
> coord transforms? just single points?
>



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274918
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Small Question: any vs viod

2007-04-09 Thread John Allen
Unimportant but i was curious if returntype="any" was any "faster" than
returntype="void"? Is "void" typed checked at run time?

I googled and found nothing (could be its been a long day), just a curious
question.

Thanks,
John Allen

and YOU ALL RULE!!!
I LOVE COLDFUSION!
SHOUT OUT TO TRANSFER | COLDSPRING | MARK DREW (you are the coolest!!! I
love you man!) | and MORE GOODER MODELGULE


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274917
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Rey Bango
Hey Jon,

Glad to see another CF site using jQuery! Very cool. I'm going to add 
your site to the jQuery site list.

Rey...

Jon Clausen wrote:
> Sorry about being a bit off topic, but early this morning (or late  
> last night if you will)  I "turned on the lights" and opened up the  
> public Beta of a new CF (MG:U) App I've been working on in my spare  
> time called Spotstor  ( http://spotstor.com ) .
> 
> If there's any CF'ers who use  GPS  or geographic  coordinates  
> occasionally, you are welcome to beta test and I would certainly  
> value your feedback - especially as it relates to bugs or security  
> holes.   The first phase of the test will cut off at 100 users and  
> then I will incrementally open it to more as any gremlins get chased  
> away.
> 
> The basic features of the application are, and always will be, free  
> to the general public.  They include:
> 
> 1) The ability to upload, convert, and export from a variety of GPS  
> data formats(currently 43 supported) from GPS manufacturer formats to  
> varying formats like CSV, Google Earth's KML or even VCard .
> 2) The ability to tag, organize, document, search, comment and create  
> export groups for waypoints.
> 3) The ability to create buddy lists and share individual waypoints  
> with designated members or, better yet, make waypoints public for all  
> users.
> 4) Auto-tagging capabilities during upload which cross reference the  
> coordinates of each-waypoint being uploaded against a master table of  
> (currently over 21,000) areas to allow for greater commonality in tag  
> names.
> 
> A full API with documentation for use in external applications is  
> forthcoming and is already in use  by some parts of the application.
> 
> Now back to your regularly scheduled programming. :-)
> 
> 
> 
> 
> 
> 
> 
> 
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274916
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfmx6.1 fckeditor

2007-04-09 Thread joe velez
hi all

quick question regarding fckeditor

i have it working, but im playing w/ the image paths and can't seem to figure 
out where the extra 'Image' path is coming from.

lets say i want images in the /myimages/ directory. fck seems to change the 
link to /myimages/Image/imagename.ext -- anyone know where i fix this?

thanks

 joe velez

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274915
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Hostmysite down...

2007-04-09 Thread Dave l
Some of that i agree with, like it should be better suited for shared access. 
But then again I have a crap load of sites running on my vps and there is no 
problems.

I hate to say this to you but the only problems I seem to have are with your 
cart timing out constantly, I get those all the time 5, 10, 15, 20 times a day 
and thats kind of the same thing isnt it? But im not complaining about your 
code and setup, I just take it how it is.

They do try and track down those on shared servers that are causing problems, I 
have been asked countless times if I can fix the code on the cart that times 
out (when it was on shared server) and I have been asked to remove large 
cfdocument tasks and I know a few people there really well and I generally get 
the inside scope and its happening all the time.

as far as it giving cfm a bad name, well then.. I visit plenty of php and .net 
sites all day long that are constantly down and its no surprise  that they all 
are on shared servers.

People on here always have said that if you have problems with your hosting 
when you are doing it cheaply then go with your own server and I used to balk 
at that but now I understand what they mean.

It "should" and probably "could" run better than it does but it doesnt help you 
right now and if you go somewhere else you will end up with same problems. Its 
kinda like with the cart errors, I can live with them but it gets old and I 
have seen that its a common problem that you are addressing in the future but 
it doesnt help me now. And i am not knocking your cart cause its a great cart 
but its parallel to your argument here.

Personally, I was getting frustrated as well with the sites being down and I 
did something about it, while it was more $$, after putting a dozen or so 
client sites on it, it pays for itself and I pocket the rest, plus I get to 
host all my sites for free, no reason not to do it.



> > you gotta remember cfm wasnt made to work as a shared server.
> 
> Maybe not originally, but again, that's no excuse for it still not 
> working properly as a shared server. It will have a hard time being 
> successful long term if it is not. 
> 
> 
> > and i wouldnt blame hms, blame some bad code from someone on the 
> > server (aka will).
> 
> Again...that's just an easy excuse. First, it shouldn't be so easy for 
> someone to bring down the whole server. Second, if someone is 
> routinely doing so, then HMS should track them down. Most people 
> running sites don't *want* to bring the server down...but they are 
> often not able to make that determination themselves that their site 
> is the problem. 
> 
> 
> > bottom line is that if you are on a shared server you are at the 
> mercy 
> > of other peoples code that can bring the server down, HMS has gotten 
> 
> > pretty strict about bad code on the shared servers but still... If 
> you 
> > want better uptime then get your own vps at least. 
> 
> Look, I can accept that on a shared server, my site may once in awhile 
> go down. I understand that. But when it's a daily thing...that's a 
> problem, and one that should be addressed. It gives ColdFusion a bad 
> name if it becomes typical to visit a CF site and get a jrun error 
> instead. 
> 
> 
> --- Mary Jo
> 
> 
> 
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274914
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Paul Hastings
Jon Clausen wrote:
> 1) The ability to upload, convert, and export from a variety of GPS  
> data formats(currently 43 supported) from GPS manufacturer formats to  
> varying formats like CSV, Google Earth's KML or even VCard .

what about coordinate systems & datums? what's your standard, WGS84? can you do 
coord transforms? just single points?

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274913
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: file do more than one scheduled task ??

2007-04-09 Thread Seamus Campbell
>All the cfschedule feature does is hit your page with HTTP. So you can
>easily have a task also do a few CFHTTPs.
>

Thanks Ray - I'll try that.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274912
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread John Allen
wow, thats super cool.
THANKS!
John Allen

On 4/9/07, Peterson, Chris <[EMAIL PROTECTED]> wrote:
>
> I think you probably need to run the batch file in the  root>\bin\connectors\ directory to re-install coldlfusion on a global
> level. You want the file called iis_connector.bat, and you may want to
> run remove_all_connectors.bat first.  This should configure each site
> you have to properly run under CFMX7.  You would be able to re-run this
> same script form the CFMX6 folder if you needed to revert.
>
> Chris Peterson
>
> -Original Message-
> From: Greg Griffin [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 3:14 PM
> To: CF-Talk
> Subject: Re: CF7 Upgrade & IIS6 Virtual Directory
>
> Okay - I've deleted and recreated the virtual directory making sure that
> it is not configured as an application.
>
> The main login page will now parse when I turn off the CF6 service, but
> it does not move to the action page when I hit submit.  I just sits
> there.
>
> Urghh...
>
> ~ Greg
>
> >> So, what is making CF6 hold onto this virtual directory?  How can I
> >> get CF7 to parse it instead?
> >
> >The easiest way to do this, as Russ suggested, is to simply delete and
> >recreate the virtual directory. Otherwise, you could ensure that the
> >directory is in fact a virtual directory, not a virtual application -
> >when you view the properties dialog, it should either be part of the
> >parent application (a virtual directory) or a separate application.
> >Since your site is running with CF 7, you'd want your directory to be
> >part of the parent application.
> >
> >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!
> >
> >This email has been processed by SmoothZap - www.smoothwall.net
>
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274911
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Scorpio Prerelease Program

2007-04-09 Thread Ryan, Terrence
I doubt this violates NDA. But I'll still speak ambiguously just in case. 

Something I heard, from someone at Adobe, is that the Beta program queues up 
requests per Alpha/Beta release. So, if you made it before Adobe sent out the 
last batch of accounts, then you got in.  If not, you have to wait until the 
next release.

Releases occur once every few months or so I imagine, because I can only 
speculate


  

Terrence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology   
E-mail:     [EMAIL PROTECTED]



~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274910
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need help with grouped query and inner

2007-04-09 Thread Will Tomlinson
Thanks Ali! I'm using mySQL. Adding a 
did the trick.

Thanks,
Will

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274909
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: dbase III datasource in MX7

2007-04-09 Thread Paul Henderson
Scrap this I figured it out. Thanks.

-Original Message-
From: Paul Henderson [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 4:34 PM
To: CF-Talk
Subject: dbase III datasource in MX7

I recently upgraded one server from cf5 to mx7 but since doing so I can't
seem to figure out how to setup a dbase III datasource. I don't have the
option of migrating the data at all. Any suggestions?

 

Thanks





~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274908
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Server and CFEclipse

2007-04-09 Thread Robertson-Ravo, Neil (RX)
Seperate, ColdFusion is a server, CFEclipse is a plugin for the Eclipse IDE.



 
"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, 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: Peter Donahue
To: CF-Talk
Sent: Mon Apr 09 20:56:58 2007
Subject: CF Server and CFEclipse

Hello again Charlie and listers,

If I install CFEclipse is the CF Server automatically installed or do I
need to do that separately? Again thanks for the enlightenment.

Peter Donahue

- Original Message - 
From: "Charlie Griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, April 09, 2007 1:54 PM
Subject: Re: Coldfusion Installation, is local server needed?


ColdFusion has a built in webserver that runs (by default) on port
8500.  You can use this for your local/development work.

So while you don't -have- to install a separate web server, I like to
keep my dev and prod environments as similar as possible... so I
generally run the same web server locally as the web server running on
the prod machine.

but short answer.. no, during the local CF install just choose to use
CF's built in webserver


On 4/9/07, Peter Donahue <[EMAIL PROTECTED]> wrote:
> Good afternoon everyone,
>
> I use Studio MX which includes Dreamweaver and Coldfusion for creating
> Web pages. I'm wondering if in order to install Coldfusion on my local
> machine if this is an add-on for Studio MX or Eclipse in the case of
> CFEclipse.
>
> My impression is that one first needs to install server software such
as
> IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
> machine used for site development. I currently create my pages locally and
> upload them to a remote server where they can be tested in the background
> prior to making them available to the public. Again my question is
assuming
> I develop my pages in the manner described above can I install CF locally,
> or do I first need to install server software before installing CF? I hope
> this question makes sense. I received a version with Studio MX, but wasn't
> sure if I could have installed it when I installed Studio MX, or if I
would
> first need to install IIS or another server program.
>
> Peter Donahue
>
>
>





~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274907
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


dbase III datasource in MX7

2007-04-09 Thread Paul Henderson
I recently upgraded one server from cf5 to mx7 but since doing so I can't
seem to figure out how to setup a dbase III datasource. I don't have the
option of migrating the data at all. Any suggestions?

 

Thanks



~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274906
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Christopher Jordan
+1 for jQuery in general. :o)

Cheers,
Chris

Jon Clausen wrote:
> Jerry,
> 
> jQuery's interface plugin is very capable of doing that:
> 
> http://docs.jquery.com/Plugins:Interface
> 
> HTH,
> Jon
> 
> On Apr 9, 2007, at 3:13 PM, Jerry Johnson wrote:
> 
>> Is there a cf-compatible javascript library that can handle the
>> drag-and-drop window areas like those found on google.com or
>> pageflakes.com?
>>
>> Pageflakes does it with the .net Atlas widgets.
>>
>> http://www.google.com/ig?hl=en&ned=us&tab=nw&q=
>> http://www.pageflakes.com/
>>
>> I'd love to play with something like this, but am reluctant to sink
>> the hours at the moment into building it myself.
>>
>> thanks for any info,
>> Jerry Johnson
>>
>>
> 
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274905
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF Server and CFEclipse

2007-04-09 Thread Dave Watts
> If I install CFEclipse is the CF Server automatically 
> installed or do I need to do that separately?

CF will need to be installed separately.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274904
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 Installation, is local server needed?

2007-04-09 Thread Dave Watts
> Do you know if CF7 will run under Windows XP Home 
> Edition?

Yes, it will. If you want to use an external web server, you'll need Apache,
since IIS isn't available with XP Home. But again, you don't need an
external web server.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274903
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jerry Johnson
Thanks, Jon,

That is exactly what I was hoping for.

I realize that a given javascript implementation is not always tied
directly to the application server technology, but there are always
favorites and people who've already done it I am hoping to piggyback
onto.

On 4/9/07, Jon Clausen <[EMAIL PROTECTED]> wrote:
> Jerry,
>
> jQuery's interface plugin is very capable of doing that:
>
> http://docs.jquery.com/Plugins:Interface

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274902
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Server and CFEclipse

2007-04-09 Thread Peter Donahue
Hello again Charlie and listers,

If I install CFEclipse is the CF Server automatically installed or do I
need to do that separately? Again thanks for the enlightenment.

Peter Donahue

- Original Message - 
From: "Charlie Griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, April 09, 2007 1:54 PM
Subject: Re: Coldfusion Installation, is local server needed?


ColdFusion has a built in webserver that runs (by default) on port
8500.  You can use this for your local/development work.

So while you don't -have- to install a separate web server, I like to
keep my dev and prod environments as similar as possible... so I
generally run the same web server locally as the web server running on
the prod machine.

but short answer.. no, during the local CF install just choose to use
CF's built in webserver


On 4/9/07, Peter Donahue <[EMAIL PROTECTED]> wrote:
> Good afternoon everyone,
>
> I use Studio MX which includes Dreamweaver and Coldfusion for creating
> Web pages. I'm wondering if in order to install Coldfusion on my local
> machine if this is an add-on for Studio MX or Eclipse in the case of
> CFEclipse.
>
> My impression is that one first needs to install server software such
as
> IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
> machine used for site development. I currently create my pages locally and
> upload them to a remote server where they can be tested in the background
> prior to making them available to the public. Again my question is
assuming
> I develop my pages in the manner described above can I install CF locally,
> or do I first need to install server software before installing CF? I hope
> this question makes sense. I received a version with Studio MX, but wasn't
> sure if I could have installed it when I installed Studio MX, or if I
would
> first need to install IIS or another server program.
>
> Peter Donahue
>
>
>



~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274901
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPRY Help

2007-04-09 Thread Raymond Camden
Did you try xmlFormat?

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> Not sure what it would be.
>
>
> -Original Message-
> From: Bobby Schuchert [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 3:22 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> Have you tried changing the encoding?
>
>
>
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274900
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 Installation, is local server needed?

2007-04-09 Thread Peter Donahue
Hello Charlie and listers,

Do you know if CF7 will run under Windows XP Home Edition? Thanks for
the enlightenment.

Peter Donahue

- Original Message - 
From: "Charlie Griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, April 09, 2007 1:54 PM
Subject: Re: Coldfusion Installation, is local server needed?


ColdFusion has a built in webserver that runs (by default) on port
8500.  You can use this for your local/development work.

So while you don't -have- to install a separate web server, I like to
keep my dev and prod environments as similar as possible... so I
generally run the same web server locally as the web server running on
the prod machine.

but short answer.. no, during the local CF install just choose to use
CF's built in webserver


On 4/9/07, Peter Donahue <[EMAIL PROTECTED]> wrote:
> Good afternoon everyone,
>
> I use Studio MX which includes Dreamweaver and Coldfusion for creating
> Web pages. I'm wondering if in order to install Coldfusion on my local
> machine if this is an add-on for Studio MX or Eclipse in the case of
> CFEclipse.
>
> My impression is that one first needs to install server software such
as
> IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
> machine used for site development. I currently create my pages locally and
> upload them to a remote server where they can be tested in the background
> prior to making them available to the public. Again my question is
assuming
> I develop my pages in the manner described above can I install CF locally,
> or do I first need to install server software before installing CF? I hope
> this question makes sense. I received a version with Studio MX, but wasn't
> sure if I could have installed it when I installed Studio MX, or if I
would
> first need to install IIS or another server program.
>
> Peter Donahue
>
>
>



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274899
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scorpio Prerelease Program

2007-04-09 Thread Matt Robertson
first rule about beta club is you don't talk about beta club.

:-)

-- 
[EMAIL PROTECTED]
Janitor, The Robertson Team
mysecretbase.com

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274898
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scorpio Prerelease Program

2007-04-09 Thread Jochem van Dieten
John Sterrett wrote:
> Does anyone know if adobe shutdown the Scorpio beta testing?  I know it might 
> be late in the game but I would love to give it a run on our dev boxes.  I 
> signed up a few weeks ago and have not received a reply via email.

Many people have not heard anything back. I would not take that as a 
sign that the beta has been shut down, but as a sign that the current 
beta is full and new people will be allowed in later.

Jochem

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274897
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
Are you currently using UTF-8? 

This is dynamic xml right?


>Not sure what it would be. 
>
>
>-Original Message-
>From: Bobby Schuchert [mailto:[EMAIL PROTECTED] 
>Sent: Monday, April 09, 2007 3:22 PM
>To: CF-Talk
>Subject: Re: SPRY Help
>
>Have you tried changing the encoding?

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274896
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


gethttprequestdata question

2007-04-09 Thread Jerry Barnes
I am working on a project w/ several other programmers.  Most of our
forms use a component that requires gethttprequestdata to be passed in
as an argument.  This is causing a little problem for me because I
have some post form processing which needs to be done to the data
before it is passed to this component.  Is there anyway to modify the
content part of gethttprequestdata so that my changes can be passed to
the component?  From my experiments and google searches, I tend to say
no.  If this is the case, I'll have to convince my fellow programmers
to change the component (should be passing form data in IMO), but I
would rather avoid this if I can. Any help will be appreciated.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274895
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPRY Help

2007-04-09 Thread Chad McCue
Not sure what it would be. 


-Original Message-
From: Bobby Schuchert [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 3:22 PM
To: CF-Talk
Subject: Re: SPRY Help

Have you tried changing the encoding?



~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274894
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
Have you tried changing the encoding?

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274893
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Peterson, Chris
I think you probably need to run the batch file in the \bin\connectors\ directory to re-install coldlfusion on a global
level. You want the file called iis_connector.bat, and you may want to
run remove_all_connectors.bat first.  This should configure each site
you have to properly run under CFMX7.  You would be able to re-run this
same script form the CFMX6 folder if you needed to revert.

Chris Peterson

-Original Message-
From: Greg Griffin [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 3:14 PM
To: CF-Talk
Subject: Re: CF7 Upgrade & IIS6 Virtual Directory

Okay - I've deleted and recreated the virtual directory making sure that
it is not configured as an application.

The main login page will now parse when I turn off the CF6 service, but
it does not move to the action page when I hit submit.  I just sits
there.

Urghh...

~ Greg 

>> So, what is making CF6 hold onto this virtual directory?  How can I 
>> get CF7 to parse it instead?
>
>The easiest way to do this, as Russ suggested, is to simply delete and 
>recreate the virtual directory. Otherwise, you could ensure that the 
>directory is in fact a virtual directory, not a virtual application - 
>when you view the properties dialog, it should either be part of the 
>parent application (a virtual directory) or a separate application. 
>Since your site is running with CF 7, you'd want your directory to be 
>part of the parent application.
>
>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!
>
>This email has been processed by SmoothZap - www.smoothwall.net



~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274892
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Scorpio Prerelease Program

2007-04-09 Thread John Sterrett
Does anyone know if adobe shutdown the Scorpio beta testing?  I know it might 
be late in the game but I would love to give it a run on our dev boxes.  I 
signed up a few weeks ago and have not received a reply via email.

Regards,
John Sterrett
Sr. Software Developer
55827 National Road
Bridgeport, OH 43912
740-633-0746
[EMAIL PROTECTED]
www.highschoolsports.net
www.schedulestar.com



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274891
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 Installation, is local server needed?

2007-04-09 Thread Russ
Peter, 

If you are developing on an XP machine locally and will be working on more
then 1 site, I suggest installing Apache locally and creating a virtual site
for each of the sites that you will be working on.  This way you can more
closely replicate the production environment, even if the production
environment is running IIS.  

You can also use the build in web server, but I've never used it myself, as
I found it to be very hard to configure.  

You can also use IIS as the webserver, but you will be limited to a single
site, and will either have to use a third party utility that lets you switch
configurations, or use subfolders to develop multiple sites.  This, of
course, means that it will be harder to match the production environment. 

BlueDragon is an alternate CF server, and you would still need a separate
webserver with it, I believe.  There are also some incompatibilities between
their support of CF and Macromedia's, so if your production environment is
using Macromedia CF, you would want to use the same version on your
development environment.  

Russ 

> -Original Message-
> From: Peter Donahue [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 2:47 PM
> To: CF-Talk
> Subject: Coldfusion Installation, is local server needed?
> 
> Good afternoon everyone,
> 
> I use Studio MX which includes Dreamweaver and Coldfusion for creating
> Web pages. I'm wondering if in order to install Coldfusion on my local
> machine if this is an add-on for Studio MX or Eclipse in the case of
> CFEclipse.
> 
> My impression is that one first needs to install server software such
> as
> IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
> machine used for site development. I currently create my pages locally and
> upload them to a remote server where they can be tested in the background
> prior to making them available to the public. Again my question is
> assuming
> I develop my pages in the manner described above can I install CF locally,
> or do I first need to install server software before installing CF? I hope
> this question makes sense. I received a version with Studio MX, but wasn't
> sure if I could have installed it when I installed Studio MX, or if I
> would
> first need to install IIS or another server program.
> 
> Peter Donahue
> 
> 
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPRY Help

2007-04-09 Thread Chad McCue
So the issue is with French symbols in my database that is screwing up
my XML file. What is the best way to display French symbols in XML then
outputting it with SPRY without having to find and replace all symbols? 



-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 3:10 PM
To: CF-Talk
Subject: Re: SPRY Help

http://ray.camdenfamily.com/index.cfm/2007/2/23/Spry-and-Server-Side-Pag
ing

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> Could you send me a link to that blog entry.
>
>
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 2:47 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> I can't imagine why / would be invalid, but I'd trust Firefox.
>
> So then maybe it is simply too big. If you switch to 100 rows, does it

> work?
>
> To be honest, 2k+ rows is a bit much. You may want to do server side 
> paging. I had an article on that on my blog a few weeks back.
>
> On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > I opened my generated 2250 record xml file in IE 6 and it choked on
> > 2/24/2006 0:00 saying the first "/" is a invalid character.
> >
> > I then opened it up in Firefox and it opened fine. Any idea what 
> > would
>
> > cause this?
> >
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: Monday, April 09, 2007 1:49 PM
> > To: CF-Talk
> > Subject: Re: SPRY Help
> >
> > The first thing I always do is view the XML outside of Spry. Firefox

> > is especially useful in showing where XML is bad. One of the common 
> > mistakes is not escaping HTML in returned XML. You can use the 
> > XMLFormat function, but even that isn't enough. XMLFormat has a bug 
> > where it lets "bad" MS Office characters out. Again though - Firefox

> > will notice this and show you the error.
> >
> >
> > On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > > I have a site that creates a XML document when completed the XML 
> > > will have around 2500 entries, right now everything runs fine when

> > > I
>
> > > limit my CFQUERY to 18 max rows, everything is displayed
correctly.
> > > For some
> >
> > > reason when ever I go above 18 say 19 or 20 max rows something 
> > > happens
> >
> > > and the page doesn't load anymore. I put it back to 18 and it
works.
> > >
> > > I looked at the 19 record and I don't see any issues in the XML 
> > > formatting or the data.
> > >
> > > Any ideas?
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
> 



~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274889
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Bobby Schuchert
I found this one earlier while looking for a slushbox:

http://www.indiankey.com/mxajax/index.cfm

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274888
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Bobby Schuchert
I found this one earlier today when looking for a slushbox. 

http://www.indiankey.com/mxajax/index.cfm

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274887
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
Okay - I've deleted and recreated the virtual directory making sure that it is 
not configured as an application.

The main login page will now parse when I turn off the CF6 service, but it does 
not move to the action page when I hit submit.  I just sits there.

Urghh...

~ Greg 

>> So, what is making CF6 hold onto this virtual directory?  How 
>> can I get CF7 to parse it instead?
>
>The easiest way to do this, as Russ suggested, is to simply delete and
>recreate the virtual directory. Otherwise, you could ensure that the
>directory is in fact a virtual directory, not a virtual application - when
>you view the properties dialog, it should either be part of the parent
>application (a virtual directory) or a separate application. Since your site
>is running with CF 7, you'd want your directory to be part of the parent
>application.
>
>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!
>
>This email has been processed by SmoothZap - www.smoothwall.net

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274886
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Robertson-Ravo, Neil (RX)
JS is techincally not compatible with any server side technology as it is a
client side tool.  There are several libs around, script.aculo.us, JQuery is
a popular one with ColdFusion developers but in essense all libs are
compatible, you just have to do the work :-)

 



"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, 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: Jerry Johnson
To: CF-Talk
Sent: Mon Apr 09 20:13:26 2007
Subject: Good cf-compatible javascript library to handle dragable page
sections

Is there a cf-compatible javascript library that can handle the
drag-and-drop window areas like those found on google.com or
pageflakes.com?

Pageflakes does it with the .net Atlas widgets.

http://www.google.com/ig?hl=en&ned=us&tab=nw&q=
http://www.pageflakes.com/

I'd love to play with something like this, but am reluctant to sink
the hours at the moment into building it myself.

thanks for any info,
Jerry Johnson



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274885
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jon Clausen
Jerry,

jQuery's interface plugin is very capable of doing that:

http://docs.jquery.com/Plugins:Interface

HTH,
Jon

On Apr 9, 2007, at 3:13 PM, Jerry Johnson wrote:

> Is there a cf-compatible javascript library that can handle the
> drag-and-drop window areas like those found on google.com or
> pageflakes.com?
>
> Pageflakes does it with the .net Atlas widgets.
>
> http://www.google.com/ig?hl=en&ned=us&tab=nw&q=
> http://www.pageflakes.com/
>
> I'd love to play with something like this, but am reluctant to sink
> the hours at the moment into building it myself.
>
> thanks for any info,
> Jerry Johnson
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274884
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jerry Johnson
Is there a cf-compatible javascript library that can handle the
drag-and-drop window areas like those found on google.com or
pageflakes.com?

Pageflakes does it with the .net Atlas widgets.

http://www.google.com/ig?hl=en&ned=us&tab=nw&q=
http://www.pageflakes.com/

I'd love to play with something like this, but am reluctant to sink
the hours at the moment into building it myself.

thanks for any info,
Jerry Johnson

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274883
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
that should be "after days"

On 4/9/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> I've been struggling with this also.  If I remember correctly, it's a
> problem with the implementation of certs in IIS.  Something about the
> packet size and IIS not wanting to allow a large enough packet size.
> In the end, after day of trying to get it to work correctly, I
> rerouted the uploads through a secondary site.
>
>
> On 4/9/07, Bobby Schuchert <[EMAIL PROTECTED]> wrote:
> > We are using SSL and Client Certificates on an IIS6 box and having trouble 
> > with CFFILE upload. For some reason cffile upload no longer will work for a 
> > file over 50k in size. We can turn off "require client certificates" in IIS 
> > and the upload form works nicely. I even uploaded a 102mb avi file to 
> > verify that it worked. As soon as the certificate requirement is turned on, 
> > it dies. By dies, I mean it shows nothing but a white screen. It doesn't 
> > show an error. The upload form worked fine on our old win2k box even with 
> > SSL and client certs. Adobe posted this http://www.adobe.com/go/8d933f86 
> > but the solution does not work.
> >
> > Does anyone have any ideas? Turning off client certs permanently is not an 
> > option as this is a government requirement.
> >
> > Thanks.
> >
> > 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274882
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
I've been struggling with this also.  If I remember correctly, it's a
problem with the implementation of certs in IIS.  Something about the
packet size and IIS not wanting to allow a large enough packet size.
In the end, after day of trying to get it to work correctly, I
rerouted the uploads through a secondary site.


On 4/9/07, Bobby Schuchert <[EMAIL PROTECTED]> wrote:
> We are using SSL and Client Certificates on an IIS6 box and having trouble 
> with CFFILE upload. For some reason cffile upload no longer will work for a 
> file over 50k in size. We can turn off "require client certificates" in IIS 
> and the upload form works nicely. I even uploaded a 102mb avi file to verify 
> that it worked. As soon as the certificate requirement is turned on, it dies. 
> By dies, I mean it shows nothing but a white screen. It doesn't show an 
> error. The upload form worked fine on our old win2k box even with SSL and 
> client certs. Adobe posted this http://www.adobe.com/go/8d933f86 but the 
> solution does not work.
>
> Does anyone have any ideas? Turning off client certs permanently is not an 
> option as this is a government requirement.
>
> Thanks.
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274881
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SPRY Help

2007-04-09 Thread Raymond Camden
http://ray.camdenfamily.com/index.cfm/2007/2/23/Spry-and-Server-Side-Paging

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> Could you send me a link to that blog entry.
>
>
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 2:47 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> I can't imagine why / would be invalid, but I'd trust Firefox.
>
> So then maybe it is simply too big. If you switch to 100 rows, does it
> work?
>
> To be honest, 2k+ rows is a bit much. You may want to do server side
> paging. I had an article on that on my blog a few weeks back.
>
> On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > I opened my generated 2250 record xml file in IE 6 and it choked on
> > 2/24/2006 0:00 saying the first "/" is a invalid character.
> >
> > I then opened it up in Firefox and it opened fine. Any idea what would
>
> > cause this?
> >
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: Monday, April 09, 2007 1:49 PM
> > To: CF-Talk
> > Subject: Re: SPRY Help
> >
> > The first thing I always do is view the XML outside of Spry. Firefox
> > is especially useful in showing where XML is bad. One of the common
> > mistakes is not escaping HTML in returned XML. You can use the
> > XMLFormat function, but even that isn't enough. XMLFormat has a bug
> > where it lets "bad" MS Office characters out. Again though - Firefox
> > will notice this and show you the error.
> >
> >
> > On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > > I have a site that creates a XML document when completed the XML
> > > will have around 2500 entries, right now everything runs fine when I
>
> > > limit my CFQUERY to 18 max rows, everything is displayed correctly.
> > > For some
> >
> > > reason when ever I go above 18 say 19 or 20 max rows something
> > > happens
> >
> > > and the page doesn't load anymore. I put it back to 18 and it works.
> > >
> > > I looked at the 19 record and I don't see any issues in the XML
> > > formatting or the data.
> > >
> > > Any ideas?
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274880
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
>I have a site that creates a XML document when completed the XML will
>have around 2500 entries, right now everything runs fine when I limit my
>CFQUERY to 18 max rows, everything is displayed correctly. For some
>reason when ever I go above 18 say 19 or 20 max rows something happens
>and the page doesn't load anymore. I put it back to 18 and it works. 
> 
>I looked at the 19 record and I don't see any issues in the XML
>formatting or the data.
> 
>Any ideas?

I am using SPRY and one of our datasets had just over 8000 records and it 
displayed the data (though it took a few seconds to load) I agree with Ray 
about using Firefox, that is what I do.

I had an error similar to yours and I found that it wasn't a valid xml 
document. 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274879
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 Installation, is local server needed?

2007-04-09 Thread Charlie Griefer
ColdFusion has a built in webserver that runs (by default) on port
8500.  You can use this for your local/development work.

So while you don't -have- to install a separate web server, I like to
keep my dev and prod environments as similar as possible... so I
generally run the same web server locally as the web server running on
the prod machine.

but short answer.. no, during the local CF install just choose to use
CF's built in webserver


On 4/9/07, Peter Donahue <[EMAIL PROTECTED]> wrote:
> Good afternoon everyone,
>
> I use Studio MX which includes Dreamweaver and Coldfusion for creating
> Web pages. I'm wondering if in order to install Coldfusion on my local
> machine if this is an add-on for Studio MX or Eclipse in the case of
> CFEclipse.
>
> My impression is that one first needs to install server software such as
> IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
> machine used for site development. I currently create my pages locally and
> upload them to a remote server where they can be tested in the background
> prior to making them available to the public. Again my question is assuming
> I develop my pages in the manner described above can I install CF locally,
> or do I first need to install server software before installing CF? I hope
> this question makes sense. I received a version with Studio MX, but wasn't
> sure if I could have installed it when I installed Studio MX, or if I would
> first need to install IIS or another server program.
>
> Peter Donahue
>
>
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274878
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 Installation, is local server needed?

2007-04-09 Thread Dave Watts
> My impression is that one first needs to install server 
> software such as IIS, Appachi, or Blue Dragon for the 
> Coldfusion module to run on one's machine used for site 
> development.

No, ColdFusion includes a web server for development use. It's perfectly
sufficient for most local development needs.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274877
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 Installation, is local server needed?

2007-04-09 Thread Peterson, Chris
You want to download and install Coldfusion developer edition from here:

https://www.adobe.com/cfusion/tdrc/index.cfm?loc=en%5Fus&product=coldfus
ion

You can use Coldfusion's built in web server, or you can install IIS
first and configure that.  Dreamweaver is not specifically associated to
coldfusion, but writing coldfusion code is just one thing its capable of
doing. They are 2 separate products.

Chris Peterson 

-Original Message-
From: Peter Donahue [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 2:47 PM
To: CF-Talk
Subject: Coldfusion Installation, is local server needed?

Good afternoon everyone,

I use Studio MX which includes Dreamweaver and Coldfusion for
creating Web pages. I'm wondering if in order to install Coldfusion on
my local machine if this is an add-on for Studio MX or Eclipse in the
case of CFEclipse.

My impression is that one first needs to install server software
such as IIS, Appachi, or Blue Dragon for the Coldfusion module to run on
one's machine used for site development. I currently create my pages
locally and upload them to a remote server where they can be tested in
the background prior to making them available to the public. Again my
question is assuming I develop my pages in the manner described above
can I install CF locally, or do I first need to install server software
before installing CF? I hope this question makes sense. I received a
version with Studio MX, but wasn't sure if I could have installed it
when I installed Studio MX, or if I would first need to install IIS or
another server program.

Peter Donahue




~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274876
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Bobby Schuchert
We are using SSL and Client Certificates on an IIS6 box and having trouble with 
CFFILE upload. For some reason cffile upload no longer will work for a file 
over 50k in size. We can turn off "require client certificates" in IIS and the 
upload form works nicely. I even uploaded a 102mb avi file to verify that it 
worked. As soon as the certificate requirement is turned on, it dies. By dies, 
I mean it shows nothing but a white screen. It doesn't show an error. The 
upload form worked fine on our old win2k box even with SSL and client certs. 
Adobe posted this http://www.adobe.com/go/8d933f86 but the solution does not 
work.

Does anyone have any ideas? Turning off client certs permanently is not an 
option as this is a government requirement.

Thanks.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274875
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPRY Help

2007-04-09 Thread Chad McCue
Could you send me a link to that blog entry. 



-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 2:47 PM
To: CF-Talk
Subject: Re: SPRY Help

I can't imagine why / would be invalid, but I'd trust Firefox.

So then maybe it is simply too big. If you switch to 100 rows, does it
work?

To be honest, 2k+ rows is a bit much. You may want to do server side
paging. I had an article on that on my blog a few weeks back.

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> I opened my generated 2250 record xml file in IE 6 and it choked on
> 2/24/2006 0:00 saying the first "/" is a invalid character.
>
> I then opened it up in Firefox and it opened fine. Any idea what would

> cause this?
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 1:49 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> The first thing I always do is view the XML outside of Spry. Firefox 
> is especially useful in showing where XML is bad. One of the common 
> mistakes is not escaping HTML in returned XML. You can use the 
> XMLFormat function, but even that isn't enough. XMLFormat has a bug 
> where it lets "bad" MS Office characters out. Again though - Firefox 
> will notice this and show you the error.
>
>
> On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > I have a site that creates a XML document when completed the XML 
> > will have around 2500 entries, right now everything runs fine when I

> > limit my CFQUERY to 18 max rows, everything is displayed correctly. 
> > For some
>
> > reason when ever I go above 18 say 19 or 20 max rows something 
> > happens
>
> > and the page doesn't load anymore. I put it back to 18 and it works.
> >
> > I looked at the 19 record and I don't see any issues in the XML 
> > formatting or the data.
> >
> > Any ideas?
> >
> >
> >
>
>
>
> 



~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274874
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SPRY Help

2007-04-09 Thread Chad McCue
 


Chad McCue
Advanced Media Productions
251 West Central St. Suite 28
Natick MA, 01760

p: 508.647.5151 ext 16
f: 508.647.5150

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 2:47 PM
To: CF-Talk
Subject: Re: SPRY Help

I can't imagine why / would be invalid, but I'd trust Firefox.

So then maybe it is simply too big. If you switch to 100 rows, does it
work?

To be honest, 2k+ rows is a bit much. You may want to do server side
paging. I had an article on that on my blog a few weeks back.

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> I opened my generated 2250 record xml file in IE 6 and it choked on
> 2/24/2006 0:00 saying the first "/" is a invalid character.
>
> I then opened it up in Firefox and it opened fine. Any idea what would

> cause this?
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 1:49 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> The first thing I always do is view the XML outside of Spry. Firefox 
> is especially useful in showing where XML is bad. One of the common 
> mistakes is not escaping HTML in returned XML. You can use the 
> XMLFormat function, but even that isn't enough. XMLFormat has a bug 
> where it lets "bad" MS Office characters out. Again though - Firefox 
> will notice this and show you the error.
>
>
> On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > I have a site that creates a XML document when completed the XML 
> > will have around 2500 entries, right now everything runs fine when I

> > limit my CFQUERY to 18 max rows, everything is displayed correctly. 
> > For some
>
> > reason when ever I go above 18 say 19 or 20 max rows something 
> > happens
>
> > and the page doesn't load anymore. I put it back to 18 and it works.
> >
> > I looked at the 19 record and I don't see any issues in the XML 
> > formatting or the data.
> >
> > Any ideas?
> >
> >
> >
>
>
>
> 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274873
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion Installation, is local server needed?

2007-04-09 Thread Peter Donahue
Good afternoon everyone,

I use Studio MX which includes Dreamweaver and Coldfusion for creating
Web pages. I'm wondering if in order to install Coldfusion on my local
machine if this is an add-on for Studio MX or Eclipse in the case of
CFEclipse.

My impression is that one first needs to install server software such as
IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's
machine used for site development. I currently create my pages locally and
upload them to a remote server where they can be tested in the background
prior to making them available to the public. Again my question is assuming
I develop my pages in the manner described above can I install CF locally,
or do I first need to install server software before installing CF? I hope
this question makes sense. I received a version with Studio MX, but wasn't
sure if I could have installed it when I installed Studio MX, or if I would
first need to install IIS or another server program.

Peter Donahue


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274872
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SPRY Help

2007-04-09 Thread Raymond Camden
I can't imagine why / would be invalid, but I'd trust Firefox.

So then maybe it is simply too big. If you switch to 100 rows, does it work?

To be honest, 2k+ rows is a bit much. You may want to do server side
paging. I had an article on that on my blog a few weeks back.

On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> I opened my generated 2250 record xml file in IE 6 and it choked on
> 2/24/2006 0:00 saying the first "/" is a invalid character.
>
> I then opened it up in Firefox and it opened fine. Any idea what would
> cause this?
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 1:49 PM
> To: CF-Talk
> Subject: Re: SPRY Help
>
> The first thing I always do is view the XML outside of Spry. Firefox is
> especially useful in showing where XML is bad. One of the common
> mistakes is not escaping HTML in returned XML. You can use the XMLFormat
> function, but even that isn't enough. XMLFormat has a bug where it lets
> "bad" MS Office characters out. Again though - Firefox will notice this
> and show you the error.
>
>
> On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> > I have a site that creates a XML document when completed the XML will
> > have around 2500 entries, right now everything runs fine when I limit
> > my CFQUERY to 18 max rows, everything is displayed correctly. For some
>
> > reason when ever I go above 18 say 19 or 20 max rows something happens
>
> > and the page doesn't load anymore. I put it back to 18 and it works.
> >
> > I looked at the 19 record and I don't see any issues in the XML
> > formatting or the data.
> >
> > Any ideas?
> >
> >
> >
>
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274871
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPRY Help

2007-04-09 Thread Chad McCue
I opened my generated 2250 record xml file in IE 6 and it choked on
2/24/2006 0:00 saying the first "/" is a invalid character.

I then opened it up in Firefox and it opened fine. Any idea what would
cause this? 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 1:49 PM
To: CF-Talk
Subject: Re: SPRY Help

The first thing I always do is view the XML outside of Spry. Firefox is
especially useful in showing where XML is bad. One of the common
mistakes is not escaping HTML in returned XML. You can use the XMLFormat
function, but even that isn't enough. XMLFormat has a bug where it lets
"bad" MS Office characters out. Again though - Firefox will notice this
and show you the error.


On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> I have a site that creates a XML document when completed the XML will 
> have around 2500 entries, right now everything runs fine when I limit 
> my CFQUERY to 18 max rows, everything is displayed correctly. For some

> reason when ever I go above 18 say 19 or 20 max rows something happens

> and the page doesn't load anymore. I put it back to 18 and it works.
>
> I looked at the 19 record and I don't see any issues in the XML 
> formatting or the data.
>
> Any ideas?
>
>
> 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274870
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Dave Watts
> So, what is making CF6 hold onto this virtual directory?  How 
> can I get CF7 to parse it instead?

The easiest way to do this, as Russ suggested, is to simply delete and
recreate the virtual directory. Otherwise, you could ensure that the
directory is in fact a virtual directory, not a virtual application - when
you view the properties dialog, it should either be part of the parent
application (a virtual directory) or a separate application. Since your site
is running with CF 7, you'd want your directory to be part of the parent
application.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274869
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SPRY Help

2007-04-09 Thread Raymond Camden
The first thing I always do is view the XML outside of Spry. Firefox
is especially useful in showing where XML is bad. One of the common
mistakes is not escaping HTML in returned XML. You can use the
XMLFormat function, but even that isn't enough. XMLFormat has a bug
where it lets "bad" MS Office characters out. Again though - Firefox
will notice this and show you the error.


On 4/9/07, Chad McCue <[EMAIL PROTECTED]> wrote:
> I have a site that creates a XML document when completed the XML will
> have around 2500 entries, right now everything runs fine when I limit my
> CFQUERY to 18 max rows, everything is displayed correctly. For some
> reason when ever I go above 18 say 19 or 20 max rows something happens
> and the page doesn't load anymore. I put it back to 18 and it works.
>
> I looked at the 19 record and I don't see any issues in the XML
> formatting or the data.
>
> Any ideas?
>
>
> 

~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274868
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
http://spotstor.com/signup
(There's a feedback form visible in the right-hand menu when you're  
logged in.  That's the feedback mechanism during the public beta)

That's all you need.  :-)

-Jon
On Apr 9, 2007, at 1:28 PM, mac jordan wrote:

> On 4/9/07, Jon Clausen <[EMAIL PROTECTED]> wrote:
>>
>> Absolutely!   The core Area data and public waypoints in the system
>> right now are US/CA, but that's only because I haven't had the time
>> to spend on searching and mining through gigabytes of GIS data to
>> convert.
>>
>> I definitely want this to be a worldwide thing.
>
>
>
> great - send me some details then :)
>
>
>
>
> -- 
> mac jordan
> home: www.kestrel.org
> work: www.webhorus.net
> them: www.jordan-cats.org
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274867
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
Yes - some directories are working fine with CF7.  I think you've pointed me in 
the right direction.  I exported the IIS config file and I can see the problem 
now.

The directories that work with CF7 read:
ScriptMaps="
*,C:\CFusionMX7\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll,3
..jsp,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..jws,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfm,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfml,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfc,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfr,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfswf,C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll,3"

The directory that only works with CF6 shows:
ScriptMaps="
..cfc,C:\CFusionMX\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfm,C:\CFusionMX\runtime\lib\wsconfig\jrun_iis6.dll,3
..cfml,C:\CFusionMX\runtime\lib\wsconfig\jrun_iis6.dll,3
..jsp,C:\CFusionMX\runtime\lib\wsconfig\jrun_iis6.dll,3
..jws,C:\CFusionMX\runtime\lib\wsconfig\jrun_iis6.dll,3
*,C:\CFusionMX\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll,3"
>

Obvioulsy - I need to point to the DLL in the CF7 directory.  Now I just need 
to figure out how.  The IIS help files talk about what SCRIPTMAPS are, but not 
how to edit them.

~ Greg



>I assume you have some dirs that run cfm files correctly using CF7.  For
>the working vs. non-working directories, check the isapi filters
>installed in each directory and also the "script mappings".  I bet one
>of these is pointing to an older dll.  I believe there is also a way to
>dump an IIS setup (the metabase) to an xml file.  Searching this file
>might make it easier to spot references to the old cf installation.
>   Mark


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274866
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread mac jordan
On 4/9/07, Jon Clausen <[EMAIL PROTECTED]> wrote:
>
> Absolutely!   The core Area data and public waypoints in the system
> right now are US/CA, but that's only because I haven't had the time
> to spend on searching and mining through gigabytes of GIS data to
> convert.
>
> I definitely want this to be a worldwide thing.



great - send me some details then :)




-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274865
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Absolutely!   The core Area data and public waypoints in the system  
right now are US/CA, but that's only because I haven't had the time  
to spend on searching and mining through gigabytes of GIS data to  
convert.

I definitely want this to be a worldwide thing.

Jon

On Apr 9, 2007, at 1:09 PM, mac jordan wrote:

> On 4/9/07, Jon Clausen <[EMAIL PROTECTED]> wrote:
>>
>> Sorry about being a bit off topic, but early this morning (or late
>> last night if you will)  I "turned on the lights" and opened up the
>> public Beta of a new CF (MG:U) App I've been working on in my spare
>> time called Spotstor  ( http://spotstor.com ) .
>>
>>
>
>
> if you'd like a UK tester, just shout - I'd be happy to help.
>
>
>
> -- 
> mac jordan
> home: www.kestrel.org
> work: www.webhorus.net
> them: www.jordan-cats.org
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274864
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Invitation for Beta Testers

2007-04-09 Thread mac jordan
On 4/9/07, Jon Clausen <[EMAIL PROTECTED]> wrote:
>
> Sorry about being a bit off topic, but early this morning (or late
> last night if you will)  I "turned on the lights" and opened up the
> public Beta of a new CF (MG:U) App I've been working on in my spare
> time called Spotstor  ( http://spotstor.com ) .
>
>


if you'd like a UK tester, just shout - I'd be happy to help.



-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274863
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Sorry about being a bit off topic, but early this morning (or late  
last night if you will)  I "turned on the lights" and opened up the  
public Beta of a new CF (MG:U) App I've been working on in my spare  
time called Spotstor  ( http://spotstor.com ) .

If there's any CF'ers who use  GPS  or geographic  coordinates  
occasionally, you are welcome to beta test and I would certainly  
value your feedback - especially as it relates to bugs or security  
holes.   The first phase of the test will cut off at 100 users and  
then I will incrementally open it to more as any gremlins get chased  
away.

The basic features of the application are, and always will be, free  
to the general public.  They include:

1) The ability to upload, convert, and export from a variety of GPS  
data formats(currently 43 supported) from GPS manufacturer formats to  
varying formats like CSV, Google Earth's KML or even VCard .
2) The ability to tag, organize, document, search, comment and create  
export groups for waypoints.
3) The ability to create buddy lists and share individual waypoints  
with designated members or, better yet, make waypoints public for all  
users.
4) Auto-tagging capabilities during upload which cross reference the  
coordinates of each-waypoint being uploaded against a master table of  
(currently over 21,000) areas to allow for greater commonality in tag  
names.

A full API with documentation for use in external applications is  
forthcoming and is already in use  by some parts of the application.

Now back to your regularly scheduled programming. :-)








~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274862
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Gaulin, Mark
I assume you have some dirs that run cfm files correctly using CF7.  For
the working vs. non-working directories, check the isapi filters
installed in each directory and also the "script mappings".  I bet one
of these is pointing to an older dll.  I believe there is also a way to
dump an IIS setup (the metabase) to an xml file.  Searching this file
might make it easier to spot references to the old cf installation.
Mark 


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274861
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: file do more than one scheduled task ??

2007-04-09 Thread Jim Wright
Seamus Campbell wrote:
> is there any way to have a scheduled task do more than one task.
> My situation is this:
> I have a shared hosting space (Windows Servers) with Crystaltech. They only 
> allow me 5 scheduled tasks but I have more than 5 sites which each need to 
> run a file on a regular interval. (cfschedule is turned off)
> 
> At the moment I just run a file in each website (for 5 sites). 
> 
> Is there another way to do this? 
> Ie can I get a scheduled task to run more than one file?
>  
> Can I get a file in CF to say "run this file in this directory, then this 
> next file in this next directory, etc" 
> 
> Each task is very long (updating a database) and is actually in a different 
> site so can't just do one file then cflocate to the next.
> 

You could use another machine under your control, and then just schedule 
the tasks through the windows scheduler (or cron jobs on linux), and 
call the pages using something like wget.  I've had good luck with this 
for some clients of mine that use shared hosting at HMS.  The cfhttp 
calls that Ray talked about are an option, too...but CT may have a hard 
limit on process timeouts(HMS does)...and calling multiple files from 
one script may put you over the limit.

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274860
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Need help with grouped query and inner

2007-04-09 Thread Ali Awan
The 3rd and 4th clauses seem to be identical in your Where Clause
AND tblquestionsanswers_x.answersetid = tblanswersets.answersetid
AND tblanswersets.answersetid = tblanswersetsanswers_x.answersetid

That may be why you are getting a Cartesian Product.
Another thing to consider is the order that you list the tables in your From 
clause, as opposed to the order they appear in your Where clause.
For example, in your where clause, you reference the table 
tblquestionsanswers_x before tblanswersets.  So you might consider placing it 
before tblanswersets in the FROM clause.

I'm not sure if you are using Oracle or SQL Server.

Try using parentheses around the where conditions that depend on each other.
Also try using the INNER JOIN syntax instead and see what results you get (if 
you are on SQL Server).

Hope any of those help.
A DBA once told me that when doing SQL Joins, after 3 tables the data is less 
reliable.  So the fact that you are joining on more than 3 tables will 
introduce a whole new set of problems.

good luck,
Ali
> I usually don't have problems with grouping and outputting data, but 
> this one's got my number so far...
> 
> With my db schema, a question can be related to more than one answer 
> set. An answer set can be related to more than one question. 
> 
> An answer set can be related to more than one answer. An answer can be 
> related to more than one answer set. 
> 
> All my questions work except the rankings. I'm trying to do this. 
> 
> Question: Rank your favorite colors. 
> 
> Answer set: Blue  Answers: 1,2,3,4
> Answer set: Green Answers: 1,2,3,4
> etc.. etc..
> 
> Here's my query:
> 
> SELECT
> tblquestionsets.questionsetid,
> tblquestionsets.questionsetname,
> tblquestions.questionid,
> tblquestions.questionsetid,
> tblquestions.question,
> tblquestions.questioncatid,
> tblquestions.questionsortnum,
> tblquestions.questionrequired,
> tblquestioncats.questioncatid,
> tblquestioncats.questioncatname,
> tblquestionsanswers_x.questionanswersetid,
> tblquestionsanswers_x.answersetid,
> tblquestionsanswers_x.questionid,
> tblanswersets.answersetid,
> tblanswersets.answersetname,
> tblanswersets.answersettypeid,
> tblanswersets.answersetrequired,
> tblanswersettypes.answersettypeid,
> tblanswersettypes.answersettypename,
> tblanswersetsanswers_x.answersetsanswersid,
> tblanswersetsanswers_x.answersetid,
> tblanswersetsanswers_x.answerid,
> tblanswers.answerid,
> tblanswers.answername,
> tblanswers.answervalue,
> tblanswers.answersortnum,
> tblquestionsets.questionsetdateadded
> FROM
> tblquestionsets,
> tblquestions,
> tblanswersets,
> tblquestionsanswers_x,
> tblanswersettypes,
> tblanswers,
> tblanswersetsanswers_x,
> tblquestioncats
> WHERE
> tblquestionsets.questionsetID = tblquestions.questionsetID
> AND tblquestions.questionid = tblquestionsanswers_x.questionid
> AND tblquestionsanswers_x.answersetid = tblanswersets.answersetid
> AND tblanswersets.answersetid = tblanswersetsanswers_x.answersetid
> AND tblanswersetsanswers_x.answerid = tblanswers.answerid
> AND tblanswersets.answersettypeid = tblanswersettypes.answersettypeid
> AND tblquestions.questioncatid = tblquestioncats.questioncatid
> AND tblquestionsets.questionsetID = 1
> AND tblquestions.questioncatid = 3
> ORDER BY tblanswersets.answersetid, tblanswers.answerid
> 
> Here's my output:
> 
> 
  
> 
  
> #answersetname#
> 
  
> 
 
> #answername#   
  
>  
  
> 
  
>  
> 
> 
> But here's what it outputs:
> 
> http://wtomlinson.com/questionCap.jpg
> 
> I need it to show just one answer set, but with the multiple answers 
> in the dropdown. I've tried playing with all sorts of combinations, 
> with no luck. 
> 
> Any ideas?
> 
> Thanks,
> Will
> 
  

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFmail spool / out going mail server hosting

2007-04-09 Thread Russ
CFMX standard is very slow sending out email, as it uses only 1 thread.
CFMX enterprise is a LOT faster.  If you don't have money for CFMX
enterprise, you can use IMS lite, which is Free and has 5 threads, and did
well for us even with lists of up to 100k.  We did use a dedicated server
for actually delivering the mail.  

We are using a linux box with sendmail to send out the email after it gets
pushed to it through ColdFusion.  If you have linux knowledge, it's not
terribly hard to set up, and you can run it in vmware for free, if you don't
want to spend the money for a dedicated box (or get a VPS solution
somewhere).  

As far as other companies that let you do this, I'm not aware of any, though
perhaps you can buy an email account somewhere and send email through it,
but I would guess that would not be a great solution.  

IMS lite is a full featured outgoing mail server though, and it can deliver
email without an external mail server. 

Russ


> -Original Message-
> From: Mark Breneman [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 12:08 PM
> To: CF-Talk
> Subject: CFmail spool / out going mail server hosting
> 
> I am watching my CFMX 7.02 mail spool folder and every 60 seconds I see
> only 6.6 messages leave this folder. Am I correct that the mail server
> that I am using is running very very slow. (And or chocked by the mail
> list send)
> 
> If this is the case,I am fairly sure it is, can any one recommend a hosted
> solution for for the out going mail server? This one mail list has 10,100
> members and each member gets a custom email and we are happy with the
> coldfuson based mail engine. We just need a faster out going mail server.
> 
> Does anyone offer a hosted relay mail server?
> Can anyone recommend one?
> 
> We do have a few clients that we have set up IMS to handle the out going
> mail. It seems to be a very good solution. But, we a looking to get out of
> the mail hosting world if we can.
> 
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274858
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFmail spool / out going mail server hosting

2007-04-09 Thread Mark Breneman
I am watching my CFMX 7.02 mail spool folder and every 60 seconds I see only 
6.6 messages leave this folder. Am I correct that the mail server that I am 
using is running very very slow. (And or chocked by the mail list send) 

If this is the case,I am fairly sure it is, can any one recommend a hosted 
solution for for the out going mail server? This one mail list has 10,100 
members and each member gets a custom email and we are happy with the coldfuson 
based mail engine. We just need a faster out going mail server. 

Does anyone offer a hosted relay mail server?
Can anyone recommend one?

We do have a few clients that we have set up IMS to handle the out going mail. 
It seems to be a very good solution. But, we a looking to get out of the mail 
hosting world if we can. 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274856
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Blog and Forum Entries - Best Practices?

2007-04-09 Thread Rick Root
On 4/9/07, Joel Watson <[EMAIL PROTECTED]> wrote:
>
> Also, how will these change if I use the TinyMCE rich text editor?

The most important thing to remember when using ANY rich text editor
is that you can paste in just about anything - even if you don't have
the toolbars enabled.  Table tags, script tags, object/embed tags,
etc.  It's really pretty easy to do.

That being said.. if you're going to allow the use of a rich text
editor, make sure you have a good UDF to strip *ALL* tags that you
don't specifically allow for.

You'll also want to strip *ALL* javascript event attributes of all
tags... onmouseover, onclick, etc... and prevent the use of
javascript: urls if you allow anchors, etc.

Rick
-- 
CFMBB - Coldfusion Message Boards, Version 1.21 Now Available!
http://www.cfmbb.org

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274857
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Russ
For once I'm not going to recommend Apache :-).  Can you try deleting the 
virtual directory from IIS and adding it on again?  

Russ



> -Original Message-
> From: Greg Griffin [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 11:44 AM
> To: CF-Talk
> Subject: CF7 Upgrade & IIS6 Virtual Directory
> 
> I need some guidance.
> 
> I upgraded a Windows 2003/IIS6 server this weekend from CF6 Standard to
> CF7 Standard.  The upgrade went fine except for a problem with a virtual
> directory we have configured.  The virtual directory is parallel to the
> main website in the file-system, but is a sub-directory when viewed though
> the IIS manager.
> 
> First off - I chose to keep CF6 installed until I knew the upgrade went
> okay.  After everything checked out I was going to uninstall CF6 leaving
> just CF7 running.
> 
> If I stop the CF6 services the virtual directory in question will not
> parse.  I get an error that reads "either the Macromedia application
> server is unreachable or it does not have a mapping to process this
> request".  I can view HTML file in this directory (which tells me IIS is
> happy) - I just can't view CFML files.  If I start the CF6 service the
> virtual directory comes back to life.
> 
> So, what is making CF6 hold onto this virtual directory?  How can I get
> CF7 to parse it instead?
> 
> I have a hunch that the XML config files are at play here, but I took a
> look at them and did not see anything specifically related.
> 
> I also played around with the "Web Server Configuration Tool" and the
> connector related batch files.  Nothing helped.
> 
> So, anyone have any suggestions?
> 
> Thanks in advance for your help.
> 
> ~ Greg
> 
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274855
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF7 Upgrade & IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
I need some guidance.

I upgraded a Windows 2003/IIS6 server this weekend from CF6 Standard to CF7 
Standard.  The upgrade went fine except for a problem with a virtual directory 
we have configured.  The virtual directory is parallel to the main website in 
the file-system, but is a sub-directory when viewed though the IIS manager.

First off - I chose to keep CF6 installed until I knew the upgrade went okay.  
After everything checked out I was going to uninstall CF6 leaving just CF7 
running.

If I stop the CF6 services the virtual directory in question will not parse.  I 
get an error that reads "either the Macromedia application server is 
unreachable or it does not have a mapping to process this request".  I can view 
HTML file in this directory (which tells me IIS is happy) - I just can't view 
CFML files.  If I start the CF6 service the virtual directory comes back to 
life.

So, what is making CF6 hold onto this virtual directory?  How can I get CF7 to 
parse it instead?

I have a hunch that the XML config files are at play here, but I took a look at 
them and did not see anything specifically related.

I also played around with the "Web Server Configuration Tool" and the connector 
related batch files.  Nothing helped.

So, anyone have any suggestions?

Thanks in advance for your help.

~ Greg

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274854
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Blog and Forum Entries - Best Practices?

2007-04-09 Thread Joel Watson
I am getting ready to launch a blog/forum that I have designed and developed.  
However, I am having a bit of trouble with the text formatting/output.

What are some best practices for inserting clean code into the database (mySQL 
5.0), writing inserted data to XML-compliant formats, etc.?  I am currently 
using standard HTML forms for the input.

Also, how will these change if I use the TinyMCE rich text editor?

Thanks!

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274853
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SPRY Help

2007-04-09 Thread Chad McCue
I have a site that creates a XML document when completed the XML will
have around 2500 entries, right now everything runs fine when I limit my
CFQUERY to 18 max rows, everything is displayed correctly. For some
reason when ever I go above 18 say 19 or 20 max rows something happens
and the page doesn't load anymore. I put it back to 18 and it works. 
 
I looked at the 19 record and I don't see any issues in the XML
formatting or the data.
 
Any ideas?


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274852
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ColdSpring From Within App.cfc (MG)

2007-04-09 Thread Robert Rawlins - Think Blue
Hi Chaps,

Anyone have any ideas at all on this one? I'm really struggling to build on
user bean onSessionStart(). I've gotten quite used to using ColdSpring and
other factories for managing my bean dependencies. Does Model-Glue have
another method for onSessionStart() instead of using the standard app.cfc
method?

If not then how do I manually pass in init'd versions of my 'credentials'
and 'entitlements' beans into the constructor of my 'user' bean as
arguments?

Cheers for any help you guys can offer.

Thanks,

Rob

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: 06 April 2007 13:26
To: CF-Talk
Subject: ColdSpring From Within App.cfc (MG)

Hello Guys,

 

I'm trying to build a user bean onSessionStart() for my application. However
the user bean has a few dependencies when its created, which store the users
credentials and entitlements. These dependencies are passed in through the
constructor method of the user object. I'd ideally like to have ColdSpring
and Model-Glue handle this for me, rather than having to build the
dependencies myself, but I can't figure out how to access the factory from
my onSessionStart() method.

 

Does anyone know if this is possible? If not then what's the best way to
have my user object build its credentials and entitlements dependants?

 

Thanks,

 

Rob





~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274851
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Hostmysite down...

2007-04-09 Thread Mary Jo Sminkey
> you gotta remember cfm wasnt made to work as a shared server.

Maybe not originally, but again, that's no excuse for it still not working 
properly as a shared server. It will have a hard time being successful long 
term if it is not. 


> and i wouldnt blame hms, blame some bad code from someone on the 
> server (aka will).

Again...that's just an easy excuse. First, it shouldn't be so easy for someone 
to bring down the whole server. Second, if someone is routinely doing so, then 
HMS should track them down. Most people running sites don't *want* to bring the 
server down...but they are often not able to make that determination themselves 
that their site is the problem. 


> bottom line is that if you are on a shared server you are at the mercy 
> of other peoples code that can bring the server down, HMS has gotten 
> pretty strict about bad code on the shared servers but still... If you 
> want better uptime then get your own vps at least. 

Look, I can accept that on a shared server, my site may once in awhile go down. 
I understand that. But when it's a daily thing...that's a problem, and one that 
should be addressed. It gives ColdFusion a bad name if it becomes typical to 
visit a CF site and get a jrun error instead. 


--- Mary Jo






~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274850
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SOLVED: grouping

2007-04-09 Thread Will Tomlinson
Thanks to Jim Wright for the answer. I had completely blanked on being able to 
use a nested  with an outer query output grouping. 


   
   #answersetname#
   
  
  #answername#
  
   

   


Thanks for the suggestions from everyone, including the disrupted one! 

Will

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274849
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: file do more than one scheduled task ??

2007-04-09 Thread Raymond Camden
All the cfschedule feature does is hit your page with HTTP. So you can
easily have a task also do a few CFHTTPs.

On 4/9/07, Seamus Campbell <[EMAIL PROTECTED]> wrote:
> Hi
>
> is there any way to have a scheduled task do more than one task.
> My situation is this:
> I have a shared hosting space (Windows Servers) with Crystaltech. They only 
> allow me 5 scheduled tasks but I have more than 5 sites which each need to 
> run a file on a regular interval. (cfschedule is turned off)
>
> At the moment I just run a file in each website (for 5 sites).
>
> Is there another way to do this?
> Ie can I get a scheduled task to run more than one file?
>
> Can I get a file in CF to say "run this file in this directory, then this 
> next file in this next directory, etc"
>
> Each task is very long (updating a database) and is actually in a different 
> site so can't just do one file then cflocate to the next.
>
> Hope someone can help - this is driving me nuts
>
> Many thanks
> Seamus
>
> 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274848
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Structures

2007-04-09 Thread Scott Stewart
Thanks...

sas

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:58 AM
To: CF-Talk
Subject: Re: Structures

Using ceateobject inside each iteration of the loop to create exactly
the same object each time is going to be part of that slowness...

On 4/9/07, Scott Stewart <[EMAIL PROTECTED]> wrote:

> Here's what I've got so far... it works but it's not elegant and it's way
> slow.


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



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274847
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Structures

2007-04-09 Thread James Holmes
Using ceateobject inside each iteration of the loop to create exactly
the same object each time is going to be part of that slowness...

On 4/9/07, Scott Stewart <[EMAIL PROTECTED]> wrote:

> Here's what I've got so far... it works but it's not elegant and it's way
> slow.


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

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


file do more than one scheduled task ??

2007-04-09 Thread Seamus Campbell
Hi

is there any way to have a scheduled task do more than one task.
My situation is this:
I have a shared hosting space (Windows Servers) with Crystaltech. They only 
allow me 5 scheduled tasks but I have more than 5 sites which each need to run 
a file on a regular interval. (cfschedule is turned off)

At the moment I just run a file in each website (for 5 sites). 

Is there another way to do this? 
Ie can I get a scheduled task to run more than one file?
 
Can I get a file in CF to say "run this file in this directory, then this next 
file in this next directory, etc" 

Each task is very long (updating a database) and is actually in a different 
site so can't just do one file then cflocate to the next.

Hope someone can help - this is driving me nuts

Many thanks
Seamus

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274845
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Previous/Next Navigation

2007-04-09 Thread Bader, Terrence C CTR MARMC, 231
This is what I put together recently.  It works for me for now.  






















Fir
st Page
 
Previous Page


 



#session.myStuffCount# Records
Found 





Next Page
 

Last
Page



 


 

-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 06, 2007 21:21
To: CF-Talk
Subject: RE: Previous/Next Navigation

HI Rich,
 
Thanks for the response. I didn't expect a piece of navigation to
disappear based on a condition to be so complicated.



From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Fri 4/6/2007 7:40 PM
To: CF-Talk
Subject: Re: Previous/Next Navigation



>
> On 4/6/07, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> > I am trying to have this navigation disappear if total rows are less

> > than 25, not having much luck with logic. I can make them disappear,

> > but not for the right reasons.  I have tried  > 25, GTE 25; I also tried using the RowsPerPage variable with not the

> > right results either. Books never seem to have the examples that you

> > are looking for. Any direction would be helpful (websites, books,
etc.).



I blogged about this just now =)  I wrote the code you see on the blog
entry just the other day for a client that didn't like "ugly" url
variables

http://www.opensourcecf.com/1/2007/04/Paging-Through-Record-Sets-without
-URL-variables.cfm

Rick






~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274844
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Structures

2007-04-09 Thread Scott Stewart
I'm extracting results from a table, over a range of weeks, based on the
date range and a pair of values for each range.

The pair values are static, but the dates aren't.  I'm looping over the
dates and values to dynamically build a table.

Here's what I've got so far... it works but it's not elegant and it's way
slow.






 
eSearch = 0;
aSearch = 0;
cfSearch = 0;
sResults = 0;
AI = 0;
JI = 0;
Th = 0;
RecDisp = 0;
Browse = 0;
ML = 0;
rSearch = 0;
MPN = 0;
crSearch = 0;
FTC = 0;
OT = 0;





Module








#hitDateStart# - #hitDateEnd#










Easy Search












  



  #eSearch#

  




I'm repeating this code block for each value pair, I want to use the block
once and loop over the dates and the value pairs.

Hope this makes sense

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:39 AM
To: CF-Talk
Subject: RE: Structures

Okay...you could still put them into a structure if you want. What is it
that you're trying to accomplish? 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 8:25 AM
To: CF-Talk
Subject: RE: Structures

No, "A" and "B" are separate values.

sas

--
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com
-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Monday, April 09, 2007 9:19 AM
To: CF-Talk
Subject: RE: Structures

Possibly. Is "b" the value of "A"? If each item on the left is meant to be a
key with it's intended value on the right, then by all means. Put that bad
boy into a structure. 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED]
Sent: Monday, April 09, 2007 8:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 










~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274843
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Structures

2007-04-09 Thread Konopka, Dave
You're limited to one value per key. But the value can be a struct or an
array. 

So you could do:









Then you would reference the values:
mainStruct.Something.One
mainStruct.Something.Two

__
Dave Konopka

http://www.lifelikeweeds.com/tech


-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:25 AM
To: CF-Talk
Subject: RE: Structures

No, "A" and "B" are separate values.

sas

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com
-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:19 AM
To: CF-Talk
Subject: RE: Structures

Possibly. Is "b" the value of "A"? If each item on the left is meant to
be a
key with it's intended value on the right, then by all means. Put that
bad
boy into a structure. 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 8:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 








~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274842
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Structures

2007-04-09 Thread Andy Matthews
Okay...you could still put them into a structure if you want. What is it
that you're trying to accomplish? 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 8:25 AM
To: CF-Talk
Subject: RE: Structures

No, "A" and "B" are separate values.

sas

--
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com
-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Monday, April 09, 2007 9:19 AM
To: CF-Talk
Subject: RE: Structures

Possibly. Is "b" the value of "A"? If each item on the left is meant to be a
key with it's intended value on the right, then by all means. Put that bad
boy into a structure. 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED]
Sent: Monday, April 09, 2007 8:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 








~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274841
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ColdFusion Scheduler

2007-04-09 Thread JJ Cool
I'm having a problem with the scheduler not running one time tasks. Here is 
what I'm doing. I have a script that runs, setup as a one time task. If it 
succeeds, it schedules itself as a one time task to run on the next business 
day. If it fails, it schedules itself as a one time task to run one hour later 
until it succeeds. No problem there, the code does exactly what it's supposed 
to do. But, sometimes the scheduled task does not run as expected (in both 
cases; one hour later, or the next business day task). I can't find any 
possible cause or solution in my google searches, besides the occasional 
statement that the CF task scheduler is flaky. Anyone else have this problem 
and found a solution?

CoolJJ

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274840
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Session timeout problems

2007-04-09 Thread Bader, Terrence C CTR MARMC, 231
When this happens is it just that one user or do all users on get reset?


-Original Message-
From: Jason Dunaway [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 06, 2007 13:26
To: CF-Talk
Subject: Re: Session timeout problems

After you suggested this we decided to see what was going on here.  YES,
we are seeing that when the timeout occurs the user has a new jsessionid
assignedwhich would make sense because the session objects are gone.
We're cfdumping all of the different scope variables and see that they
are definitely getting a new id.  We have a tech call into Adobe but so
far they have not been any help for the large chunk of change which they
requested :< 

> I've had this issue for quite some time as well and here is a good 
> wealth of information for youto do more research on!  :)
> 
> 1. track the CFID and watch it change when this occurs. IMHO thats one

> of the easiest ways to see this happening, I can re-create this almost

> flawlessly on some machines because of point 2 and everytime the 
> session wipe occurs a new CFID and CFTOKEN is assigned as you would 
> expect.



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Structures

2007-04-09 Thread Scott Stewart
No, "A" and "B" are separate values.

sas

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com
-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:19 AM
To: CF-Talk
Subject: RE: Structures

Possibly. Is "b" the value of "A"? If each item on the left is meant to be a
key with it's intended value on the right, then by all means. Put that bad
boy into a structure. 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 8:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 






~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274838
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Structures

2007-04-09 Thread Andy Matthews
Possibly. Is "b" the value of "A"? If each item on the left is meant to be a
key with it's intended value on the right, then by all means. Put that bad
boy into a structure. 

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 8:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274837
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Structures

2007-04-09 Thread Ben Nadel
Sure thing (I think):



 






..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 09, 2007 9:12 AM
To: CF-Talk
Subject: Structures

Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274836
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Structures

2007-04-09 Thread Scott Stroz
I can't see why not.

On 4/9/07, Scott Stewart <[EMAIL PROTECTED]> wrote:
>
> Hey all,
>
>
>
> I have series of values that looks like this (sort of)
>
>
>
> A, b
>
> C, d
>
> E, f
>
> G, h
>
>
>
> Can I put this into a structure?
>
>
>
> Thanks
>
>
>
> sas
>
>
>
> --
>
> Scott Stewart
>
> ColdFusion Developer
>
>
>
> SSTWebworks
>
> 7241 Jillspring Ct.
>
> Springfield, Va. 22152
>
> (703) 220-2835
>
>
>
> HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com
>
>
>
>
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
> 10:57 PM
>
>
>
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Structures

2007-04-09 Thread Scott Stewart
Hey all,  

 

I have series of values that looks like this (sort of)

 

A, b

C, d

E, f

G, h

 

Can I put this into a structure?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

HYPERLINK "http://www.sstwebworks.com"http://www.sstwebworks.com

 


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 269.0.0/751 - Release Date: 4/7/2007
10:57 PM
 


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274834
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Building a Web Proxy with Authentication

2007-04-09 Thread C. Hatton Humphrey
> problems with what you're doing is that these authentication schemes
> typically keep an auth cookie in the browser.  When making an authentication
> request from another server, that cookie stays on the requesting entity - the
> server itself.  You would have to pass the contents of that authentication
> cookie from the proxy to the client browser.

Hrmmm... I was actually trying to do something a little different.  I
did some basic testing passing the Username and Password fields along
in the CFHTTP.

I was somewhat successful.  Basically I got the HTML for the page but
then was prompted for a username and password as the page tried to
process the CSS, JS and images.

My thought was to actually have the "proxy" download those files
locally and then change the URL called within the HTML to pull from
the saved files instead of the original URL.

If I could bypass that by catching the cookie set and forwarding the
cookie on to the client's browser it would negate the need to do
that... I think.

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274833
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton,
   (I was in the middle of formulating my thoughts with the previous post when 
I accidentally posted, please ignore it)

   What you can do in this instance is intercept all incoming requests for a 
site. On the first request from any client, you can request username/password 
and then store that somewhere in memory.
When any request for a site comes in, if the site requires authentication, 
you can simply pass those credentials to the requesting site. However, you'll 
have to work out the issues regarding authentication/session cookies as it 
pertains to each client - after all, each authentication request is going to 
require some way to keep track of the logged-in user.
   You can work around the Sharepoint Intergrated Windows Authentication prompt 
by forcing Forms authentication with an ISAPI filter.  Microsoft has has a 
sample ISAPI filter application called CustomAuth that does exactly this.  
I don't think this is terribly diffcult to program, but I think that ISA 
Server might already do all of this.

- Matt Small



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274832
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton,




problems with what you're doing is that these authentication schemes typically 
keep an auth cookie in the browser.  When making an authentication request from 
another server, that cookie stays on the requesting entity - the server itself. 
 You would have to pass the contents of that authentication cookie from the 
proxy to the client browser.
This is easily done when you know the contents of that cookie.  However, in 
Integrated Windows Authentication (IWA), you'll only get a hash of the password 
that cookie.  The username/password 






>So my boss comes to me the other day and says, "I want to provide our
>clients with a unified login for all the various web based tools we
>provide."  I said that I could.
>
>We're building a new front-end that is going to accept a client login
>and then provide links to the various tools we offer.  My thought is
>to tie the unified login via a database to the login credentials for
>the other sites.  There is going to be a "proxy page" that will handle
>the HTTP calls to the other sites so session consistency won't be an
>issue.
>
>My big issue now is how to call a page that uses Windows (or
>windows-like) authentication.  Is it as simple as passing the username
>and password parameters for a CFHTTP call?  The sites that I'm going
>to be linking to use either the IIS authentication or web form
>authentication.
>
>I know I can fudge the login for the web form with a CFHTTP post...
>has anyone else built a web proxy like this?
>
>Thanks!

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274831
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton,




problems with what you're doing is that these authentication schemes typically 
keep an auth cookie in the browser.  When making an authentication request from 
another server, that cookie stays on the requesting entity - the server itself. 
 You would have to pass the contents of that authentication cookie from the 
proxy to the client browser.
This is easily done when you know the contents of that cookie.  However, in 
Integrated Windows Authentication (IWA), you'll only get a hash of the password 
that cookie.  The username/password 






>So my boss comes to me the other day and says, "I want to provide our
>clients with a unified login for all the various web based tools we
>provide."  I said that I could.
>
>We're building a new front-end that is going to accept a client login
>and then provide links to the various tools we offer.  My thought is
>to tie the unified login via a database to the login credentials for
>the other sites.  There is going to be a "proxy page" that will handle
>the HTTP calls to the other sites so session consistency won't be an
>issue.
>
>My big issue now is how to call a page that uses Windows (or
>windows-like) authentication.  Is it as simple as passing the username
>and password parameters for a CFHTTP call?  The sites that I'm going
>to be linking to use either the IIS authentication or web form
>authentication.
>
>I know I can fudge the login for the web form with a CFHTTP post...
>has anyone else built a web proxy like this?
>
>Thanks!

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274830
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: A Question for Development: Ajax Now or Ajax Later?

2007-04-09 Thread Dan G. Switzer, II
Rick,

>So the question, becomes... spend a lot of time now learning to implement
>jQuery
>and "Web 2.0" interfaces and functionality or wait for CF 8, see what it
>provides,
>and then just fill in any remaining gaps with "third-party" development?

A couple of quick points:

jQuery is more than just AJAX. There's also a lot in jQuery (animation
effects, DOM manipulation, etc) that CF won't address. These are most likely
things that you'll want to tie in to AJAX functionality. Almost all Web 2.0
UI finding I've read, say the same thing--and that's if you're updating
partial content on the page, users like a subtle effect on the updated
content to reflect the state change. When you write the code yourself (even
w/using a library like jQuery) you have complete control over what's going
to happen. 

Whatever AJAX enhancements that CF8 adds, it will still be geared towards to
solving "most" problems, but it won't necessarily give you all the
functionality you need. You may find that 95% of the time, it does
everything you need, but what are you going to do when CF doesn't give you
all the functionality you want?

Well, if you just start now and begin developing a solutions, I think you'll
find the following:

* That once you understand how everything is working, it won't take you much
more (if any more) time to write the same type of code that CF outputs for
you, but you'll have 100% control over the behavior.

* That if you need more functionality, you can add to your libraries and
then it's always available to you in the future.

-Dan 


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274829
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Need help with grouped query and inner

2007-04-09 Thread Casey Dougall
That last quiz/survey system I created handles option fields by storing them
in their own table.

TableForm
TableQuestions
TableQuestionOptions

While you might be able to grab all of these in one query, I'm running two
and if the question type is a Select Box grab the option set.

 

 
  Select blabla
  from TableQuestionOptions
  where FieldID = 
  order by Sortorder
 

Output Select Box Here.


Another Field Type

-- 
Casey


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274828
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4