Re: Chat or IM program

2010-09-17 Thread Andrew Grosset

Ben Nadel has a very interesting read on his blog using "pusher" to send data 
to multiple clients - if you are thinking of building your own you should read 
this first:

http://www.bennadel.com/blog/1956-Very-Simple-Pusher-And-ColdFusion-Powered-Chat.htm

As for being easy to build - it all depends on how much you want to offer your 
clients. I wanted a threaded chat system (like this forum), simultaneous 
private and public chat rooms, choice of sound notifications, chat to be easily 
accessed from all pages by an expandible div from a fixed 20px footer div, 
smileys allowed but no other html etc etc.

Like many "free" or paid for offerings that don't offer exactly what you want, 
sometimes its better to start from scratch and build your own. However it was 
way more complicated than I first thought and took me much longer than I 
anticipated! 

So in summary research all the chat programs available and how the future is 
changing with html5 and socket to socket transmission - its amazing how we used 
to think that long polling and ajax was the only way to go.

>Hey all,
>
>I was wondering if there is a chat or IM program out there in CF similar to
>Facebook. It's for a dating website.
>
>Coding this from scratch would take awhile so if someone knows of anything
>let me know.
>
>Thanks,
>
>Rick 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337207
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping through arrays with structures

2010-09-17 Thread Andrew Scott

Hehe, I doubt you are blind at all. I swear I actually read it as using the
Array attribute, oh well let me get my eyes checked.

Regards,
Andrew Scott
http://www.andyscott.id.au/


> -Original Message-
> From: Jacob Munson [mailto:yacoub...@gmail.com]
> Sent: Saturday, 18 September 2010 12:54 PM
> To: cf-talk
> Subject: Re: Looping through arrays with structures
> 
> 
> Am I blind?  The email I read from Michael does NOT show the array
> attribute.  In fact, his loop looks exactly like your code.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337206
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping through arrays with structures

2010-09-17 Thread Charlie Griefer

He didn't use the array attribute.  He used the exact same index loop that
you did (from="1" to="#arrayLen(myArray)#").

On Fri, Sep 17, 2010 at 6:56 PM, Andrew Scott wrote:

>
> You can't be serious asking that sort of question, the array Attribute was
> introduced in ColdFusion 8. So that means people who are still running
> ColdFusion 5 - 7 will not be able to use that code.
>
> Regards,
> Andrew Scott
> http://www.andyscott.id.au/
>
>
> > -Original Message-
> > From: Michael Grant [mailto:mgr...@modus.bz]
> > Sent: Saturday, 18 September 2010 11:09 AM
> > To: cf-talk
> > Subject: Re: Looping through arrays with structures
> >
> >
> > What version of cf won't my code work in?
> >
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337205
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping through arrays with structures

2010-09-17 Thread Jacob Munson

Am I blind?  The email I read from Michael does NOT show the array
attribute.  In fact, his loop looks exactly like your code.

On Fri, Sep 17, 2010 at 6:42 PM, Andrew Scott wrote:

>
> That won't work in certain versions of ColdFusion, if you are not using the
> version of ColdFusion that supports this. You can do a normal cfloop from
> and to and use the indexing of the array in this manner
>
> 
>   myArray[arrayCounter].images
> 
>
>
> Regards,
> Andrew Scott
> http://www.andyscott.id.au/
>
>
>
> > -Original Message-
> > From: Michael Grant [mailto:mgr...@modus.bz]
> > Sent: Saturday, 18 September 2010 10:35 AM
> > To: cf-talk
> > Subject: Re: Looping through arrays with structures
> >
> >
> > 
> >
> >  > index="y">
> >
> > #firstArray[x].images.secondArray[y]#
> >
> > 
> >
> > 
> >
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337204
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping through arrays with structures

2010-09-17 Thread Andrew Scott

You can't be serious asking that sort of question, the array Attribute was
introduced in ColdFusion 8. So that means people who are still running
ColdFusion 5 - 7 will not be able to use that code.

Regards,
Andrew Scott
http://www.andyscott.id.au/


> -Original Message-
> From: Michael Grant [mailto:mgr...@modus.bz]
> Sent: Saturday, 18 September 2010 11:09 AM
> To: cf-talk
> Subject: Re: Looping through arrays with structures
> 
> 
> What version of cf won't my code work in?
> 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337203
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: setting timeout for AJAX calls

