cfcontent and timeout

2005-03-04 Thread Hugo Ahlenius
Hi, I remember hearing about this some time ago -- I have an application that uses cfheader/cfcontent for downloads of some files (to send headers with attachment etc) -- isn't there a way to avoid this taking up a thread in CF -- to pass this to the webserver in some way? I have a feeling that

RE: Error consuming web services

2005-03-04 Thread James Holmes
Of course, now I know the exact servicefactory method names I needed, this turns up in google (after I worked it out for myself): http://www.bpurcell.org/blog/index.cfm?mode=entryentry=965 http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=207 78forumid=4 Now I'll stop

RE: Stored Procedures in a CFC

2005-03-04 Thread Adrian Lynch
No, not you, the other Jared! Wow, how embarrassed must you be right now?! :OD -Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 03:43 To: CF-Talk Subject: Re: Stored Procedures in a CFC Well Ade, thankee... Preachy doesn't float

Re: (OO) UI in CFCs

2005-03-04 Thread Thomas Chiverton
On Thursday 03 Mar 2005 16:43 pm, Michael Dinowitz wrote: I'm starting this topic to get peoples feelings on the subject. Do you use CFCs for UI? Do you have a good reason to do so? Do you see a reason to use Yup, we've got a bunch of stuff in com.bluefinger.gbb.gui. that performs the job of

RE: (OO) UI in CFCs

2005-03-04 Thread Micha Schopman
We have a lot of ui logic inside cfc's. After actions are done we need to inform javascript functions so these are called from cfc functions. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo

Training users to be security-conscious [Re: Securing MS-SQL port 1433]

2005-03-04 Thread John Paul Ashenfelter
On Tue, 1 Mar 2005 22:06:48 -0500, Dave Watts [EMAIL PROTECTED] wrote: How is this any different than the corporate education about opening attachments (bad) and phishing (bad)? Most people, I'd put forth, *do* know that the internet isn't all that safe and they should be running a

Total Logn

2005-03-04 Thread Johnson
Hi everyone, Does anyone has any ideas on tracking the total login into an application? - To track the total users currently login into the system - When they logout, the total count will decrease by 1 Thanks in advance, Johnson

Re: Total Logn

2005-03-04 Thread Raymond Camden
Sure, use the new onSessionStart/onSessionEnd features of CFMX7. This is assuming you want to track a session, and not just when a person logs on. If you only care when they logon, you can simply increment an application counter. On logoff, decrease it. You also need to record when they last hit.

OT - Security Of Sensitive Data

2005-03-04 Thread Claremont, Timothy
This MAY be more a hosting question, but I am looking into how I can best share sensitive PATIENT information over the internet to our nursing staff out in the field. We have a CrystalTech shared hosting account, and have the typical SSL directory available to us. I can even go so far as to ONLY

re: stored procedures in a CFC - short delay

2005-03-04 Thread S . Isaac Dealey
I'm planning to respond to this thread, but it's going to have to wait until at least when I get back from the office this evening. I just got busy last night with some new framework features to encapsulate and/or search keywords for reuse in queries and since it's all downloaded here at the

Re: CF/programming experience from the list?

2005-03-04 Thread S . Isaac Dealey
I can't help thinking w00t stands for watch out over there. LOGO!!! w00t! I recall that, got my teething done on a TI994A. Man that cassette was fast! Doug s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread S . Isaac Dealey
S. Isaac Dealey wrote: encoding would hurt anything, so you might just want to try putting cfsetting pageencoding=UTF-16 in your application.cfm and no. it's cfprocessingdirective it won't work from application.cfm it has to go on each page. and no, utf-16 encoding's no magic bullet

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread Chris Poterala
Paul, That makes sense...the only change was the move from CF 5 to MX and I've been scratching my head about what the heck happened. In terms of the hint early, hint often stuff, do you recommend the cfprocessingdirective with encoding set to utf-8, on every template? As far as converting the

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread Paul Hastings
S. Isaac Dealey wrote: That's what I get for answering in a hurry -- I suddenly forget everything I've learned. poor teacher ;-) ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Foreign language display issue on MX 6.1