2010-09-17 Thread Larry Lyons

Funny you should mention it, but here's a couple of blog posts by Ray Camden 
about the same topic:

http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application

http://www.coldfusionjedi.com/index.cfm/2010/9/15/Handling-session-timeouts-in-Ajax-applications--Follow-up

hth,
larry

>Hey All,
>
>I'm finding tonnes of info on handling session timeouts with AJAX calls,
>but what I'm wondering is how to set a timeout for a particular AJAX
>call?
>
>I want to do the equivalent of  so I can
>raise the amount of time a rather long AJAX call has to complete.
>
>I am using AjaxCFC which of course calls  a method in a CFC and returns
>a response.  JQuery is involved as well if that helps/hinders
>
>Any thoughts?
>
>TIA
>
>Cheers
>
>Bryan Stevenson B.Comm.
>VP & Director of E-Commerce Development
>Electric Edge Systems Group Inc.
>phone: 250.480.0642
>fax: 250.480.1264
>cell: 250.920.8830
>e-mail: br...@electricedgesystems.com
>web: www.electricedgesystems.com
> 
>Notice:
>This message, including any attachments, is confidential and may contain
>information that is privileged or exempt from disclosure. It is intended
>only for the person to whom it is addressed unless expressly authorized
>otherwise by the sender. If you are not an authorized recipient, please
>notify the sender immediately and permanently destroy all copies of this
>message and attachments.
>Please consider the environment before printing this e-mail 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337202
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping through arrays with structures

2010-09-17 Thread Michael Grant

What version of cf won't my code work in?

On Fri, Sep 17, 2010 at 8:42 PM, Andrew Scott wrote:

>
> That won't work in certain versions of ColdFusion, if you are not using the
> version of ColdFusion that supports this. You can do a normal cfloop from
> and to and use the indexing of the array in this manner
>
> 
>   myArray[arrayCounter].images
> 
>
>
> Regards,
> Andrew Scott
> http://www.andyscott.id.au/
>
>
>
> > -Original Message-
> > From: Michael Grant [mailto:mgr...@modus.bz]
> > Sent: Saturday, 18 September 2010 10:35 AM
> > To: cf-talk
> > Subject: Re: Looping through arrays with structures
> >
> >
> > 
> >
> >  > index="y">
> >
> > #firstArray[x].images.secondArray[y]#
> >
> > 
> >
> > 
> >
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337201
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looping through arrays with structures

2010-09-17 Thread Andrew Scott

That won't work in certain versions of ColdFusion, if you are not using the
version of ColdFusion that supports this. You can do a normal cfloop from
and to and use the indexing of the array in this manner


   myArray[arrayCounter].images



Regards,
Andrew Scott
http://www.andyscott.id.au/



> -Original Message-
> From: Michael Grant [mailto:mgr...@modus.bz]
> Sent: Saturday, 18 September 2010 10:35 AM
> To: cf-talk
> Subject: Re: Looping through arrays with structures
> 
> 
> 
> 
>  index="y">
> 
> #firstArray[x].images.secondArray[y]#
> 
> 
> 
> 
> 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337200
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looping through arrays with structures

2010-09-17 Thread Michael Grant





#firstArray[x].images.secondArray[y]#








On Fri, Sep 17, 2010 at 8:18 PM, Richard Steele  wrote:

>
> I have an array with a structure that has an array. How do I loop through
> this in CF8 and retrieve the second array's 5 digit numbers? Thanks in
> advance.
>
> array
> 1 |
>  | struct
>  | IMAGES  |
>  | | array
>  | | 1  | 18990
>  | | 2  | 8
>  | | 3  | 39209
>  |
>  | ID  | 13763
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337199
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Looping through arrays with structures

2010-09-17 Thread Richard Steele

I have an array with a structure that has an array. How do I loop through this 
in CF8 and retrieve the second array's 5 digit numbers? Thanks in advance. 

array
1 |
  | struct
  | IMAGES  |
  | | array
  | | 1  | 18990 
  | | 2  | 8
  | | 3  | 39209
  |
  | ID  | 13763



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337198
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Rick Root