2005-03-04 Thread Laura Stewart
Hi Chris, I recently had the same issue -- upgraded to CFMX 6.1 with SQL Server 2000 and our Greek and Lithuanian affiliates' content went kerplooey. After many hours of searching I found my answer buried in one of Ben Forta's reference books. Here's a link to a Macromedia TechNote.

RE: OT - Security Of Sensitive Data

2005-03-04 Thread Steve Brownlee
From a personal perspective, I would be horrified if I found out my medical records were being served from a multiple account hosting environment with a shared SSL cert. That aside, from a technical perspective, security is an onion. There are so many layers and working with it can leave you in

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread Paul Hastings
Laura Stewart wrote: Assuming your problem is the same as mine was -- and it looks and sounds exactly the same -- your page encoding is fine (UTF-8 was probably sufficient). It's the database queries that need attention. As laid out no that's not going to work. if your stored raw utf-8 in

Re: OT: Date Conversion in SQL.

2005-03-04 Thread John Paul Ashenfelter
On Thu, 3 Mar 2005 21:00:37 -, Ciliotta, Mario [EMAIL PROTECTED] wrote: Hi, I was wondering if anyone can help me out. I am trying to write a query that will format a date to the following format: March 03, 2005 I know I can use CF's dateformat function but I would prefer to have the

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread Paul Hastings
Chris Poterala wrote: That makes sense...the only change was the move from CF 5 to MX and I've been scratching my head about what the heck happened. cf5 doesn't know unicode from a hole in the ground but it was very polite about it's ignorance. it didn't mess with your text data. In terms of

RE: Training users to be security-conscious [Re: Securing MS-SQL port 1433]

2005-03-04 Thread James Holmes
If we could just train our users not to write their username and password on a Post-It on their monitor, I'd be happy. ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: Stored Procedures in a CFC

2005-03-04 Thread Jared Rypka-Hauer - CMG, LLC
Hehe, you mean the Subway Jared, or the Galleria of Jewelry Jared, The Pretender Jared, or maybe some abstract class of Jared? I'm pretty hard to embarrass... and even when it happens, I usually give myself some credit anyway, for having done whatever it was, because nobody else was doing it!

Re: OT - Security Of Sensitive Data

2005-03-04 Thread John Paul Ashenfelter
On Fri, 4 Mar 2005 09:02:36 -0500, Claremont, Timothy [EMAIL PROTECTED] wrote: This MAY be more a hosting question, but I am looking into how I can best share sensitive PATIENT information over the internet to our nursing staff out in the field. We have a CrystalTech shared hosting account,

RE: CF/programming experience from the list?

2005-03-04 Thread Sparrow-Hood, Walter
Yea, but... did you write you code on keypunch machines (and then proceed to drop the box!). What awful memories. Walt -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 5:00 PM To: CF-Talk Subject: Re: CF/programming experience from the

Webservices issues with CFMX7?

2005-03-04 Thread Alex Sherwood
Anyone else have problems registering Webservices with CFMX 7? I have CFC that registers fine on CFMX 6.1 box, but not on the CFXM7 box. In fact, I can register the CFC that is stored on the 6.1 box from the CFADMIN in the CFMX7 box, but cannot register an exact copy of the CFC that his

RE: Self contained flashpaper reports in CFMX7 ?