On Fri, Sep 17, 2010 at 11:57 AM, James Holmes  wrote:
>
> Fourth link down searching for coldfusion chat room on Google:
>
> http://www.opensourcecf.com/cfopenchat/

I wrote this one btw.. and the demo is currently broken.

But it actually does work, I haven't bothered to fix the demo since I
moved my server to openbd.

Rick

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337197
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: interface for CF8

2010-09-17 Thread Russ Michaels

You can use cfinterface.

http://www.brucephillips.name/blog/index.cfm/2007/8/5/ColdFusion-8-cfinterface-Example--Using-An-Interface-In-CF-8


-- 

--
Russ Michaels
www.cfmldeveloper.com - Supporting the CF community since 1999
FREE ColdFusion/Railo hosting for developers.

blog: www.michaels.me.uk


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337196
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfform issue within cflayout - cflayoutarea

2010-09-17 Thread Joe None

Yes I do. 


> Just curious - do you end your processing page with  ? 
> 
> Larry Stephens
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337195
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: setting timeout for AJAX calls

2010-09-17 Thread Bryan Stevenson

Of course right after posting I found that AjaxCFC calls have a timeout
parameter ;-)

Does anyone know how it behaves in conjunction with the timeout set in
CF Admin (like what happens if your CF Admin timeout is less.)?

What happens when the timeout specified is reached?

TIA for any insight

Cheers

On Fri, 2010-09-17 at 09:16 -0700, Bryan Stevenson wrote:

> Hey All,
> 
> I'm finding tonnes of info on handling session timeouts with AJAX calls,
> but what I'm wondering is how to set a timeout for a particular AJAX
> call?
> 
> I want to do the equivalent of  so I can
> raise the amount of time a rather long AJAX call has to complete.
> 
> I am using AjaxCFC which of course calls  a method in a CFC and returns
> a response.  JQuery is involved as well if that helps/hinders
> 
> Any thoughts?
> 
> TIA
> 
> Cheers


Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337194
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


setting timeout for AJAX calls

2010-09-17 Thread Bryan Stevenson

Hey All,

I'm finding tonnes of info on handling session timeouts with AJAX calls,
but what I'm wondering is how to set a timeout for a particular AJAX
call?

I want to do the equivalent of  so I can
raise the amount of time a rather long AJAX call has to complete.

I am using AjaxCFC which of course calls  a method in a CFC and returns
a response.  JQuery is involved as well if that helps/hinders

Any thoughts?

TIA

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337193
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


interface for CF8

2010-09-17 Thread Tony Bentley

I need to create an interface for a set of cfc's so they can implement concrete 
behaviors. Does anyone know a workaround for CF8 or have code examples? These 
cfc's already extend. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337192
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfform issue within cflayout - cflayoutarea

2010-09-17 Thread Stephens, Larry V

Just curious - do you end your processing page with  ? 

Larry Stephens
 

-Original Message-
From: Joe None [mailto:drue...@comcast.net] 
Sent: Friday, September 17, 2010 10:29 AM
To: cf-talk
Subject: cfform issue within cflayout - cflayoutarea


Is there a way to use cfform within a cflayoutarea so that when it's finished 
processing it doesn't reload itself back into the original cflayoutarea? 

I'm using a cfform within a cflayoutarea, I submit my cfform to a processing 
page and after the processing, I TRY to load another page altogether. 
Unfortunately it reloads back into the cflayoutarea (showing two of my cfforms 
and throwing an error). If I use a normal form tag I won't have this issue. 
Using a target with cfform doesn't work. 

Is there a work-around for this issue? Thanks 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337191
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Rick Sanders

Thanks James. I didn't think to search coldfusion chat. I searched up
hundereds of java ones.

Rick

-Original Message-
From: James Holmes [mailto:james.hol...@gmail.com] 
Sent: Friday, September 17, 2010 12:58 PM
To: cf-talk
Subject: Re: Chat or IM program


Fourth link down searching for coldfusion chat room on Google:

http://www.opensourcecf.com/cfopenchat/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 17 September 2010 23:06, Rick Sanders  wrote:
>
> Thanks but I don't want a third party hosting the chat for me. I want to
> host it and link it with my database of existing users so when they login
to
> the site, they get logged in to the chat as well.
>
> I already looked on Google and all I found was thousands of companies that
> offer chat software but they host it. Some are Java, some are not.
>
> If anyone has a better direction to point me in, please let me know.
>
> Rick
>
> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com]
> Sent: Friday, September 17, 2010 10:25 AM
> To: cf-talk
> Subject: Re: Chat or IM program
>
>
> Wondering if something like this might be up your alley...
>
>
http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-I
> Mified
> http://www.imified.com/
> IMified  is an IM based productivity tool that
> works across all the major networks and offers access to a number of
popular
> web applications, as well as tools like notes, reminders, and to-do's all
in
> your favorite IM client. The service just launched on February 5th, and
has
> been adding lots and lots of users, and getting lots of positive feedback.
>
>
>
>
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337190
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Rick Sanders

Russ, I am actually waiting for the confirmation email to activate my
account to try the IM bot.

Thanks,

Rick

-Original Message-
From: Russ Michaels [mailto:r...@michaels.me.uk] 
Sent: Friday, September 17, 2010 1:55 PM
To: cf-talk
Subject: Re: Chat or IM program


Rick, did you actually look at the coldfusion solution I gave ?

On Fri, Sep 17, 2010 at 4:06 PM, Rick Sanders  wrote:

>
> Thanks but I don't want a third party hosting the chat for me. I want to
> host it and link it with my database of existing users so when they login
> to
> the site, they get logged in to the chat as well.
>
> I already looked on Google and all I found was thousands of companies that
> offer chat software but they host it. Some are Java, some are not.
>
> If anyone has a better direction to point me in, please let me know.
>
> Rick
>
> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com]
> Sent: Friday, September 17, 2010 10:25 AM
> To: cf-talk
> Subject: Re: Chat or IM program
>
>
> Wondering if something like this might be up your alley...
>
>
>
http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-I
> Mified
> http://www.imified.com/
> IMified  is an IM based productivity tool that
> works across all the major networks and offers access to a number of
> popular
> web applications, as well as tools like notes, reminders, and to-do's all
> in
> your favorite IM client. The service just launched on February 5th, and
has
> been adding lots and lots of users, and getting lots of positive feedback.
>
>
>
>
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337189
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Russ Michaels

Rick, did you actually look at the coldfusion solution I gave ?

On Fri, Sep 17, 2010 at 4:06 PM, Rick Sanders  wrote:

>
> Thanks but I don't want a third party hosting the chat for me. I want to
> host it and link it with my database of existing users so when they login
> to
> the site, they get logged in to the chat as well.
>
> I already looked on Google and all I found was thousands of companies that
> offer chat software but they host it. Some are Java, some are not.
>
> If anyone has a better direction to point me in, please let me know.
>
> Rick
>
> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com]
> Sent: Friday, September 17, 2010 10:25 AM
> To: cf-talk
> Subject: Re: Chat or IM program
>
>
> Wondering if something like this might be up your alley...
>
>
> http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-I
> Mified
> http://www.imified.com/
> IMified  is an IM based productivity tool that
> works across all the major networks and offers access to a number of
> popular
> web applications, as well as tools like notes, reminders, and to-do's all
> in
> your favorite IM client. The service just launched on February 5th, and has
> been adding lots and lots of users, and getting lots of positive feedback.
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337188
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is there a way to force lock release on Access database? (CF9)

2010-09-17 Thread Maureen

Try deleting the .ldb file.

On Wed, Sep 15, 2010 at 8:58 AM, Mike Kear  wrote:
>
> I have to make an Access database containing updated data from my
> SQLServer database,  which can be downloaded by my users by FTP.    I
> can make the Access database a coldfusion datasource,  and fill it up
> with the data I want,  but I need to release it from the lock
> ColdFusion puts on it.  Does anyone have a technique for releasing
> that lock nowdays?   (I'm using CF9 Enter

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337187
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread James Holmes

Fourth link down searching for coldfusion chat room on Google:

http://www.opensourcecf.com/cfopenchat/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 17 September 2010 23:06, Rick Sanders  wrote:
>
> Thanks but I don't want a third party hosting the chat for me. I want to
> host it and link it with my database of existing users so when they login to
> the site, they get logged in to the chat as well.
>
> I already looked on Google and all I found was thousands of companies that
> offer chat software but they host it. Some are Java, some are not.
>
> If anyone has a better direction to point me in, please let me know.
>
> Rick
>
> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com]
> Sent: Friday, September 17, 2010 10:25 AM
> To: cf-talk
> Subject: Re: Chat or IM program
>
>
> Wondering if something like this might be up your alley...
>
> http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-I
> Mified
> http://www.imified.com/
> IMified  is an IM based productivity tool that
> works across all the major networks and offers access to a number of popular
> web applications, as well as tools like notes, reminders, and to-do's all in
> your favorite IM client. The service just launched on February 5th, and has
> been adding lots and lots of users, and getting lots of positive feedback.
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Rob Parkhill