2005-03-04 Thread Tom Jordahl
Yes, CFMX 7 can generate a report to a file in PDF or flashpaper. Tom Jordahl Macromedia Server Development -Original Message- From: David Fafard [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 8:28 PM To: CF-Talk Subject: Self contained flashpaper reports in CFMX7 ? I would

Customers losing their session information - Help!!!!!!!

2005-03-04 Thread Ryan Duckworth
We have this problem with some customers who lose their session information. The strange part is that the CGI.HTTP_COOKIE variable has this info: CGI.HTTP_COOKIE = CFID=649959; CFTOKEN=81997144; JSESSIONID=30308be659fa$9B$E4P$ Have any of you seen something like this before? We have

RE: Customers losing their session information - Help!!!!!!!

2005-03-04 Thread Michael T. Tangorre
From: Ryan Duckworth [mailto:[EMAIL PROTECTED] We have this problem with some customers who lose their session information. The strange part is that the CGI.HTTP_COOKIE variable has this info: CGI.HTTP_COOKIE = CFID=649959; CFTOKEN=81997144; JSESSIONID=30308be659fa$9B$E4P$ Have

Variable problem

2005-03-04 Thread jackals jackal
I got 2 forms (Main action page). Main has a list submits a url value depending on item clicked. The url variable now forms part of the query sql in action page. The action page has a long list search faccility and submits to itself. Its also got alphabets a-z urls which when clicked

RE: Variable problem

2005-03-04 Thread Adrian Lynch
When you click one of your letter links it's not submitting the form, is this what you thought should be happening? Are you missing bits from your page, it looks like it's incomplete? Ade -Original Message- From: jackals jackal [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 14:55 To:

RE: Customers losing their session information - Help!!!!!!!

2005-03-04 Thread Ryan Duckworth
No, they are not AOL users. We use a product called BrowserHawk to collect all of their data, so we know a lot about them: OS: WinXP Browser:IE 6.0 JS: 1.3 Acrobat:6 Flash: 6.4 MSN:NO AOL:NO Gecko:

RE: Training users to be security-conscious [Re: Securing MS-SQL port 1433]

2005-03-04 Thread Adrian Lynch
What about Joey from friends, he scratched his PIN into the side of the cash machine(ATM)! I thought that was class :OD -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 14:58 To: CF-Talk Subject: RE: Training users to be security-conscious [Re: Securing

Foreign language display issue on MX 6.1

2005-03-04 Thread Laura Stewart
UCS-2, UTF-8, Verity, AGH Hey Paul, THANKS so much for your contribution to our wanderings :-). You know exactly where I've been. While the Unicode hinting (N) solved the immediate problem of unhappy users that were unable to insert (and view) their new non-Latin content, the Verity search

RE: Training users to be security-conscious [Re: Securing MS-SQL port 1433]

2005-03-04 Thread Robertson-Ravo, Neil (RX)
We have to use secure pin to access the servers - how secure do you want to do ;-) Passwords alone as simply not enough. -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 12:17 To: CF-Talk Subject: Training users to be security-conscious

RE: Spam:RE: Customers losing their session information - Help!!!!!!!

2005-03-04 Thread Robert Redpath
I've had users with this problem and a few were using IE on a Mac, but to make it weird others were using IE on Win98 - none were AOL users. From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Fri 3/4/2005 10:52 AM To: CF-Talk Subject: Spam:RE: Customers

RE: Spam:RE: Customers losing their session information - Help!!! !!!!

2005-03-04 Thread Robertson-Ravo, Neil (RX)
Are you running with Stickey Sessions? -Original Message- From: Robert Redpath [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 16:08 To: CF-Talk Subject: RE: Spam:RE: Customers losing their session information - Help!!! I've had users with this problem and a few were using IE on a

RE: Customers losing their session information - Help!!!!!!!

2005-03-04 Thread Ryan Duckworth
I think our sysAdmin figured it out. They published a GPO (Group Policy Object) with some crazy security settings. Once they revoked the GPO, they were able to use our site perfectly like everyone else. Ryan Duckworth Macromedia ColdFusion Certified Professional Uhlig Communications 10983

Re: Webservices issues with CFMX7?

2005-03-04 Thread Sean Corfield
On Fri, 04 Mar 2005 10:34:06 -0500, Alex Sherwood [EMAIL PROTECTED] wrote: Anyone else have problems registering Webservices with CFMX 7? No. In fact, I can register the CFC that is stored on the 6.1 box from the CFADMIN in the CFMX7 box, but cannot register an exact copy of the CFC that his

Re: CF/programming experience from the list?

2005-03-04 Thread Sean Corfield
On Thu, 3 Mar 2005 19:52:55 -0700, Paul [EMAIL PROTECTED] wrote: Sean you industrious weasel, pulling in a few dollars on the side with the new version of your site I see... I just embarrassed myself terrifically by wondering, I wonder what ocsltd.com looks like today? Yeah, an eyeful of

Re: CFChart dieing

2005-03-04 Thread Douglas Knudsen
does the cfchart function rely on flashremoting for Flash based charts? On Wed, 2 Mar 2005 14:17:53 -0800, Barney Boisvert [EMAIL PROTECTED] wrote: There isn't a technote or anything, it's a 100% home-grown solution. We generate the chart, supplying the NAME attribute to CFCHART and then

Re: OT - Security Of Sensitive Data

2005-03-04 Thread Al Musella, DPM
Providing lists of id numbers that they have to look up on paper is over doing it..but I wouldn't post protected private health information on a shared server. There is no way to secure it. The techs at the ISP have a password and physical access to the computer and can browse all of your

CFLOCATION inside CFCs

2005-03-04 Thread Michael Dinowitz
This is another 'what are you doing' and 'does it sound right' topics. I'm cleaning up some CFCs here and the programmer put some CFLOCATION tags inside the CFC. Anyone else do this? Anyone see a problem with it? Personally, I'm not happy about it as it breaks encapsulation and makes debugging a

Get some advertising with your Flash Player Install!

2005-03-04 Thread Calvin Ward
If you are looking at implementing Flash Forms in CFMX7, consider that your unsuspecting users might end up installing a Yahoo toolbar along with the latest flash player to see your forms. View this in Windows Internet Explorer:

RE: CF MX 7 stopping IIS 5.0 service

2005-03-04 Thread Tom Jordahl
Installation support is free from what I understand. Obviously I don't call our support much. You do need to back up your CFMX 7 CFIDE directory before uninstalling CFMX 6/6.1. We would have to 'fix' the CFMX 6 installer, which we can't do. Tom Jordahl Macromedia Server Development

Re: CFLOCATION inside CFCs

2005-03-04 Thread S . Isaac Dealey
This is another 'what are you doing' and 'does it sound right' topics. I'm cleaning up some CFCs here and the programmer put some CFLOCATION tags inside the CFC. Anyone else do this? Anyone see a problem with it? Personally, I'm not happy about it as it breaks encapsulation and makes

RE: CFLOCATION inside CFCs

2005-03-04 Thread Ian Skinner
I use this for CFC's that are meant to be the action of forms. This is actually shown in the documentation. FORM.cfm form action=processing.cfc ... input type=hidden name=method value=methodName /form PROCESSING.cfc cfcomponent cffunction name=methodName ... Do everything I want to

RE: CFLOCATION inside CFCs

2005-03-04 Thread Calvin Ward
For some reason posting to a cfc like that doesn't feel right to me. But that's just my preference. - Calvin -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 12:12 PM To: CF-Talk Subject: RE: CFLOCATION inside CFCs I use this for CFC's that

RE: CFLOCATION inside CFCs

2005-03-04 Thread Michael Dinowitz
But in this case your accessing a CFC directly (where the method is access=remote). I use this for CFC's that are meant to be the action of forms. This is actually shown in the documentation. FORM.cfm form action=processing.cfc ... input type=hidden name=method value=methodName /form

RE: CFLOCATION inside CFCs

2005-03-04 Thread Ian Skinner
That is exactly true, and that is the only time *I* would consider using a cflocation in a CFC. I kind of feel it's between my UI layer and my Logic layer. I've only just started on figuring out OOD/OOA so I'm working from the inside out. When I'm better and doing OO at all levels, then I

RE: CFLOCATION inside CFCs

2005-03-04 Thread Connie DeCinko
I prefer to use a .cfm for my form action that interacts with the cfc. Keeps the cfc a black box. Then the .cfm decides what to do if the cfc action succeeds or fails. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 10:12 AM To: CF-Talk

Re: Foreign language display issue on MX 6.1

2005-03-04 Thread Paul Hastings
Laura Stewart wrote: view) their new non-Latin content, the Verity search still isn't working for their stuff. And I had really expected it would with MX. it does in mx 7. though you'll need to d/l the language packs: http://www.macromedia.com/go/verity/ Can you point me to a place I can

RE: CFLOCATION inside CFCs

2005-03-04 Thread Ian Skinner
I get the same effect by using two CFC's. I try not to mix purposes in the action cfc. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning -Original Message- From: Connie DeCinko

Re: Webservices issues with CFMX7?

2005-03-04 Thread Alex Sherwood
Thanks for the reply, Sean. I just figured it out, and it was firewall related. We now NAT our webserver, and the public IP range that we have that NATs to the internal IP range was not made a part of a trusted local zone, so the java NetConnection object was timing out trying to get to the

RE: CFLOCATION inside CFCs

2005-03-04 Thread S . Isaac Dealey
That is exactly true, and that is the only time *I* would consider using a cflocation in a CFC. I kind of feel it's between my UI layer and my Logic layer. I've only just started on figuring out OOD/OOA so I'm working from the inside out. When I'm better and doing OO at all levels, then I

RE: CFLOCATION inside CFCs

2005-03-04 Thread Michael T. Tangorre
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] cfparam name=attributes.objectid type=numeric default=0 cfif objectid... do stuff .../cfif In my case the attributes scope is a combination of form and url variables... And at a first glance this looks really good because it's nice and

SOLVED: Getting lost writing query

2005-03-04 Thread Damien McKenna
I was about to post a long message asking for help with a query then I tried using the query builder in SQL Server Enterprise Manager... and got it working X-) Thanks anyway. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company -

Re: CFLOCATION inside CFCs

2005-03-04 Thread Greg Luce
I can't see that being a problem if you are incorporating proper serverside form validation. Serverside you should be checking all validation rules, does it exist, is it the required datatype, the required length... On Fri, 4 Mar 2005 12:42:38 -0500, S. Isaac Dealey [EMAIL PROTECTED] wrote:

RE: SOLVED: Getting lost writing query

2005-03-04 Thread Connie DeCinko
I often find that helpful for cleaning up queries as well as it tends to restructure a sometimes working but poorly formatted query. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 10:55 AM To: CF-Talk Subject: SOLVED: Getting lost writing

RE: Error handling with a CFHTTP request

2005-03-04 Thread Tom Jordahl
Actually what you want is throwOnError=no, and cfhttp wont throw an error, you can check the status of the request and display your out of order message. Tom Jordahl Macromedia Server Development -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Sent: Wednesday, March

RE: SOLVED: Getting lost writing query

2005-03-04 Thread Dawson, Michael
Thanks anyway. Glad we could help. ;^) M!ke ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

Re: OT: RE: Has anyone tried out the SMS gateway on MX 7

2005-03-04 Thread Sean Corfield
On Thu, 3 Mar 2005 14:22:04 -0800, Ali Awan [EMAIL PROTECTED] wrote: Do you mean I need to negotiate with a provider for my CF Application? Yes, because you need an SMSC setup so your CF server can behave as an SMS service, like Google's SMS search (46645). Read the docs about it - it explains

CF MX 7 missing admin index.cfm

2005-03-04 Thread Bryan Stevenson
Hey All, Well my CF MX 7 install on my Win XP SP2 laptop with CF MX 6.1 already on it went just fine (except the configuration didn't fire up after install and I had to reboot to get it going...all migrated fine). I then uninstalled CF MX 6.1 and removed the old cfusionmx directory. I just

Re: Can Jive be mixed with CF

2005-03-04 Thread Sean Corfield
On Thu, 03 Mar 2005 21:34:40 -0500, Dan Plesse [EMAIL PROTECTED] wrote: Can Jive mixed in with CF as a gateway or service? Since Jive seems to be just a few jars. Thanks Dan At MXDU, Geoff Bowers showed an XMPP gateway application built with CF that used the Jive Messenger Service as a

RE: Document Literal WebService with CFMX6.1

2005-03-04 Thread Tom Jordahl
Phil, 1. Yes, CFMX 6.1 can consume document/literal web services. 2. You would construct CFML variables that match the XML Schema in the WSDL. For instance, a complexType would be created as a CFML Struct. Tom Jordahl Macromedia Server Development -Original Message- From: Phillip

Re: CF/programming experience from the list?

2005-03-04 Thread Jared Rypka-Hauer - CMG, LLC
I got my first computer when I was 9... started programming in Commodore ROM-BASIC almost immediately and wrote a fully interactive (albeit text-based) math game by 10. We upgraded from a cassette deck to a Commodore 1541 single-sided 128k 5.25 floppy drive. It was cool, because you could take a

Re: CFChart dieing

2005-03-04 Thread Barney Boisvert
It's all static. The chart gets generated during the page request, and then returned as a static file from the GraphData servlet for subsequent requests. cheers, barneyb On Fri, 4 Mar 2005 11:49:17 -0500, Douglas Knudsen [EMAIL PROTECTED] wrote: does the cfchart function rely on flashremoting

Re: CF MX 7 missing admin index.cfm

2005-03-04 Thread Barney Boisvert
Do you need to change the virtual mapping in IIS to point to the CF7 webroot's CFIDE directory? cheers, barneyb On Fri, 4 Mar 2005 10:20:54 -0800, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, Well my CF MX 7 install on my Win XP SP2 laptop with CF MX 6.1 already on it went just fine

Re: CF MX 7 missing admin index.cfm

2005-03-04 Thread Bryan Stevenson
Do you need to change the virtual mapping in IIS to point to the CF7 webroot's CFIDE directory? Nope...my webroot is on another drive...and the mapping is correctI can access other files in the cfide directoryjust no index.cfm under administrator Bryan Stevenson B.Comm. VP Director

Re: CFLOCATION inside CFCs

2005-03-04 Thread Sean Corfield
On Fri, 4 Mar 2005 11:55:53 -0500, Michael Dinowitz [EMAIL PROTECTED] wrote: This is another 'what are you doing' and 'does it sound right' topics. I'm cleaning up some CFCs here and the programmer put some CFLOCATION tags inside the CFC. Anyone else do this? Anyone see a problem with it?

RE: CFLOCATION inside CFCs

2005-03-04 Thread Michael Dinowitz
The example I have is a redirect embedded inside business logic. Call a page, call the object, do a bunch of stuff, have the object throw you somewhere else. Not dedicated, not validation, just a part of the code. I'm going to pull it out and put it into it's own method with solid validation and

Re: CFChart dieing

2005-03-04 Thread Douglas Knudsen
ah, ok. I'm still stuck with no working cfcharts on a dev box of mine. Just created a new CF instance and it too has broken cfchart. Whacked. next step is to do the old remove/reinstall I suppose. D On Fri, 4 Mar 2005 10:29:57 -0800, Barney Boisvert [EMAIL PROTECTED] wrote: It's all

Re: CFChart dieing

2005-03-04 Thread Douglas Knudsen
oh, an dthanks for your responses barney. On Fri, 4 Mar 2005 13:44:21 -0500, Douglas Knudsen [EMAIL PROTECTED] wrote: ah, ok. I'm still stuck with no working cfcharts on a dev box of mine. Just created a new CF instance and it too has broken cfchart. Whacked. next step is to do the old

RE: Error handling with a CFHTTP request

2005-03-04 Thread Connie DeCinko
Unless you want to vary that out of order message based upon the error code/result. Or do as you indicate if you want just a generic message. -Original Message- From: Tom Jordahl [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 11:10 AM To: CF-Talk Subject: RE: Error handling

Re: Document Literal WebService with CFMX6.1

2005-03-04 Thread Lawrence B. Afrin, M.D.
Tom -- Recently you noted in this forum that a CFML Struct can be crafted to correspond to any arbitrary XML document required as input to any arbitrary (i.e., not necessarily CF-based) web service. However, it remains unclear how one can craft a CFML Struct that will be transformed by the CF

RE: CF MX 7 missing admin index.cfm

2005-03-04 Thread Connie DeCinko
That's because 6.1 had no knowledge of 7 and uninstalled the admin. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 11:21 AM To: CF-Talk Subject: CF MX 7 missing admin index.cfm Hey All, Well my CF MX 7 install on my Win XP SP2 laptop

RE: CF MX 7 missing admin index.cfm

2005-03-04 Thread Connie DeCinko
You'll need to reinstall CFMX7. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 11:35 AM To: CF-Talk Subject: Re: CF MX 7 missing admin index.cfm Do you need to change the virtual mapping in IIS to point to the CF7 webroot's CFIDE

RE: OT: RE: Has anyone tried out the SMS gateway on MX 7

2005-03-04 Thread Ali Awan
Thanks Sean, That's exactly what I was looking for, that I didn't find when I went through the CF MX Developer's Guide. For the benefit for everyone else, the following page explained what I was looking for: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/h

Re: CF MX 7 missing admin index.cfm

2005-03-04 Thread Bryan Stevenson
That's because 6.1 had no knowledge of 7 and uninstalled the admin. Huh? As I understand it CF 7 can co-exist with a 6.1 install. From that I assumed they each used their own CF admin? but perhaps not? I guess because of my setup (both pointed to the same webroot on another drive) I screwed

Re: CFLOCATION inside CFCs

2005-03-04 Thread Sean Corfield
On Fri, 4 Mar 2005 13:40:15 -0500, Michael Dinowitz [EMAIL PROTECTED] wrote: The example I have is a redirect embedded inside business logic. Call a page, call the object, do a bunch of stuff, have the object throw you somewhere else. Not dedicated, not validation, just a part of the code.

Re: CFLOCATION inside CFCs

2005-03-04 Thread S . Isaac Dealey
Well the comment is much less about form variables (which would be validated in other ways) than it is about url variables. If a page is going to use url variables at all, there is always the risk of it producing a CF error if a user provides a url variable that's inappropriate. Some of this can

RE: CFLOCATION inside CFCs

2005-03-04 Thread S . Isaac Dealey
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] cfparam name=attributes.objectid type=numeric default=0 cfif objectid... do stuff .../cfif In my case the attributes scope is a combination of form and url variables... And at a first glance this looks really good because it's nice and

CF7 producing undefined query?

2005-03-04 Thread Steve Brownlee
This one's driving me bonkers. I found a solution but why on earth this is happening is beyond me. cfquery name=query_paperforspecs datasource=#Request.DB# (SELECT pr.revisionid FROM projects p, projectrevisions pr WHERE pr.revisioncreationtypecode in ('E','D')

RE: CF MX 7 missing admin index.cfm

2005-03-04 Thread Calvin Ward
You can also just copy the CFMX 7 CFIDE from a working install on another machine if you have one. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 1:53 PM To: CF-Talk Subject: Re: CF MX 7 missing admin index.cfm That's because 6.1 had no

Re: CF MX 7 missing admin index.cfm

2005-03-04 Thread Bryan Stevenson
Thanks Calvinbut this is the 1st install around herenumber 2 will be tonight whilst watching the tube ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED]

Service Pack 2 IE

2005-03-04 Thread Kristopher Pilles
Anyone using Service Pack 2 IE? Having some problems with it... on Greenport.us - should be banners running down the left side fo the page but none are appearing on IE Service Pack 2 - Any Ideas as to how I can fix this??? Works fine for me on SP1 but I have seen it not display my banners on SP2

RE: Can Jive be mixed with CF

2005-03-04 Thread Dan Plesse
Yes, that would be the answer I was looking for. One problem is that XMPP servers are normally not on the same machine with CF currently (with shared hosting) and flash based RIA require same machine access even with a crossdomain.xml file on hand. So having a jabber server gateway included with

RE: CFLOCATION inside CFCs

2005-03-04 Thread Connie DeCinko
EXACTLY how I am now coding my apps. So far I have not seen any mention of how this helps allow for code reuse and how much easier for someday when you want to talk to that CFC via a Flash form or web service. -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sounds

RE: CFLOCATION inside CFCs

2005-03-04 Thread Michael Dinowitz
My only concern at the moment is taking a freekin huge application written in a multitude of styles and 1. remove excess code 2. clean up logic 3. allow all sites using the code to work well 4. run fast Code reuse and external calls are after cleanup. One thing I've had to do is move all queries

Re: Service Pack 2 IE