Rick,

Paul Kukiel has this on his blog. It uses some Flex etc. but it is a good
starting point.  I know that Paul has created a system for chatting with
just him, which I am sure you could expand.

http://blog.kukiel.net/2009/03/pushing-data-to-flex-clients-with.html

Rob


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337185
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Rick Sanders

Thanks but I don't want a third party hosting the chat for me. I want to
host it and link it with my database of existing users so when they login to
the site, they get logged in to the chat as well.

I already looked on Google and all I found was thousands of companies that
offer chat software but they host it. Some are Java, some are not.

If anyone has a better direction to point me in, please let me know.

Rick

-Original Message-
From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] 
Sent: Friday, September 17, 2010 10:25 AM
To: cf-talk
Subject: Re: Chat or IM program


Wondering if something like this might be up your alley...

http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-I
Mified
http://www.imified.com/
IMified  is an IM based productivity tool that
works across all the major networks and offers access to a number of popular
web applications, as well as tools like notes, reminders, and to-do's all in
your favorite IM client. The service just launched on February 5th, and has
been adding lots and lots of users, and getting lots of positive feedback.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337184
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating from CFMX6.1 to CF9 (Win2K3,SQL2K)

2010-09-17 Thread Sean Henderson

> 1. Anyone have a reason why CGI.path_info would be empty?
It appears CGI.script_name would have been the better var to use all this time. 
Thanks anyways. -Sean 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337183
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfform issue within cflayout - cflayoutarea

2010-09-17 Thread Joe None

Is there a way to use cfform within a cflayoutarea so that when it's finished 
processing it doesn't reload itself back into the original cflayoutarea? 

I'm using a cfform within a cflayoutarea, I submit my cfform to a processing 
page and after the processing, I TRY to load another page altogether. 
Unfortunately it reloads back into the cflayoutarea (showing two of my cfforms 
and throwing an error). If I use a normal form tag I won't have this issue. 
Using a target with cfform doesn't work. 

Is there a work-around for this issue? Thanks 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337182
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


ColdFusion and Internet Explorer Compatibility testing tool

2010-09-17 Thread DURETTE, STEVEN J (ATTASIAIT)

I have to do testing for a migration project using the Internet Explorer
Compatibility Testing Tool, IE8 and Windows 7. Before we get into an
IE/Firefox/Chrome war, this is a corporate requirement!

 

During testing the following issues have come up:

 

1) I've found that any time a ColdFusion page is hit I get Issue
Type: Mime Handling. From everything I've read, this is because IE8
matches the file extension to the mime type. In this case .cfm and
text/html, but IE doesn't see that as valid. Anyone else come across
this?  The pages still render correctly, it just makes the error in the
testing log.

2)  Also, anytime a page is hit that has Flash in it (Flash Form,
Flex, Flash), the Issue Type of ActiveX Blocking occurs. The Flash still
runs, I believe the error is occurring because it does a test to see if
flash exists. 

 

Any ideas about what I can do to correct these issues?

 

 

__

 
Steven Durette
SR Specialist - Application Developer

AT&T



Network - Construction & Engineering
2020 Bancroft St, Server Room (8)
Port Huron, MI 48060
P: 810.984.6684
F: 810.984.9649
M: 810.841.4829
steven.j.dure...@att.com



att.com

 

 

 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337181
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Casey Dougall

On Fri, Sep 17, 2010 at 8:09 AM, Rick Sanders  wrote:

>
> Hey all,
>
> I was wondering if there is a chat or IM program out there in CF similar to
> Facebook. It's for a dating website.
>
> Coding this from scratch would take awhile so if someone knows of anything
> let me know.
>
> Thanks,
>
> Rick
>
>
>
>
Wondering if something like this might be up your alley...

http://www.forta.com/blog/index.cfm/2007/2/12/ColdFusion-IM-Gateways-Power-IMified
http://www.imified.com/
IMified  is an IM based productivity tool that
works across all the major networks and offers access to a number of popular
web applications, as well as tools like notes, reminders, and to-do's all in
your favorite IM client. The service just launched on February 5th, and has
been adding lots and lots of users, and getting lots of positive feedback.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337180
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Andrew Scott

Exactly, Java has plenty of solutions that can be used in ColdFusion.

No to mention that something like this could easily be knocked up in a
matter of hours using ColdFusion and Ajax.

Regards,
Andrew Scott
http://www.andyscott.id.au/


> -Original Message-
> From: Russ Michaels [mailto:r...@michaels.me.uk]
> Sent: Friday, 17 September 2010 10:52 PM
> To: cf-talk
> Subject: Re: Chat or IM program
> 
> 
> you don't really need a CF solution for this, there are plenty of 3rd
party
> plugins, java applets etc that you can use.
> 
> I run a meebo  on my site which works well, but that is just for chatting
to
> me.
> If you want something to allow users to chat to each other then you want a
> java chat applet or something, try googling "free chat applet".
> 
> If you really do want a Cf solution then try http://cfchat.net/home/
> 
> 
> ~~
> ~~~|
> Order the Adobe Coldfusion Anthology now!
> http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-
> Dinowitz/dp/1430272155/?tag=houseoffusion
> Archive: http://www.houseoffusion.com/groups/cf-
> talk/message.cfm/messageid:337177
> Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
> Unsubscribe: http://www.houseoffusion.com/groups/cf-
> talk/unsubscribe.cfm


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337179
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: duplication of cookies on each request

2010-09-17 Thread Michael Grant

I'd be interested to know. I've been using the "short" method for years and
never had a problem. However I'd love to know if the longer version is
actually more stable.

Stable > Short


On Fri, Sep 17, 2010 at 7:18 AM, Kym Kovan  wrote:

>
> On 17/09/2010 8:27 PM, Michael Grant wrote:
> >
> > I thought this was the standard trick:
> >
> > 
> > 
> >   
> > 
> > 
> >
> > The other way is just an extra step.
>
> I can't recollect but there was some strange context where that simpler
> version broke.
>
> --
>
> Yours,
>
> Kym Kovan
> mbcomms.net.au
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337178
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Chat or IM program

2010-09-17 Thread Russ Michaels

you don't really need a CF solution for this, there are plenty of 3rd party
plugins, java applets etc that you can use.

I run a meebo  on my site which works well, but that is just for chatting to
me.
If you want something to allow users to chat to each other then you want a
java chat applet or something, try googling "free chat applet".

If you really do want a Cf solution then try http://cfchat.net/home/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337177
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Rick Sanders

Thanks, but if there's something out there already that I can build on it
would be much quicker. There's alot of open source PhP and .net stuff out
there so I was hoping for something in CF. I'm on a time constraint with a
project.

Rick

-Original Message-
From: Andrew Scott [mailto:andr...@andyscott.id.au] 
Sent: Friday, September 17, 2010 9:21 AM
To: cf-talk
Subject: RE: Chat or IM program


I have to say that these are the easiest of things to program, especially
with Enterprise and gateways. But just as easy with ExtJS or JQuery in
standard editions.

The basics are sending and receive, and who receives. The client is this
easiest part and the server side is not as hard and just needs to know who
to push the info too.


Regards,
Andrew Scott
http://www.andyscott.id.au/


> -Original Message-
> From: Rick Sanders [mailto:c...@webenergy.ca]
> Sent: Friday, 17 September 2010 10:10 PM
> To: cf-talk
> Subject: Chat or IM program
> 
> 
> Hey all,
> 
> I was wondering if there is a chat or IM program out there in CF similar
to
> Facebook. It's for a dating website.
> 
> Coding this from scratch would take awhile so if someone knows of anything
> let me know.
> 
> Thanks,
> 
> Rick
> 
> 
> 
> ~~
> ~~~|
> Order the Adobe Coldfusion Anthology now!
> http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-
> Dinowitz/dp/1430272155/?tag=houseoffusion
> Archive: http://www.houseoffusion.com/groups/cf-
> talk/message.cfm/messageid:337174
> Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
> Unsubscribe: http://www.houseoffusion.com/groups/cf-
> talk/unsubscribe.cfm




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337176
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Chat or IM program