2005-03-04 Thread Dave Carabetta
On Fri, 4 Mar 2005 14:08:03 -0500, Kristopher Pilles [EMAIL PROTECTED] wrote: Anyone using Service Pack 2 IE? Having some problems with it... on Greenport.us - should be banners running down the left side fo the page but none are appearing on IE Service Pack 2 - Any Ideas as to how I can fix

RE: Service Pack 2 IE

2005-03-04 Thread Kristopher Pilles
But would an ad blocker remove banners form displaying??? The entire banners do not appear... This is why I am sooo confused... I would understand if a popup blocker blocked them from opening but the entire list of banners is not displaying... -Original Message- From: Dave Carabetta

Re: Can Jive be mixed with CF

2005-03-04 Thread Sean Corfield
On Fri, 04 Mar 2005 14:08:37 -0500, Dan Plesse [EMAIL PROTECTED] wrote: Yes, that would be the answer I was looking for. One problem is that XMPP servers are normally not on the same machine with CF currently (with shared hosting) and flash based RIA require same machine access even with a

Re: Service Pack 2 IE

2005-03-04 Thread Dave Carabetta
On Fri, 4 Mar 2005 14:30:14 -0500, Kristopher Pilles [EMAIL PROTECTED] wrote: But would an ad blocker remove banners form displaying??? The entire banners do not appear... This is why I am sooo confused... I would understand if a popup blocker blocked them from opening but the entire list of

RE: Service Pack 2 IE

2005-03-04 Thread Kristopher Pilles
Thanks for the pointers... I'll take a look. KP -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 2:37 PM To: CF-Talk Subject: Re: Service Pack 2 IE On Fri, 4 Mar 2005 14:30:14 -0500, Kristopher Pilles [EMAIL PROTECTED] wrote: But would an

Discover a variable's type?

2005-03-04 Thread Burns, John D
Does anyone have any ideas for how to discover a variable's type? (ie. Query, Structure, Array, etc) I feel like this should be something easy to do but I just can't think of a way to do it. I want to be able to take a given variable and do different things to it depending on its type. Any help

RE: Get some advertising with your Flash Player Install!

2005-03-04 Thread Adrian Lynch
H, at the very least it shoudn't be the default! Ade -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 16:57 To: CF-Talk Subject: Get some advertising with your Flash Player Install! If you are looking at implementing Flash Forms in CFMX7, consider

RE: Get some advertising with your Flash Player Install!

2005-03-04 Thread Burns, John D
Yeah, MM, this sounds like a very BAD direction to be heading. What next? Paid advertisers built into the Flash player? John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]

RE: Discover a variable's type?

2005-03-04 Thread Adrian Lynch
Well from a CF angle you have IsSimpleValue(), IsNumeric(), IsArray(), IsStruct(), IsObject() and IsQuery(). Were you hoping for something along the lines of Type(yourVar)? There's bound to be a Java solution but whether it's simple or pretty, someone else will have to answer that one. Ade

RE: CF7 producing undefined query?

2005-03-04 Thread Adrian Lynch
I take your point, but it might not be CF, the drivers may be at fault. To be honest, I've never seen unioned queries formatted in such a way, good to know that it doesn't work though. Ade -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 19:01 To:

RE: Get some advertising with your Flash Player Install!

2005-03-04 Thread Adrian Lynch
Real Player!!! *shiver* -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 04 March 2005 19:54 To: CF-Talk Subject: RE: Get some advertising with your Flash Player Install! Yeah, MM, this sounds like a very BAD direction to be heading. What next? Paid advertisers

RE: Discover a variable's type?

2005-03-04 Thread Bryan F. Hogan
You can always make a UDF for this. I'd check CFLib.org for one that may be there already. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 3:00 PM To: CF-Talk Subject: RE: Discover a variable's type? Well from a CF angle you have

Re: Discover a variable's type?

2005-03-04 Thread Dave Carabetta
On Fri, 4 Mar 2005 14:49:38 -0500, Burns, John D [EMAIL PROTECTED] wrote: Does anyone have any ideas for how to discover a variable's type? (ie. Query, Structure, Array, etc) I feel like this should be something easy to do but I just can't think of a way to do it. I want to be able to take a

  1   2   >