2010-09-17 Thread Andrew Scott

I have to say that these are the easiest of things to program, especially
with Enterprise and gateways. But just as easy with ExtJS or JQuery in
standard editions.

The basics are sending and receive, and who receives. The client is this
easiest part and the server side is not as hard and just needs to know who
to push the info too.


Regards,
Andrew Scott
http://www.andyscott.id.au/


> -Original Message-
> From: Rick Sanders [mailto:c...@webenergy.ca]
> Sent: Friday, 17 September 2010 10:10 PM
> To: cf-talk
> Subject: Chat or IM program
> 
> 
> Hey all,
> 
> I was wondering if there is a chat or IM program out there in CF similar
to
> Facebook. It's for a dating website.
> 
> Coding this from scratch would take awhile so if someone knows of anything
> let me know.
> 
> Thanks,
> 
> Rick
> 
> 
> 
> ~~
> ~~~|
> Order the Adobe Coldfusion Anthology now!
> http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-
> Dinowitz/dp/1430272155/?tag=houseoffusion
> Archive: http://www.houseoffusion.com/groups/cf-
> talk/message.cfm/messageid:337174
> Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
> Unsubscribe: http://www.houseoffusion.com/groups/cf-
> talk/unsubscribe.cfm


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337175
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Chat or IM program

2010-09-17 Thread Rick Sanders

Hey all,

I was wondering if there is a chat or IM program out there in CF similar to
Facebook. It's for a dating website.

Coding this from scratch would take awhile so if someone knows of anything
let me know.

Thanks,

Rick



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337174
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: duplication of cookies on each request

2010-09-17 Thread Kym Kovan

On 17/09/2010 1:17 PM, Duncan wrote:
>
>  @Kym, creating new cookies on starting a new session I would understand, but
> take a look at my logging, each request is within the current session, CF is
> not calling onSessionStart on each page refresh. We still end up with
> duplicte cookies, all with values accumulated from the previous request.
>

It is most strange. My immediate thought was that the domain name was 
wrong so it was starting a new session each time but that is not the case.

Have you tried using the "domain" attribute as an experiment to see if 
that makes a difference? Using the higher domain, eg domain.name rather 
than www.domain.name

-- 

Yours,

Kym Kovan
mbcomms.net.au


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: duplication of cookies on each request

2010-09-17 Thread Kym Kovan

On 17/09/2010 8:27 PM, Michael Grant wrote:
>
> I thought this was the standard trick:
>
> 
> 
>   
> 
> 
>
> The other way is just an extra step.

I can't recollect but there was some strange context where that simpler 
version broke.

-- 

Yours,

Kym Kovan
mbcomms.net.au


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337172
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: duplication of cookies on each request

2010-09-17 Thread Michael Grant

I thought this was the standard trick:



 



The other way is just an extra step.


On Thu, Sep 16, 2010 at 9:50 PM, Kym Kovan  wrote:

>
> On 17/09/2010 10:49, Michael Grant wrote:
> >
> > Am I just tired or is this a little redundant? Set a local var equal to
> the
> > cookie value, then overwrite the cookie value with the local var value?
> > Surely I'm just reading this wrong.
>
> Its a standard trick to change the "expires" attribute for the cookie so
> it expires immediately.
>
> Close browser, open browser and it becomes a new session rather than
> using the still-existing cookies from before.
>
>
> HTH
>
> Kym K
>
> >
> > On Thu, Sep 16, 2010 at 8:35 PM, Andrew Scott >wrote:
> >
> >>
> >> You should be doing something like this.
> >>
> >>  >> isDefined("Cookie.CFTOKEN")>
> >> 
> >> 
> >> 
> >>  value="#cftoken_local#">
> >> 
> >>
>
>
> --
>
> Yours,
>
> Kym Kovan
> mbcomms.net.au
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337171
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm